Skip to content

Latest commit

 

History

History
1332 lines (1241 loc) · 113 KB

CHANGELOG.md

File metadata and controls

1332 lines (1241 loc) · 113 KB

2.5.0 (Unreleased)

Added

EntityConfigBundle

  • Added interface Oro\Bundle\EntityConfigBundle\Attribute\Type\AttributeTypeInterface that should be implemented in case new type of arguments added.

MessageQueue Component

  • Added method onPreCreateDelayed to Oro\Component\MessageQueue\Job\ExtensionInterface interface.

MessageQueueBundle

  • Added interface Oro\Bundle\MessageQueueBundle\Consumption\Extension\ClearerInterface. For details see container_in_consumer.md

Changed

EntityConfigBundle

  • Implementation should be registered as service with tag oro_entity_config.attribute_type.

MessageQueue Component

  • Interface Oro\Component\MessageQueue\Job\ExtensionInterface
    • renamed method onCreateDelayed to onPostCreateDelayed

MessageQueueBundle

  • Method setPersistentServices was moved from Oro\Bundle\MessageQueueBundle\Consumption\Extension\ContainerResetExtension to Oro\Bundle\MessageQueueBundle\Consumption\Extension\ContainerClearer

SearchBundle

  • Entity Oro\Bundle\WebsiteSearchBundle\Entity\IndexDecimal:
    • changed decimal field value:
      • precision changed from 10 to 21.
      • scale changed from 2 to 6.

Deprecated

SearchBundle

  • Class Oro/Bundle/SearchBundle/Engine/Orm/DBALPersistenceDriverTrait is deprecated. The functionality was merged into BaseDriver

Removed

SearchBundle

  • Removed service oro_search.search.engine.storer

SecurityBundle

  • Class Oro\Bundle\SecurityBundle\Owner\AbstractOwnerTreeProvider
    • internal cache parameter $tree was removed cause all cache providers are already automatically decorated by the memory cache provider

WorkflowBundle

  • Removed renderResetButton() macro from Oro/Bundle/WorkflowBundle/Resources/views/macros.html.twig. Also removed usage of this macro from two files:
    • Oro/Bundle/WorkflowBundle/Resources/views/Widget/widget/button.html.twig
    • Oro/Bundle/WorkflowBundle/Resources/views/Widget/widget/buttons.html.twig

2.4.0 (Unreleased)

Added

CacheBundle

  • Added tag oro.config_cache_warmer.provider to be able to register custom warmer configuration provider for CacheWarmerListener[?]. It must implement ConfigCacheWarmerInterface[?].

ImportExportBundle

  • Was added new parameter to ConfigurableAddOrReplaceStrategy[?] class constructor and oro_importexport.strategy.configurable_add_or_replace service. New parameter id oro_security.owner.checker service that helps check the owner during import.
  • JobResult[?] have new needRedelivery flag. JobExecutor[?] in case of any of catched exception during Job processing is a type of Doctrine\DBAL\Exception\UniqueConstraintViolationException JobResult will have a needRedelivery flag set to true.
  • ImportMessageProcessor[?] is able to catch new Oro\Component\MessageQueue\Exception\JobRedeliveryException and it this case is able to requeue a message to process

MessageQueue component

  • Added interface Oro\Component\MessageQueue\Job\ExtensionInterface that can be used to do some additional work before and after job processing.

Changed

ApiBundle

  • Class HtmlFormatter[?] was renamed to NewHtmlFormatter[?]

DataGridBundle

  • Some inline underscore templates were moved to separate .html file for each template.
  • Class PreciseOrderByExtension[?] was renamed to HintExtension[?]. Hint name and priority now passed as 2nd and 3rd constructor arguments
  • HINT_DISABLE_ORDER_BY_MODIFICATION_NULLS was enabled by default for all data grids. To enable order by nulls behavior same to MySQL for PostgreSQL next hint should be added to data grid config
datagrids:
    grid-name:
       ...
       source:
           ...
           hints:
               - { name: HINT_DISABLE_ORDER_BY_MODIFICATION_NULLS, value: false }

ElasticSearchBundle

  • Tokenizer configuration has been changed. A full rebuilding of the backend search index is required.

EmailBundle

  • Email entity is not ACL protected entity so it should not contain any permissions for it.
  • method handleChangedAddresses in class EmailOwnerManager[?] does not persist new EmailAddresses anymore, but returns array of updated entities and entities to create

FilterBundle

  • Some inline underscore templates were moved to separate .html file for each template.

ImportExportBundle

  • Class ConfigurableTableDataConverter[?] does not initialize backend headers during import anymore. Method getHeaderConversionRules previously called initialize method to load both conversion rules and backend headers, but now it calls only initializeRules

MessageQueueBundle

  • Parameter oro_message_queue.maintance.idle_time was renamed to oro_message_queue.maintenance.idle_time
  • Class Oro\Component\MessageQueue\Consumption\Extension\SignalExtension
    • the visibility of method interruptExecutionIfNeeded was changed from public to protected

UIBundle

  • Some inline underscore templates were moved to separate .html file for each template.
  • 'oroui/js/tools' JS-module does not contain utils methods from Caplin.utils any more. Require 'chaplin' directly to get access to them.
  • 'oroui/js/app/components/base/component-container-mixin' Each view on which we want to call 'initLayout()' method (to intialize all components within) have to be marked as separated layout by adding 'data-layout="separate"' attribute. Otherwise 'Error' will be thrown.

Removed

ApiBundle

  • The data_transformer option for fields was removed from Resources/config/oro/api.yml. This option is required very very rarely and it is quite confusing for developers because its name is crossed with data transformers used in Symfony Forms, but the purpose of this option was very different and it was used to transform a field value from one data type to another during loading data. If you used this option for some of your API resources, please replace it with a processor for customize_loaded_data action.
  • Class ApiActions[?]
    • removed methods isInputAction, isOutputAction and getActionOutputFormatActionType. They were moved to RestDocHandler[?]
    • removed method isIdentifierNeededForAction. This code was moved to ApiDocMetadataParser[?]

FormBundle

  • Removed usage of 'tinymce/jquery.tinymce' extension. Use 'tinymce/tinymce' directly instead

SearchBundle

  • Removed method getUniqueId from class BaseDriver[?]. Use method getJoinAttributes instead.

SegmentBundle

  • Services oro_segment.query_converter.segment and oro_segment.query_converter.segment.link were removed.

UserBundle

  • Removed the use of js-application build js/oro.min.js from login page. Use head_script twig placeholder to include custom script on login page.

Fixed

MessageQueueBundle

  • Fixed handling of priority attribute of the tag oro_message_queue.consumption.extension to work in the same way as other Symfony's tagged services. From now the highest the priority number, the earlier the extension is executed.
  • Service oro_message_queue.client.consume_messages_command was removed
  • Service oro_message_queue.command.consume_messages was removed
  • The extension TokenStorageClearerExtension[?] was removed. This job is handled by ContainerResetExtension[?] extension.

2.3.1 (2017-07-28)

Changed

SegmentBundle

  • Class SegmentQueryConverterFactory[?] was created. It was registered as the service oro_segment.query.segment_query_converter_factory.

    services.yml

    oro_segment.query.segment_query_converter_factory:
        class: 'Oro\Bundle\SegmentBundle\Query\SegmentQueryConverterFactory'
        arguments:
            - '@oro_query_designer.query_designer.manager'
            - '@oro_entity.virtual_field_provider.chain'
            - '@doctrine'
            - '@oro_query_designer.query_designer.restriction_builder'
            - '@oro_entity.virtual_relation_provider.chain'
        public: false
  • Service oro_segment.query.segment_query_converter_factory.link was created to initialize the service oro_segment.query.segment_query_converter_factory in DynamicSegmentQueryBuilder[?].

    services.yml

    oro_segment.query.segment_query_converter_factory.link:
        tags:
            - { name: oro_service_link,  service: oro_segment.query.segment_query_converter_factory }
  • Class DynamicSegmentQueryBuilder[?] was changed to use service oro_segment.query.segment_query_converter_factory.link instead of oro_segment.query_converter.segment.link.

    • public method setSegmentQueryConverterFactoryLink(ServiceLink $segmentQueryConverterFactoryLink) was added.
  • Definition of service oro_segment.query.dynamic_segment.query_builder was changed in services.yml. Before

    oro_segment.query.dynamic_segment.query_builder:
        class: %oro_segment.query.dynamic_segment.query_builder.class%
        arguments:
            - '@oro_segment.query_converter.segment.link'
            - '@doctrine'

    After

    oro_segment.query.dynamic_segment.query_builder:
        class: %oro_segment.query.dynamic_segment.query_builder.class%
        arguments:
            - '@oro_segment.query_converter.segment.link'
            - '@doctrine'
        calls:
            - [setSegmentQueryConverterFactoryLink, ['@oro_segment.query.segment_query_converter_factory.link']]

2.3.0 (2017-07-28)

Added

ImportExportBundle

  • Added a possibility to change aggregation strategy for a job summary. An aggregator should implement ContextAggregatorInterface[?]. Added two job summary aggregators:
    • SimpleContextAggregator[?], it summarizes counters by the type from all steps and it is a default aggregator
    • SelectiveContextAggregator[?], it summarizes counters by the type from all steps marked as add_to_job_summary
  • Added trait AddToJobSummaryStepTrait[?] that can be used in steps support add_to_job_summary parameter.

IntegrationBundle

  • Class LoggerClientDecorator[?] was added. Implements RestClientInterface. Use it for logging client. Add the ability to make additional requests to the server.

MigrationBundle

  • Added event oro_migration.data_fixtures.pre_load that is raised before data fixtures are loaded
  • Added event oro_migration.data_fixtures.post_load that is raised after data fixtures are loaded

NoteBundle

  • Added new action create_note related class CreateNoteAction[?]

ReportBundle

  • Class ReportCacheCleanerListener[?] was added. It cleans cache of report grid on postUpdate event of Report entity.

WorkflowBundle

  • Added provider oro_workflow.provider.workflow_definition to manage cached instances of WorkflowDefinitions.
  • Added cache provider oro_workflow.cache.provider.workflow_definition to hold cached instances of WorkflowDefinitions.

Changed

EmailBundle

  • Class EmailExtension[?] method getSecurityFacade was replaces with getAuthorizationChecker and getTokenAccessor
  • Class EmailQueryFactory[?] method prepareQuery renamed to addFromEmailAddress
  • The performance of following data grids were improved and as result theirs definitions and TWIG templates were significantly changed. The main change is to return only fields required fir the grid, instead return whole entity
    • base-email-grid
    • email-grid
    • dashboard-recent-emails-inbox-grid
    • dashboard-recent-emails-sent-grid
    • dashboard-recent-emails-new-grid
    • EmailBundle/Resources/views/Email/Datagrid/Property/contacts.html.twig
    • EmailBundle/Resources/views/Email/Datagrid/Property/date.html.twig
    • EmailBundle/Resources/views/Email/Datagrid/Property/date_long.html.twig
    • EmailBundle/Resources/views/Email/Datagrid/Property/from.html.twig
    • EmailBundle/Resources/views/Email/Datagrid/Property/mailbox.html.twig
    • EmailBundle/Resources/views/Email/Datagrid/Property/recipients.html.twig
    • EmailBundle/Resources/views/Email/Datagrid/Property/subject.html.twig
    • TWIG macro wrapTextToTag was marked as deprecated

FormBundle

  • Updated jQuery Validation plugin to 1.6.0 version
  • Updated TinyMCE to 4.6.* version

IntegrationBundle

  • Interface RestResponseInterface[?] was changed:
    • Methods getContentEncoding, getContentLanguage, getContentLength, getContentLocation, getContentDisposition, getContentMd5, getContentRange, getContentType, isContentType were superseded by getHeader method

LocaleBundle

  • Updated Moment.js to 2.18.* version
  • Updated Numeral.js to 2.0.6 version

NotificationBundle

  • Entity EmailNotification[?] became Extend

ReportBundle

  • Class Oro\Bundle\ReportBundle\Grid\ReportDatagridConfigurationProvider was modified to use doctrine cache instead of caching the DatagridConfiguration value in property $configuration Before
       class ReportDatagridConfigurationProvider
       {
           /**
            * @var DatagridConfiguration
            */
           protected $configuration;
           public function getConfiguration($gridName)
           {
               if ($this->configuration === null) {
                   ...
                   $this->configuration = $this->builder->getConfiguration();
               }
               return $this->configuration;
           }
       }
    After
       class ReportDatagridConfigurationProvider
       {
           /**
            * Doctrine\Common\Cache\Cache
            */
           protected $reportCacheManager;
           public function getConfiguration($gridName)
           {
               $cacheKey = $this->getCacheKey($gridName);
               if ($this->reportCacheManager->contains($cacheKey)) {
                   $config = $this->reportCacheManager->fetch($cacheKey);
                   $config = unserialize($config);
               } else {
                   $config = $this->prepareConfiguration($gridName);
                   $this->reportCacheManager->save($cacheKey, serialize($config));
               }
               return $config;
           }
       }

SecurityBundle

  • Class OroSecurityExtension[?]
    • method getSecurityFacade was replaces with getAuthorizationChecker and getTokenAccessor

TestFrameworkBundle

  • Class TestListener namespace added, use TestListener[?] instead

UIBundle

  • Updated ChaplinJS to 1.2.0 version
  • Updated Autolinker.js to 1.4.* version
  • Updated jQuery-Form to 4.2.1 version
  • Updated jQuery.Numeric to 1.5.0 version
  • Updated Lightgallery.js to 1.4.0 version
  • Updated RequireJS test.js plugin to 2.0.* version
  • Updated Jquery-UI-Multiselect-Widget to 2.0.1 version
  • Updated Timepicker.js plugin to 1.11.* version
  • Updated Datepair.js plugin to 0.4.* version
  • Updated jQuery.Uniform to 4.2.0 version

WorkflowBundle

  • Class WorkflowRegistry[?]:
    • following protected methods were moved to WorkflowDefinitionProvider:
      • refreshWorkflowDefinition
      • getEntityManager
      • getEntityRepository
  • Datagrid filter WorkflowFilter[?] changed namespace

Deprecated

EmailBundle

  • Class EmailRecipientRepository[?] method getThreadUniqueRecipients was marked as deprecated. Use EmailGridResultHelper::addEmailRecipients instead
  • Class FolderType[?] method outcomingTypes was marked as deprecated. Use outgoingTypes instead
  • Class EmailExtension[?] method getEmailThreadRecipients was marked as deprecated. Use EmailGridResultHelper::addEmailRecipients instead

SecurityBundle

  • Interface AccessLevelOwnershipDecisionMakerInterface[?]
    • method isGlobalLevelEntity was marked ad deprecated, use method isOrganization instead
    • method isLocalLevelEntity was marked ad deprecated, use method isBusinessUnit instead
    • method isBasicLevelEntity was marked ad deprecated, use method isUser instead
    • method isAssociatedWithGlobalLevelEntity was marked ad deprecated, use method isAssociatedWithOrganization instead
    • method isAssociatedWithLocalLevelEntity was marked ad deprecated, use method isAssociatedWithBusinessUnit instead
    • method isAssociatedWithBasicLevelEntity was marked ad deprecated, use method isAssociatedWithUser instead
  • Interface OwnerTreeInterface[?] was renamed to OwnerTreeBuilderInterface
    • method addBasicEntity was marked ad deprecated, use method addUser instead
    • method addGlobalEntity was marked ad deprecated, use method addUserOrganization instead
    • method addLocalEntityToBasic was marked ad deprecated, use method addUserBusinessUnit instead
    • method addDeepEntity was marked ad deprecated, use method addBusinessUnitRelation instead
    • method addLocalEntity was marked ad deprecated, use method addBusinessUnit instead
  • Interface OwnershipMetadataInterface[?]
    • method isBasicLevelOwned was marked as deprecated, use method isUserOwned instead
    • method isLocalLevelOwned was marked as deprecated, use method isBusinessUnitOwned instead
    • method isGlobalLevelOwned was marked as deprecated, use method isOrganizationOwned instead
    • method isSystemLevelOwned was marked as deprecated
    • method getGlobalOwnerColumnName was marked as deprecated, use method getOrganizationColumnName instead
    • method getGlobalOwnerFieldName was marked as deprecated, use method getOrganizationFieldName instead
  • Interface MetadataProviderInterface[?] was renamed to OwnershipMetadataProviderInterface
    • method getBasicLevelClass was marked as deprecated, use method getUserClass instead
    • method getLocalLevelClass was marked as deprecated, use method getBusinessUnitClass instead
    • method getGlobalLevelClass was marked as deprecated, use method getOrganizationClass instead

Removed

EmailBundle

  • Class ExtendClassLoader[?] was removed. The Oro\Component\PhpUtils\ClassLoader is used instead of it
  • service oro_email.listener.role_subscriber was removed.

IntegrationBundle

  • Interface RestResponseInterface[?] was changed. Methods getRawHeaders, xml, getRedirectCount, getEffectiveUrl were completely removed
  • Interface RestClientInterface[?] was changed. Method getXML was completely removed.
  • Class GuzzleRestClient[?] method getXML was removed, please use a simple get method instead and convert its result to XML
  • Class GuzzleRestResponse[?]:
    • Methods getRawHeaders, xml, getRedirectCount, getEffectiveUrl were removed, in case you need them just use the construction such as $response->getSourceResponse()->xml()
    • Methods getContentEncoding, getContentLanguage, getContentLength, getContentLocation, getContentDisposition, getContentMd5, getContentRange, getContentType, isContentType were removed, but you can get the same values if you use $response->getHeader('Content-Type') or $response->getHeader('Content-MD5'), for example.
  • Removed translation label oro.integration.sync_error_invalid_credentials
  • Removed translation label oro.integration.progress
  • Updated translation label oro.integration.sync_error
  • Updated translation label oro.integration.sync_error_integration_deactivated

NavigationBundle

  • Class MenuUpdateBuilder[?]:
    • abstract service oro_navigation.menu_update.builder.abstract was removed, use instead class MenuUpdateBuilder

SearchBundle

  • Class ReindexDemoDataListener[?] was removed. Logic was moved to ReindexDemoDataFixturesListener[?]. Service oro_search.event_listener.reindex_demo_data was replaced with oro_search.migration.demo_data_fixtures_listener.reindex.

SecurityBundle

  • Class OwnershipConditionDataBuilder[?]
    • removed deprecated method fillOrganizationBusinessUnitIds
    • removed deprecated method fillOrganizationUserIds
  • Removed DI container parameter oro_security.owner.tree.class
  • Removed DI container parameter oro_security.owner.decision_maker.abstract.class
  • Removed service oro_security.owner.tree
  • Removed service oro_security.owner.decision_maker.abstract
  • Removed service oro_security.link.ownership_tree_provider
  • Class AbstractMetadataProvider[?] was removed. Logic was moved to AbstractOwnershipMetadataProvider
    • changed the constructor signature: old signature was __construct(array $owningEntityNames), new signature is __construct(ConfigManager $configManager)
    • removed property localCache
    • removed property owningEntityNames
    • removed method setContainer
    • removed method getContainer
    • removed method getConfigProvider
    • removed method getEntityClassResolver
    • removed method setAccessLevelClasses
  • Class ChainMetadataProvider[?] was removed. Logic was moved to ChainOwnershipMetadataProvider

TestFrameworkBundle

  • Removed --applicable-suites parameter from behat. Now every bundle should provide only features that applicable to any application that include that bundle.

TranslationBundle

  • Removed service oro_translation.distribution.package_manager.link

WorkflowBundle

  • Removed service container parameters:
    • oro_workflow.configuration.config.workflow_sole.class
    • oro_workflow.configuration.config.workflow_list.class
    • oro_workflow.configuration.handler.step.class
    • oro_workflow.configuration.handler.attribute.class
    • oro_workflow.configuration.handler.transition.class
    • oro_workflow.configuration.handler.workflow.class
    • oro_workflow.configuration.config.process_definition_sole.class
    • oro_workflow.configuration.config.process_definition_list.class
    • oro_workflow.configuration.config.process_trigger_sole.class
    • oro_workflow.configuration.config.process_trigger_list.class
    • oro_workflow.configuration.provider.workflow_config.class
    • oro_workflow.configuration.provider.process_config.class
    • oro_workflow.configuration.builder.workflow_definition.class
    • oro_workflow.configuration.builder.workflow_definition.handle.class
    • oro_workflow.configuration.builder.process_configuration.class

2.2.0 (2017-05-31)

Show detailed list of changes

Added

ApiBundle

  • Added form_event_subscriber option to Resources/config/oro/api.yml. It can be used to add an event subscriber(s) to a form of such actions as create, update, add_relationship, update_relationship and delete_relationship. For details see /src/Oro/Bundle/ApiBundle/Resources/doc/configuration.md

WorkflowBundle

  • Added processor tag oro_workflow.processor and oro_workflow.processor_bag service to collect processors.
  • Class WorkflowAwareCache[?] added:
    • purpose: to check whether an entity has been involved as some workflow related entity in cached manner to avoid DB calls
    • methods:
      • hasRelatedActiveWorkflows($entity)
      • hasRelatedWorkflows($entity)
    • invalidation of cache occurs on workflow changes events:
      • oro.workflow.after_update
      • oro.workflow.after_create
      • oro.workflow.after_delete
      • oro.workflow.activated
      • oro.workflow.deactivated
  • Created action @get_available_workflow_by_record_group class GetAvailableWorkflowByRecordGroup[?]
  • Added variable_definitions to workflow definition
  • Added new CONFIGURE permission for workflows

Changed

ApiBundle

  • Static class FormUtil[?] was replaced with FormHelper[?] which is available as a service oro_api.form_helper
  • Changed implementation of CompleteDefinition[?] processor. All logic was moved to the following classes:
    • CompleteAssociationHelper[?]
    • CompleteCustomAssociationHelper[?]
    • CompleteEntityDefinitionHelper[?]
    • CompleteObjectDefinitionHelper[?]

EmailBundle

  • template Resources/views/Form/autoresponseFields.html.twig was removed as it contained possibility to add collection item after arbitrary item, which is not needed anymore with new form
  • Next templates were changed:
    • Resources/views/AutoResponseRule/dialog/update.html.twig
    • Resources/views/Configuration/Mailbox/update.html.twig
    • EmailBundle/Resources/views/Form/fields.html.twig
  • Class AutoResponseRuleController[?]
    • action update now returns following data: form, saved, data, metadata

FormBundle

  • Form types OroEncodedPlaceholderPasswordType, OroEncodedPasswordType acquired browser_autocomplete option with default value set to false, which means that password autocomplete is off by default.

ImportExportBundle

  • Class CliImportMessageProcessor[?]
    • does not implement TopicSubscriberInterface now.
    • subscribed topic moved to tag in mq_processor.yml.
    • service oro_importexport.async.http_import decorates oro_importexport.async.import
  • Class HttpImportMessageProcessor[?]
    • does not implement TopicSubscriberInterface now.
    • subscribed topic moved to tag in mq_processor.yml.
    • service oro_importexport.async.cli_import decorates oro_importexport.async.import

SegmentBundle

  • Class Oro/Bundle/SegmentBundle/Entity/Manager/StaticSegmentManager:
    • method run now accept also a dynamic segment

WorkflowBundle

  • Class WorkflowItemListener[?] auto start workflow part were moved into WorkflowStartListener[?]

Deprecated

SegmentBundle

  • Class Oro/Bundle/SegmentBundle/Entity/Manager/StaticSegmentManager method bindParameters is deprecated and will be removed.

Removed

ActionBundle

  • The ButtonListener[?] class was removed. Logic was transferred to DatagridActionButtonProvider[?] class.
  • Service oro_action.datagrid.event_listener.button was removed and new oro_action.datagrid.action.button_provider added with tag oro_datagrid.extension.action.provider

DataGridBundle

  • Removed event oro_datagrid.datagrid.extension.action.configure-actions.before, now it is a call of DatagridActionProviderInterface::hasActions[?] of registered through a oro_datagrid.extension.action.provider tag services.

EmailBundle

  • Class AutoResponseRuleType[?] form field conditions was removed. Use field definition instead.
  • The AutoResponseRule::$conditions[?] property was removed. Use methods related to definition property instead.

ImportExportBundle

  • Message topics oro.importexport.cli_import, oro.importexport.import_http_validation, oro.importexport.import_http with the constants were removed.

InstallerBundle

  • The option --force was removed from oro:install cli command.

PlatformBundle

  • Service jms_serializer.link was removed.

WorkflowBundle

  • Class TransitionCustomFormHandler[?] and service @oro_workflow.handler.transition.form.page_form removed (see CustomFormProcessor[?])
  • Class TransitionFormHandler[?] and service @oro_workflow.handler.transition.form removed see replacements:
    • DefaultFormProcessor[?]
    • DefaultFormStartHandleProcessor[?]
  • Class TransitionHelper[?] and service @oro_workflow.handler.transition_helper removed (see FormSubmitTemplateResponseProcessor[?])
  • Class StartTransitionHandler[?] and service @oro_workflow.handler.start_transition_handler removed (see StartHandleProcessor[?])
  • Class TransitionHandler[?] and service @oro_workflow.handler.transition_handler removed (see TransitionHandleProcessor[?])
  • Class TransitionWidgetHelper[?]:
    • Constant TransitionWidgetHelper::DEFAULT_TRANSITION_TEMPLATE[?] moved into DefaultFormTemplateResponseProcessor::DEFAULT_TRANSITION_TEMPLATE[?]
    • Constant TransitionWidgetHelper::DEFAULT_TRANSITION_CUSTOM_FORM_TEMPLATE[?] moved into CustomFormTemplateResponseProcessor::DEFAULT_TRANSITION_CUSTOM_FORM_TEMPLATE[?]
  • Class WorkflowReplacementSelectType[?] was removed. Logic was moved to WorkflowReplacementType[?]

Fixed

ApiBundle

  • Fixed handling of property_path option from api.yml for cases when the property path contains several fields, e.g. customerAssociation.account

2.1.0 (2017-03-30)

Show detailed list of changes

Added

Action Component

  • Added Class Oro\Component\Action\Model\DoctrineTypeMappingExtension. That can be used as base for services definitions

ActionBundle

  • Added new action with alias resolve_destination_page and class ResolveDestinationPage[?]
  • Added new tag oro.action.extension.doctrine_type_mapping to collect custom doctrine type mappings used to resolve types for serialization at AttributeGuesser[?]

BatchBundle

  • Added BufferedIdentityQueryResultIterator[?] that allows to iterate through changing dataset

EntityBundle

  • Added class `Oro\Bundle\EntityBundle\ORM\DiscriminatorMapListener' that should be used for entities with single table inheritance. Example:
oro_acme.my_entity.discriminator_map_listener:
    class: 'Oro\Bundle\EntityBundle\ORM\DiscriminatorMapListener'
    public: false
    calls:
        - [ addClass, ['oro_acme_entity', '%oro_acme.entity.acme_entity.class%'] ]
    tags:
        - { name: doctrine.event_listener, event: loadClassMetadata }

FormBundle

  • Class UpdateHandlerFacade[?] added as a replacement of standard UpdateHandler[?]. So please consider to use it when for a new entity management development.
  • Interface FormHandlerInterface[?] added for standard form handlers.
  • Class FormHandler[?] added (service 'oro_form.form.handler.default') as default form processing mechanism.
  • Tag oro_form.form.handler added to register custom form handlers under its alias.
  • Class CallbackFormHandler[?] added as interface compatibility helper for callable.
  • Interface FormTemplateDataProviderInterface[?] added for common update template data population.
  • Class FromTemplateDataProvider[?] (service oro_form.provider.from_template_data.default) as default update template data provider.
  • Tag oro_form.form_template_data_provider added to register custom update template data providers.
  • Class FormTemplateDataProviderRegistry[?] added to collect tagged with oro_form.form_template_data_provider services.
  • Class CallbackFormTemplateDataProvider[?] added as interface compatibility helper for callable.

ImportExportBundle

  • Class FileManager[?] and its service oro_importexport.file.file_manager were added. We should use it instead of the FileSystemOperator[?]
  • Command oro:cron:import-clean-up-storage (class CleanupStorageCommand[?]) was added.

LayoutBundle

  • Added alias layout for oro_layout.layout_manager service to make it more convenient to access it from container

UserBundle

Changed

ActionBundle

  • The service oro_action.twig.extension.operation was marked as private

AddressBundle

  • The service oro_address.twig.extension.phone was marked as private

AsseticBundle

  • The service oro_assetic.twig.extension was marked as private

AttachmentBundle

  • The service oro_attachment.twig.file_extension was marked as private
  • Class FileManager[?] method writeStreamToStorage was changed to public

ConfigBundle

  • The service oro_config.twig.config_extension was marked as private

CurrencyBundle

  • The service oro_currency.twig.currency was marked as private

DashboardBundle

  • The service oro_dashboard.twig.extension was marked as private

DataGridBundle

  • Class GridController[?] renamed method filterMetadata to filterMetadataAction
  • Class ExportHandler[?] (service oro_datagrid.handler) changed its service calls: it doesn't call setRouter and setConfigManager any more but calls setFileManager now.
  • Topic oro.datagrid.export doesn't start datagrid export any more. Use oro.datagrid.pre_export topic instead.
  • The service oro_datagrid.twig.datagrid was marked as private

DependencyInjection Component

  • Class Oro\Component\DependencyInjection\ServiceLinkRegistry together with Oro\Component\DependencyInjection\ServiceLinkRegistryAwareInterface for injection awareness. Can be used to provide injection of a collection of services that are registered in system, but there no need to instantiate all of them on every runtime. The registry has @service_container dependency (Symfony\Component\DependencyInjection\ContainerInterface) and uses Oro\Component\DependencyInjection\ServiceLink instances internally. It can register public services by ServiceLinkRegistry::add with service_id and alias. Later service can be resolved from registry by its alias on demand (method ::get($alias)).
  • Class Oro\Component\DependencyInjection\Compiler\TaggedServiceLinkRegistryCompilerPass to easily setup a tag by which services will be gathered into Oro\Component\DependencyInjection\ServiceLinkRegistry and then injected to provided service (usually that implements Oro\Component\DependencyInjection\ServiceLinkRegistryAwareInterface).

EmailBundle

  • Class AssociationManager[?] changed the return type of getOwnerIterator method from BufferedQueryResultIterator to \Iterator
  • The service oro_email.twig.extension.email was marked as private

EmbeddedFormBundle

  • The service oro_embedded_form.back_link.twig.extension was marked as private

EntityBundle

  • The service oro_entity.twig.extension.entity was marked as private

EntityConfigBundle

  • Class ConfigCache[?] the implementation was changed significantly, by performance reasons. The most of protected methods were removed or marked as private
  • The service oro_entity_config.twig.extension.config was marked as private
  • The service oro_entity_config.twig.extension.dynamic_fields_attribute_decorator was marked as private

EntityExtendBundle

  • Class ExtendExtension[?]
    • calls to addManyToManyRelation, addManyToOneRelation methods now create unidirectional relations. To create bidirectional relation you MUST call *InverseRelation method respectively
    • call to addOneToManyRelation creates bidirectional relation according to Doctrine documentation
    • throw exception when trying to use not allowed option while creating relation in migration
  • To be able to create bidirectional relation between entities and use "Reuse existing relation" functionality on UI you MUST select "bidirectional" field while creating relation
  • The service oro_entity_extend.twig.extension.dynamic_fields was marked as private
  • The service oro_entity_extend.twig.extension.enum was marked as private

EntityMergeBundle

  • The service oro_entity_merge.twig.extension was marked as private

EntityPaginationBundle

  • The service oro_entity_pagination.twig_extension.entity_pagination was marked as private

FeatureToggleBundle

  • The service oro_featuretoggle.twig.feature_extension was marked as private

FormBundle

  • The service oro_form.twig.form_extension was marked as private

HelpBundle

  • The service oro_help.twig.extension was marked as private

ImportExportBundle

  • Class ExportMessageProcessor[?]
    • changed the namespace from Async[?] to Export[?]
    • construction signature was changed now it takes next arguments:
      • ExportHandler $exportHandler,
      • JobRunner $jobRunner,
      • DoctrineHelper $doctrineHelper,
      • TokenStorageInterface $tokenStorage,
      • LoggerInterface $logger,
      • JobStorage $jobStorage
  • Class AbstractImportHandler[?] (service oro_importexport.handler.import.abstract) changed its service calls: it doesn't call setRouter and setConfigManager any more but calls setReaderChain now.
  • Command oro:import:csv (class ImportCommand[?]) was renamed to oro:import:file
  • Class ImportExportJobSummaryResultService[?] was renamed to ImportExportResultSummarizer. It will be moved after add supporting templates in notification process.
  • Route oro_importexport_import_error_log with path /import_export/import-error/{jobId}.log was renamed to oro_importexport_job_error_log with path /import_export/job-error-log/{jobId}.log

IntegrationBundle

  • The service oro_integration.twig.integration was marked as private

LayoutBundle

  • Changed default value option name for page_title block type, from text to defaultValue

LocaleBundle

  • The following services were marked as private:
    • oro_locale.twig.date_format
    • oro_locale.twig.locale
    • oro_locale.twig.calendar
    • oro_locale.twig.address
    • oro_locale.twig.number
    • oro_locale.twig.localization
    • oro_locale.twig.date_time_organization
  • Class LocalizedFallbackValue[?] will become not extended in 2.3 release

MessageQueue Component

  • Unify percentage value for Job::$jobProgress. Now 100% is stored as 1 instead of 100.

MessageQueueBundle

  • The service oro_message_queue.job.calculate_root_job_status_service was renamed to oro_message_queue.job.root_job_status_calculator and marked as private
  • The service oro_message_queue.job.calculate_root_job_progress_service was renamed to oro_message_queue.job.root_job_progress_calculator and marked as private

MigrationBundle

  • The service oro_migration.twig.schema_dumper was marked as private

NavigationBundle

  • The following services were marked as private:
    • oro_menu.twig.extension
    • oro_navigation.title_service.twig.extension

PlatformBundle

  • The service oro_platform.twig.platform_extension was marked as private

ReminderBundle

  • The service oro_reminder.twig.extension was marked as private

RequireJSBundle

  • The service oro_requirejs.twig.requirejs_extension was marked as private

ScopeBundle

  • Class ScopeManager[?]:
    • changed the return type of findBy method from BufferedQueryResultIterator to BufferedQueryResultIteratorInterface
    • changed the return type of findRelatedScopes method from BufferedQueryResultIterator to BufferedQueryResultIteratorInterface

SearchBundle

  • entityManager instead of em should be used in BaseDriver children
  • OrmIndexer should be decoupled from DbalStorer dependency
  • The service oro_search.twig.search_extension was marked as private
  • The oro:search:reindex command now works synchronously by default. Use the --scheduled parameter if you need the old, async behaviour

SecurityBundle

  • Service overriding in compiler pass was replaced by service decoration for next services:
    • sensio_framework_extra.converter.doctrine.orm
    • security.acl.dbal.provider
    • security.acl.cache.doctrine
    • security.acl.voter.basic_permissions
  • The service oro_security.twig.security_extension was marked as private

SegmentBundle

  • The service oro_segment.twig.extension.segment was marked as private

SidebarBundle

  • The service oro_sidebar.twig.extension was marked as private

SyncBundle

  • The service oro_wamp.twig.sync_extension was marked as private

TagBundle

  • The service oro_tag.twig.tag.extension was marked as private

ThemeBundle

  • The service oro_theme.twig.extension was marked as private

TranslationBundle

  • The service oro_translation.twig.translation.extension was marked as private
  • Added array $filtersType = [] parameter to the generate method, that receives an array of filter types to be applies on the route in order to support filters such as contains when generating routes
  • Class AddLanguageType[?]
    • Changed parent from type from locale to oro_choice
  • Updated service definition for oro_translation.extension.transtation_packages_provider changed publicity to false

UIBundle

  • The following services were marked as private:
    • oro_ui.twig.extension.formatter
    • oro_ui.twig.tab_extension
    • oro_ui.twig.html_tag
    • oro_ui.twig.placeholder_extension
    • oro_ui.twig.ui_extension

UserBundle

  • The service oro_user.twig.user_extension was marked as private
  • Class StatusController[?]
    • renamed method setCurrentStatus to setCurrentStatusAction
    • renamed method clearCurrentStatus to clearCurrentStatusAction

WindowsBundle

  • The service oro_windows.twig.extension was marked as private

WorkflowBundle

  • The service oro_workflow.twig.extension.workflow was marked as private

Deprecated

ActionBundle

  • RouteExists[?] deprecated because of:
    • work with RouteCollection is performance consuming
    • it was used to check bundle presence, which could be done with service_exists

BatchBundle

  • DeletionQueryResultIterator[?] is deprecated. Use BufferedIdentityQueryResultIterator[?] instead

CronBundle

  • Interface CronCommandInterface[?]
    • deprecated method isActive

DataGridBundle

  • DeletionIterableResult[?] is deprecated. Use BufferedIdentityQueryResultIterator[?] instead

DistributionBundle

  • The method ErrorHandler::handle[?] is deprecated. Use ErrorHandler::handleErrors[?] instead.

EmailBundle

  • The service oro_email.link.autoresponserule_manager was marked as deprecated

EntityConfigBundle

  • The service oro_entity_config.link.config_manager was marked as deprecated

EntityExtendBundle

  • Class ExtendExtension[?]
    • deprecated addOneToManyInverseRelation

FormBundle

  • Class UpdateHandler[?]:
    • marked as deprecated, use UpdateHandlerFacade[?] (service oro_form.update_handler) instead

ImportExportBundle

  • Class FileSystemOperator[?] is deprecated now. Use FileManager[?] instead.

LocaleBundle

  • Class ExtendLocalizedFallbackValue[?]
    • deprecated and will be removed in 2.3 release

SearchBundle

  • DbalStorer is deprecated. If you need its functionality, please compose your class with DBALPersistenceDriverTrait
  • Deprecated services and classes:
    • oro_search.search.engine.storer
    • DbalStorer[?]
  • Interface EngineV2Interface[?] marked as deprecated - please, use EngineInterface[?] instead
  • PdoMysql[?] getWords method is deprecated. All non alphanumeric chars are removed in BaseDriver[?] filterTextFieldValue from fulltext search for MySQL and PgSQL

Removed

AddressBundle

  • The parameter oro_address.twig.extension.phone.class was removed from DIC
  • The service oro_address.provider.phone.link was removed

AsseticBundle

  • The parameter oro_assetic.twig_extension.class was removed from DIC

AttachmentBundle

  • The parameter oro_attachment.twig.file_extension.class was removed from DIC

ConfigBundle

  • The parameter oro_config.twig_extension.class was removed from DIC

CurrencyBundle

  • The parameter oro_currency.twig.currency.class was removed from DIC

DashboardBundle

  • The service oro_dashboard.widget_config_value.date_range.converter.link was removed

DataGridBundle

  • Class GroupConcat[?] was removed. Use GroupConcat from package oro/doctrine-extensions instead.

EmailBundle

  • Oro/Bundle/EmailBundle/Migrations/Data/ORM/EnableEmailFeature removed, feature enabled by default
  • The parameter oro_email.twig.extension.email.class was removed from DIC

EmbeddedFormBundle

  • The parameter oro_embedded_form.back_link.twig.extension.class was removed from DIC

EntityBundle

  • The parameter oro_entity.twig.extension.entity.class was removed from DIC
  • The service oro_entity.fallback.resolver.entity_fallback_resolver.link was removed

EntityConfigBundle

  • The parameter oro_entity_config.twig.extension.config.class was removed from DIC

EntityExtendBundle

  • The parameter oro_entity_extend.twig.extension.dynamic_fields.class was removed from DIC
  • The parameter oro_entity_extend.twig.extension.enum.class was removed from DIC

EntityMergeBundle

  • The parameter oro_entity_merge.twig.extension.class was removed from DIC

EntityPaginationBundle

  • The parameter oro_entity_pagination.twig_extension.entity_pagination.class was removed from DIC

FormBundle

  • The parameter oro_form.twig.form.class was removed from DIC
  • The parameter oro_form.twig.js_validation_extension.class was removed from DIC
  • The service oro_form.twig.js_validation_extension was removed from DIC
  • Class JsValidationExtension[?] was removed. Its functionality was moved to FormExtension[?]

HelpBundle

  • The parameter oro_help.twig.extension.class was removed from DIC

ImportExportBundle

  • Class AbstractPreparingHttpImportMessageProcessor[?] and its service oro_importexport.async.abstract_preparing_http_import were removed. You can use PreHttpImportMessageProcessor[?] and HttpImportMessageProcessor[?].
  • Class PreparingHttpImportMessageProcessor[?] and its service oro_importexport.async.preparing_http_import were removed. You can use PreHttpImportMessageProcessor[?] and HttpImportMessageProcessor[?].
  • Class PreparingHttpImportValidationMessageProcessor[?] and its service oro_importexport.async.preparing_http_import_validation were removed. You can use PreHttpImportMessageProcessor[?] and HttpImportMessageProcessor[?].
  • Class AbstractChunkImportMessageProcessor[?] and its service oro_importexport.async.abstract_chunk_http_import were removed. You can use PreHttpImportMessageProcessor[?] and HttpImportMessageProcessor[?].
  • Class ChunkHttpImportMessageProcessor[?] and its service oro_importexport.async.chunck_http_import were removed. You can use PreHttpImportMessageProcessor[?] and HttpImportMessageProcessor[?].
  • Class ChunkHttpImportValidationMessageProcessor[?] and its service oro_importexport.async.chunck_http_import_validation were removed. You can use PreHttpImportMessageProcessor[?] and HttpImportMessageProcessor[?].
  • Class CliImportValidationMessageProcessor[?] and its service oro_importexport.async.cli_import_validation were removed. You can use PreCliImportMessageProcessor[?] and CliImportMessageProcessor[?].
  • Class SplitterCsvFiler[?] and its service oro_importexport.splitter.csv were removed. You can use BatchFileManager[?] instead.

InstallerBundle

  • The parameter oro_installer.listener.request.class was removed from DIC

IntegrationBundle

  • The parameter oro_integration.twig.integration.class was removed from DIC

LayoutBundle

  • Removed the following parameters from the DI container:
    • oro_layout.layout_factory_builder.class
    • oro_layout.twig.extension.layout.class
    • oro_layout.twig.renderer.class
    • oro_layout.twig.renderer.engine.class
    • oro_layout.twig.layout_renderer.class
    • oro_layout.twig.form.engine.class

LocaleBundle

  • The service oro_locale.twig.name was removed
  • The service oro_translation.event_listener.language_change was removed
  • Removed the following parameters from DIC:
    • oro_locale.twig.date_format.class
    • oro_locale.twig.locale.class
    • oro_locale.twig.calendar.class
    • oro_locale.twig.date_time.class
    • oro_locale.twig.name.class
    • oro_locale.twig.address.class
    • oro_locale.twig.number.class

MessageQueue Component

  • Class Oro\Component\MessageQueue\Job\CalculateRootJobStatusService was removed. Logic was transferred to Oro\Component\MessageQueue\Job\RootJobStatusCalculator

MigrationBundle

  • The parameter oro_migration.twig.schema_dumper.class was removed from DIC

NavigationBundle

  • Removed the following parameters from DIC:
    • oro_menu.twig.extension.class
    • oro_navigation.event.master_request_route_listener.class
    • oro_navigation.title_service.twig.extension.class
    • oro_navigation.title_service.event.request.listener.class
    • oro_navigation.twig_hash_nav_extension.class

OrganizationBundle

  • Removed the following parameters from DIC:
    • oro_organization.twig.get_owner.class
    • oro_organization.twig.business_units.class
  • The following services were removed:
    • oro_organization.twig.get_owner
    • oro_organization.twig.business_units

PlatformBundle

  • The parameter oro_platform.twig.platform_extension.class was removed from DIC

ReminderBundle

  • The parameter oro_reminder.twig.extension.class was removed from DIC

SearchBundle

  • The parameter oro_search.twig_extension.class was removed from DIC

SecurityBundle

  • Next container parameters were removed:
    • oro_security.acl.voter.class
    • oro_security.twig.security_extension.class
    • oro_security.twig.security_organization_extension
    • oro_security.twig.acl.permission_extension.class
    • oro_security.listener.context_listener.class
    • oro_security.listener.console_context_listener.class
  • The service oro_security.twig.security_organization_extension was removed
  • The service oro_security.twig.acl.permission_extension was removed
  • Class PermissionExtension[?] was removed
  • Class OroSecurityOrganizationExtension[?] was removed

SegmentBundle

  • The parameter oro_segment.twig.extension.segment.class was removed from DIC

SidebarBundle

  • The parameter oro_sidebar.twig.extension.class was removed from DIC
  • The parameter oro_sidebar.request.handler.class was removed from DIC

SyncBundle

  • The parameter oro_wamp.twig.class was removed from DIC
  • The service oro_sync.twig.content.tags_extension was removed

TagBundle

  • The parameter oro_tag.twig.tag.extension.class was removed from DIC

TestFrameworkBundle

  • @dbIsolation annotation removed, applied as default behavior
  • @dbReindex annotation removed, use SearchExtensionTrait::clearIndexTextTable[?]

ThemeBundle

  • The parameter oro_theme.twig.extension.class was removed from DIC

UIBundle

  • Removed the following parameters from DIC:
    • oro_ui.twig.sort_by.class
    • oro_ui.twig.ceil.class
    • oro_ui.twig.extension.class
    • oro_ui.twig.mobile.class
    • oro_ui.twig.widget.class
    • oro_ui.twig.date.class
    • oro_ui.twig.regex.class
    • oro_ui.twig.skype_button.class
    • oro_ui.twig.form.class
    • oro_ui.twig.formatter.class
    • oro_ui.twig.placeholder.class
    • oro_ui.twig.tab.class
    • oro_ui.twig.content.class
    • oro_ui.twig.url.class
    • oro_ui.twig.js_template.class
    • oro_ui.twig.merge_recursive.class
    • oro_ui.twig.block.class
    • oro_ui.twig.html_tag.class
    • oro_ui.twig.extension.formatter.class
    • oro_ui.view.listener.class
    • oro_ui.view.content_provider.listener.class
  • Removed the following services:
    • oro_ui.twig.sort_by_extension
    • oro_ui.twig.ceil_extension
    • oro_ui.twig.mobile_extension
    • oro_ui.twig.form_extension
    • oro_ui.twig.view_extension
    • oro_ui.twig.formatter_extension
    • oro_ui.twig.widget_extension
    • oro_ui.twig.date_extension
    • oro_ui.twig.regex_extension
    • oro_ui.twig.skype_button_extension
    • oro_ui.twig.content_extension
    • oro_ui.twig.url_extension
    • oro_ui.twig.js_template
    • oro_ui.twig.merge_recursive
    • oro_ui.twig.block

UserBundle

  • The parameter oro_user.twig.user_extension.class was removed from DIC

WindowsBundle

  • The parameter oro_windows.twig.extension.class was removed from DIC

Fixed

ChainProcessor Component

  • Fixed an issue with invalid execution order of processors. The issue was that processors from different groups are intersected. During the fix the calculation of internal priorities of processors was changed, this may affect existing configuration of processors in case if you have common (not bound to any action) processors and ungrouped processors which should work with regular grouped processors. The previous priority rules:
    Processor type Processor priority Group priority
    initial common processors from -255 to 255
    initial ungrouped processors from -255 to 255
    grouped processors from -255 to 255 from -254 to 252
    final ungrouped processors from -65535 to -65280
    final common processors from min int to -65536
    The new priority rules:
    Processor type Processor priority Group priority
    ---------------- -------------------- ----------------
    initial common processors greater than or equals to 0
    initial ungrouped processors greater than or equals to 0
    grouped processors from -255 to 255 from -255 to 255
    final ungrouped processors less than 0
    final common processors less than 0
    So, the new rules means that:
      * common and ungrouped processors with the priority greater than or equals to 0 will be executed before grouped processors
      * common and ungrouped processors with the priority less than 0 will be executed after grouped processors
      * now there are no any magic numbers for priorities of any processors
    

SearchBundle

  • Return value types in SearchQueryInterface[?] and AbstractSearchQuery[?] were fixed to support fluent interface Orm[?] setDrivers method and $drivers and injected directly to SearchIndexRepository[?] OrmIndexer[?] setDrivers method and $drivers and injected directly to SearchIndexRepository[?]

2.0.0 (2017-01-16)

This changelog references the relevant changes (new features, changes and bugs) done in 2.0 versions.

  • Changed minimum required php version to 5.6
  • PhpUnit 5.7 support
  • Extend fields default mode is ConfigModel::MODE_READONLY[?]
  • Added support of PHP 7.1

1.10.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.10.0 versions.

  • The application has been upgraded to Symfony 2.8 (Symfony 2.8.10 doesn't supported because of Symfony issue)
  • Added support php 7
  • Changed minimum required php version to 5.5.9

1.9.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.9.0 versions.

  • 1.9.0 (2016-02-15)
  • Inline editing in grids
  • Grid column management
  • New UX for Tags
  • Automated REST API for GET requests
  • Performance improvements
  • Apply range filters for numerical fields in grids
  • Manage field tooltips from the UI
  • Override calendar-view.js in customizations
  • Profiler of duplicated queries
  • Importing layout updates

1.8.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.8.0 versions.

  • 1.8.0 (2015-08-26)
  • Visual workflow configurator
  • New and extended APIs to work with emails
  • Segmentation based on Data audit
  • Improvements to search
  • Improved filtering on option set attributes, allowing for multiple selections
  • The application has been upgraded to Symfony 2.7 and migrated to Doctrine 2.5
  • Select2 component has been improved to automatically initializes select2 widget
  • Documentation for the new Oro Layout component has been added with examples of use

1.7.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.7.0 versions.

  • 1.7.0 (2015-04-28)
  • New page layouts and layout themes
  • Added Google single sign-on
  • Added Change or reset users' passwords
  • Added Grid views
  • Dashboard widget configuration
  • Email auto-response in workflow definition

1.6.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.6.0 versions.

  • 1.6.0 (2015-01-19)
  • Comments to activities. With this feature, the users will be able to add comments to various record activities, such as calls, notes, calendar events, tasks, and so on, making it possible to leave permanent remarks to particular activities they find important, and even engage in conversations that might come in handy later. Comments are added to every activity record separately, in a linear thread. In addition to text they might contain a file attachment (1 file/image per comment). Comments may be enabled or disabled for any activity in Entity Management. The ability to add, edit, delete, and view others’ comments is subject to user’s ACL configuration.
  • WYSIWYG rich text editor for emails and notes. This feature allows users to create rich text emails and notes with the built-in WYSIWYG text editor. It allows to mark text as bold, italic, and underlined; change text color and background; create bullet and numbered lists; insert hyperlinks and chunks of source code. Rich text editor may be turned off in System configuration—in this case, editor will no longer be available and all previously created rich text pieces will be stripped of any formatting to plain text.

1.5.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.5.0 versions.

  • 1.5.0 (2014-12-18)
  • Invitations to calendar events. It is now possible to invite other Oro users to events, send them email notifications about this invitation and receive feedback about their responses or lack thereof. To invite a user to your event, simply open its edit form and choose guests in a respectively named selector control. After you save the event with invitees, they will receive email notifications about the invitation with a link to their copy of the event in OroCRM. On the view page of that event they will be able to respond to an invitation with three options: Attend, Tentatively attend, and Not attend. Response status (including no response yet) will be displayed on the event tile in the calendar view, and next to the guest's name in the event view. An invitee will be able to change his response after the initial choice, i.e. choose to not attend a previously agreed event. For every response to an invitation, or a change in plans, you (i.e. the organizer of the event) will receive an email notification.
  • System calendars. This feature allows developers to add so-called System calendars to Oro Platform. Use cases for such calendars include company-wide holiday calendar; organization-wide calendar of conferences and conventions, and so on. (Note that organization calendars will only be available in Enterprise Edition 1.7.0). These calendars and their events will be automatically added to Calendar views of all users in the entire system. Events of these calendars can be managed on their view forms that are available under System > System Calendars. The permission to add or modify events might be assigned to as many people as needed—e.g. the HR and the office manager.
  • Task calendar. Task calendar is a special kind of system calendar that displays tasks assigned to the user on the calendar view in addition to calendar events. For now, there is no way to add tasks via the calendar view, but it is possible to edit or delete existing tasks. It is not possible to view other users' task calendars either—only the personal task calendar is available. The calendar view also features a button that leads to the grid of all tasks, similarly to the existing Events button.
  • Color coding for calendars and calendar events. The user now may change the color of the calendar from the default one in the calendar actions popup menu. Similarly, the user can change the color of the individual event in its Edit dialogue. A palette of standard colors is offered in both cases, with the option to select a custom color with the color wheel. Standard palettes for calendars and events may be configured in the system configuration under Display settings > Calendar settings.
  • Other minor changes to calendar view. It is now possible to turn calendars on and off without removing them from the list by clicking on the colored square or via the popup menu. Click on the event tile opens its View Event form, not Edit.
  • Calls, Tasks, and Calendar events as entity activities. This is an expansion to the entity activity feature that was first released with 1.3.0 where we introduced the concept of entity activity to the platform and converted emailing to the activity mechanism. Now we are adding three more ubiquitous user actions to this list: logging calls, creating tasks, and scheduling calendar events. In order to better accommodate the expanding lot of activities we also have customized the UI for them. Previously, every action/activity had its own button regardless of the number of activities available, so if the admin has enabled a lot of activities, users could easily get confused with a long row of buttons, especially on a low resolution screen. Now all activities and non-activity based actions other than Edit and Delete are conveniently grouped into a single More Actions dropdown button.
  • Record Activities Widget. The Record Activities Widget replaces the Record Activity block, where activities were listed by their type in separate tabs. Instead of tabs, the widget puts all record activities—emails, calls, tasks, calendar events, etc—in a single paginated list. The user is able to filter the list by activity type and by date of activity. It is possible to configure the the list to be sorted either by creation date or by last update date.
  • Custom fields without schema update. It is now possible to add custom fields to entities and immediately use them without schema update. This ability comes with drawbacks: these "serialized" fields can only store textual or numeric data—they cannot be option sets, relations, or files/images; nor they are available in reports or segments. But these fields will be displayed on entity view/add forms, and may be added to grid and export/import profile if necessary. To create such fields, click Create field button on the entity view page in Entity management, and then choose "Serialized field" in Storage type selector. To create regular field, choose "Table column."
  • Entity records pagination. This feature allows the user to "remember" a set of entity records that existed on the grid (i.e. with filters applied) when he moves to the view page of any record, and then quickly navigate through these records with a new pagination control that appears in top right corner of the page. Pagination only works when the user comes to a view page from the main entity grid; in any other case (e.g. search, direct link, grid on another page, segment) the pagination control will not be displayed. Pagination is preserved on a pinned page in both control and in breadcrumbs.

1.4.3

This changelog references the relevant changes (new features, changes and bugs) done in 1.4.3 versions.

  • 1.4.3 (2014-12-05)
  • List of improvements and fixed bugs
  • Fixed extended entity is set to "false" after oro:entity-config:update with force

1.4.2

This changelog references the relevant changes (new features, changes and bugs) done in 1.4.2 versions.

  • 1.4.2 (2014-12-02)
  • List of improvements and fixed bugs
  • Implemented form type guessers for custom fields of existing entities
  • Added support of cascade option for association in Extend Extension
  • Fixed insecure content from websockets when HTTPS used
  • Fixed IMAP Sync with date parsing exception
  • Magento Integration: Sensitive data displayed in API request logs
  • Magento Integration: Memory Issue on Error
  • Magento Integration: Duplicated jobs on two way Magento sync

1.4.1

This changelog references the relevant changes (new features, changes and bugs) done in 1.4.1 versions.

  • 1.4.1 (2014-11-17)
  • List of improvements and fixed bugs
  • Refactor extended entity to prevent class name collisions
  • Implement form type guessers for custom fields of existing entities
  • Use route from config in email address link to avoid potential errors
  • Fixed duplicates of entities during magento import
  • Error in "oro_multiple_entity" if it's used without "default_element" option
  • Lost organization name after upgrade

1.4.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.4.0 versions.

  • 1.4.0 (2014-10-15)
  • The re-introduction of Channels. We started the implementation of a new vision for the Channels in 1.3 version and now we bring Channels back, although under a new definition. The general idea behind channels may be explained as follows: a channel in OroCRM represents an outside source customer and sales data, where "customer" and "sales" must be understood in the broadest sense possible. Depending on the nature of the outside source, the channel may or may not require a data integration. This new definition leads to multiple noticeable changes across the system.
  • Integration management. Albeit the Integrations grid still displays all integrations that exist in the system, you now may create only "non-customer" standalone integrations, such as Zendesk integration. The "customer" integrations, such as Magento integration, may be created only in scope of a channel and cannot exist without it.
  • Marketing lists. Marketing lists serve as the basis for marketing activities, such as email campaigns (see below). They represent a target auditory of the activity—that is, people, who will be contacted when the activity takes place. Marketing lists have little value by themselves; they exist in scope of some marketing campaign and its activities. Essentially, marketing list is a segment of entities that contain some contact information, such as email or phone number or physical address. Lists are build based on some rules using Oro filtering tool. Similarly to segments, marketing lists can be static or dynamic; the rules are the same. The user can build marketing lists of contacts, Magento customers, leads, etc. In addition to filtering rules, the user can manually tweak contents of the marketing list by removing items ("subscribers") from it. Removed subscribers will no longer appear in the list even if they fit the conditions. It is possible to move them back in the list, too. Every subscriber can also unsubscribe from the list. In this case, he will remain in the list, but will no longer receive email campaigns that are sent to this list. Note that subscription status is managed on per-list basis; the same contact might be subscribed to one list and unsubscribed from another.
  • Email campaigns. Email campaign is a first example of marketing activity implemented in OroCRM. The big picture is following: Every marketing campaign might contain multiple marketing activities, e.g. an email newsletter, a context ad campaign, a targeted phone advertisement. All these activities serve the common goal of the "big" marketing campaign. In its current implementation, email campaign is a one-time dispatch of an email to a list of subscribers. Hence, the campaign consists of three basic parts: Recipients—represented by a Marketing list. Email itself—the user may choose a template, or create a campaign email from scratch. Sending rules—for now, only one-time dispatch is available. Email campaign might be tied to a marketing campaign, but it might exist on its own as well.
  • Improved Email templates. Previously, email templates were used only for email notifications. Now their role is expanded: it is now possible to use templates in email activities to create a new email from the template, and for email campaigns. Support for variables in templates was extended: in addition to "contextual" variables that were related to attributes of the template entity, templates may include "system-wide" variables like current user's first name, or current time, or name of the organization. It is also possible to create a "generic" template that is not related to any entity; in this case it may contain only system variables. New templates are subject to ACL and have owner of user type.
  • Other improvements
  • Multiple improvements to Web API
  • A new implementation of option sets
  • Improved grids
* Community requests. Here is the list of Community requests that were addressed in this version. Features & improvements
  • #50 Add the way to filter on empty fields
  • #116 Add custom templates to workflow transitions
  • #118 Extending countries
  • #136 Console command for CSV import/export
  • #149 New "link" type for datagrid column format
* Bugs fixed
  • #47 Problems with scrolling in iOS 7
  • #62 Problems with the Recent Emails widget
  • #139 Error 500 after removing unique key of entity
  • #158 Update doctrine version to 2.4.4

1.4.0-RC1

This changelog references the relevant changes (new features, changes and bugs) done in 1.4.0-RC1 versions.

  • 1.4.0-RC1 (2014-09-30)
  • The re-introduction of Channels. We started the implementation of a new vision for the Channels in 1.3 version and now we bring Channels back, although under a new definition. The general idea behind channels may be explained as follows: a channel in OroCRM represents an outside source customer and sales data, where "customer" and "sales" must be understood in the broadest sense possible. Depending on the nature of the outside source, the channel may or may not require a data integration. This new definition leads to multiple noticeable changes across the system.
  • Integration management. Albeit the Integrations grid still displays all integrations that exist in the system, you now may create only "non-customer" standalone integrations, such as Zendesk integration. The "customer" integrations, such as Magento integration, may be created only in scope of a channel and cannot exist without it.
  • Marketing lists. Marketing lists serve as the basis for marketing activities, such as email campaigns (see below). They represent a target auditory of the activity—that is, people, who will be contacted when the activity takes place. Marketing lists have little value by themselves; they exist in scope of some marketing campaign and its activities. Essentially, marketing list is a segment of entities that contain some contact information, such as email or phone number or physical address. Lists are build based on some rules using Oro filtering tool. Similarly to segments, marketing lists can be static or dynamic; the rules are the same. The user can build marketing lists of contacts, Magento customers, leads, etc. In addition to filtering rules, the user can manually tweak contents of the marketing list by removing items ("subscribers") from it. Removed subscribers will no longer appear in the list even if they fit the conditions. It is possible to move them back in the list, too. Every subscriber can also unsubscribe from the list. In this case, he will remain in the list, but will no longer receive email campaigns that are sent to this list. Note that subscription status is managed on per-list basis; the same contact might be subscribed to one list and unsubscribed from another.
  • Email campaigns. Email campaign is a first example of marketing activity implemented in OroCRM. The big picture is following: Every marketing campaign might contain multiple marketing activities, e.g. an email newsletter, a context ad campaign, a targeted phone advertisement. All these activities serve the common goal of the "big" marketing campaign. In its current implementation, email campaign is a one-time dispatch of an email to a list of subscribers. Hence, the campaign consists of three basic parts: Recipients—represented by a Marketing list. Email itself—the user may choose a template, or create a campaign email from scratch. Sending rules—for now, only one-time dispatch is available. Email campaign might be tied to a marketing campaign, but it might exist on its own as well.
  • Improved Email templates. Previously, email templates were used only for email notifications. Now their role is expanded: it is now possible to use templates in email activities to create a new email from the template, and for email campaigns. Support for variables in templates was extended: in addition to "contextual" variables that were related to attributes of the template entity, templates may include "system-wide" variables like current user's first name, or current time, or name of the organization. It is also possible to create a "generic" template that is not related to any entity; in this case it may contain only system variables. New templates are subject to ACL and have owner of user type.
  • Other improvements
  • Multiple improvements to Web API
  • A new implementation of option sets
  • Improved grids
* Community requests. Here is the list of Community requests that were addressed in this version. Features & improvements
  • #50 Add the way to filter on empty fields
  • #116 Add custom templates to workflow transitions
  • #118 Extending countries
  • #136 Console command for CSV import/export
  • #149 New "link" type for datagrid column format
* Bugs fixed
  • #47 Problems with scrolling in iOS 7
  • #62 Problems with the Recent Emails widget
  • #139 Error 500 after removing unique key of entity
  • #158 Update doctrine version to 2.4.4

1.3.1

This changelog references the relevant changes (new features, changes and bugs) done in 1.3.1 versions.

  • 1.3.1 (2014-08-14)
  • Minimum PHP version: PHP 5.4.9
  • PostgreSQL support
  • Fixed issue: Not entire set of entities is exported
  • Fixed issue: Page crashes when big value is typed into the pagination control
  • Fixed issue: Error 500 on Schema update
  • Other minor issues

1.3.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.3.0 versions.

  • 1.3.0 (2014-07-23)
  • Redesign of the Navigation panel and left-side menu bar
  • Website event tracking
  • Processes
  • New custom field types for entities: File and Image
  • New control for record lookup (relations)
  • Data import in CSV format

1.2.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.2.0 versions.

  • 1.2.0 (2014-05-28)
  • Ability to delete Channels
  • Workflow view
  • Reset of Workflow data
  • Line charts in Reports
  • Fixed issues with Duplicated emails
  • Fixed Issue Use of SQL keywords as extended entity field names
  • Fixed Issue Creating one-to-many relationship on custom entity that inverses many-to-one relationship fails
  • Fixed Community requests

1.2.0-rc1

This changelog references the relevant changes (new features, changes and bugs) done in 1.2.0 RC1 versions.

  • 1.2.0 RC1 (2014-05-12)
  • Ability to delete Channels
  • Workflow view
  • Reset of Workflow data
  • Fixed issues with Duplicated emails
  • Fixed Issue Use of SQL keywords as extended entity field names
  • Fixed Issue Creating one-to-many relationship on custom entity that inverses many-to-one relationship fails

1.1.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.1.0 versions.

  • 1.1.0 (2014-04-28)
  • Dashboard management
  • Fixed problem with creation of on-demand segments
  • Fixed broken WSSE authentication
  • Fixed Incorrectly calculated totals in grids

1.0.1

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.1 versions.

  • 1.0.1 (2014-04-18)
  • Issue #3979 � Problems with DB server verification on install
  • Issue #3916 � Memory consumption is too high on installation
  • Issue #3918 � Problems with installation of packages from console
  • Issue #3841 � Very slow installation of packages
  • Issue #3916 � Installed application is not working correctly because of knp-menu version
  • Issue #3839 � Cache regeneration is too slow
  • Issue #3525 � Broken filters on Entity Configuration grid
  • Issue #3974 � Settings are not saved in sidebar widgets
  • Issue #3962 � Workflow window opens with a significant delay
  • Issue #2203 � Incorrect timezone processing in Calendar
  • Issue #3909 � Multi-selection filters might be too long
  • Issue #3899 � Broken link from Opportunity to related Contact Request

1.0.0

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0 versions.

  • 1.0.0 (2014-04-01)
  • Workflow management UI
  • Segmentation
  • Reminders
  • Package management
  • Page & Grand totals for grids
  • Proper formatting of Money and Percent values
  • Configurable Sidebars
  • Notification of content changes in the Pinbar

1.0.0-rc3

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-rc3 versions.

  • 1.0.0-rc3 (2014-02-25)
  • Embedded forms
  • CSV export

1.0.0-rc2

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-rc2 versions.

  • 1.0.0-rc2 (2014-01-30)
  • Package management
  • Translations management
  • FontAwesome web-application icons

1.0.0-rc1

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-rc1 versions.

  • 1.0.0-rc1 (2013-12-30)
  • Table reports creation wizard
  • Manageable labels of entities and entity fields
  • Record updates notification
  • Sidebars widgets
  • Mobile Web
  • Package Definition and Management
  • Themes
  • Notifications for owners
  • --force option for oro:install
  • Remove old Grid bundle
  • Basic dashboards

1.0.0-beta5

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-beta5 versions.

  • 1.0.0-beta5 (2013-12-05)
  • ACL management in scope of organization and business unit
  • "Option Set" Field Type for Entity Field
  • Form validation improvements
  • Tabs implementation on entity view pages
  • Eliminated registry js-component
  • Implemented responsive markup on most pages

1.0.0-beta4

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-beta4 versions.

  • 1.0.0-beta4 (2013-11-21)
  • Grid refactoring
  • Form validation improvements
  • Make all entities as Extended
  • JavaScript Tests
  • End support for Internet Explorer 9

1.0.0-beta3

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-beta3 versions.

  • 1.0.0-beta3 (2013-11-11)
  • Upgrade the Symfony framework to version 2.3.6
  • Oro Calendar
  • Email Communication
  • Removed bundle dependencies on application
  • One-to-many and many-to-many relations between extended/custom entities
  • Localizations and Internationalization of input and output

1.0.0-beta2

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-beta2 versions.

  • 1.0.0-beta2 (2013-10-28)
  • Minimum PHP version: PHP 5.4.4
  • Installer enhancements
  • Automatic bundles distribution for application
  • Routes declaration on Bundles level
  • System Help and Tooltips
  • RequireJS optimizer utilization
  • ACL Caching

1.0.0-beta1

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-beta1 versions.

  • 1.0.0-beta1 (2013-09-30)
  • New ACL implementation
  • Emails synchronization via IMAP
  • Custom entities and fields in usage
  • Managing relations between entities
  • Grid views

1.0.0-alpha6

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-alpha6 versions.

  • 1.0.0-alpha6 (2013-09-12)
  • Maintenance Mode
  • WebSocket messaging between browser and the web server
  • Asynchronous Module Definition of JS resources
  • Added multiple sorting for a Grid
  • System configuration

1.0.0-alpha5

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-alpha5 versions.

  • 1.0.0-alpha5 (2013-08-29)
  • Custom entity creation
  • Cron Job
  • Record ownership
  • Grid Improvements
  • Filter Improvements
  • Email Template Improvements
  • Implemented extractor for messages in PHP code
  • Removed dependency on SonataAdminBundle
  • Added possibility to unpin page using pin icon

1.0.0-alpha4

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-alpha4 versions.

  • 1.0.0-alpha4 (2013-07-31)
  • Upgrade Symfony to version 2.3
  • Entity and Entity's Field Management
  • Multiple Organizations and Business Units
  • Transactional Emails
  • Email Templates
  • Tags Management
  • Translations JS files
  • Pin tab experience update
  • Redesigned Page Header
  • Optimized load time of JS resources

1.0.0-alpha3

This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-alpha3 versions.

  • 1.0.0-alpha3 (2013-06-27)
  • Placeholders
  • Developer toolbar works with AJAX navigation requests
  • Configuring hidden columns in a Grid
  • Auto-complete form type
  • Added Address Book
  • Localized countries and regions
  • Enhanced data change log with ability to save changes for collections
  • Removed dependency on lib ICU