This file is deprecated and no longer in use. You will find the changelog in the main changelog file.
If you want to learn more about writing or using the changelog, have a look here.
Additions / Changes
- Added
JoinBuilderInterface
and moved join logic fromFieldResolver
intoJoinBuilder
- Added getJoinBuilder to
FieldResolverInterface
- Fixed Twig template loading for the theme system. Twig files from themes will only be loaded if the theme is active for the requested sales channel.
- Added
active
column totheme
entity. - Improved theme lifecycle handling. Themes will be set to inactive if deactivated/uninstalled. Config will be reloaded when a theme is updated. Themes will automatically be recompiled if the plugin is updated.
- Improved loading/refresh of theme.json. You can now change the theme.json and use
bin/console theme:refresh
to reload the configuration. View all changes from v6.0.0+dp1...v6.0.0+ea1 - Added Twig filters
sw_encode_url
andsw_encode_media_url
to Storefront. Contrary to Twig'surl_encode
filter it encodes every segment of the path rather than the whole url string. You can use them with every URL in your templates
{# results in http://your.domain:8080/path%20to/file%20with%20whitspace-and%28brackets%29.png #}
<img src="{{ "http://your.domain:8080/path to/file with whitspace-and(brackets).png" | sw_encode_url }}"
{# encodes the url of your media entity #}
<img src="{{ yourStorefrontMediaObject | sw_encode_media_url }}
- We added the
$path
property to theWriteCommandInterface
. With this you can track your commands initial position in the request. This can be useful when validate your commands inPreWriteValidateEvent
s when the commandqueue is already in write order.
Additions / Changes
- Administration
- Moved the global state of the module
sw-cms
to VueX - Renamed
sw-many-to-many-select
tosw-entity-many-to-many-select
- Renamed
sw-tag-field-new
tosw-entity-tag-select
- Added
sw-select-base
,sw-select-result
,sw-select-result-list
andsw-select-selection-list
as base components for select fields - Changed select components in path
administration/src/app/component/form/select
to operate with v-model - Deprecated
sw-tag-field
usesw-entity-tag-select
instead - Deprecated
sw-select
usesw-multi-select
orsw-single-select
instead - Deprecated
sw-select-option
usesw-result-option
instead - Moved the
sw-cms
fromState.getStore()
toRepository
and added clientsided data resolver - Added translations for the
sw-cms
module - Replaced vanilla-colorpicker dependency with custom-build vuejs colorpicker
EntityCollection.filter
returns a newEntityCollection
object instead of a native array- Added Sections which support sidebars to the
sw-cms
- Changed snippet path of
sw_cms_sidebar_section_config_sidebar_mobile
block.
- Moved the global state of the module
- Core
- Added DAL support for multi primary keys.
- Added API endpoints for translation definitions
- Added new event
\Shopware\Core\Content\Category\Event\NavigationLoadedEvent
which dispatched after a sales channel navigation loaded - Added restriction to storefront API to prevent filtering, sorting, aggregating and association loading of ReadProtected fields/entities
- Added
\Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria::addAssociations
which allows to add multiple association paths - Added
\Shopware\Core\Framework\DataAbstractionLayer\Field\StateMachineStateField
- Added generic
\Shopware\Core\System\StateMachine\Api\StateMachineActionController
- Changed field
stateId
fromFkField
toStateMachineStateField
inOrderDefinition
andOrderTransactionDefinition
- Changed parameter of
\Shopware\Core\System\StateMachine\StateMachineRegistry::transition
.\Shopware\Core\System\StateMachine\Transition
is now expected. - Changed behaviour of
\Shopware\Core\System\StateMachine\StateMachineRegistry::transition
to now expect the action name instead of the toStateName - Changed signature of
\Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria::addAssociation
The second parameter$criteria
has been removed. Use\Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria::getAssociation
instead. - Changed the name of
core.<locale>.json
tomessages.<locale>.json
and changed to new base file. - Changed name of property in CurrencyDefinition from
isDefault
toisSystemDefault
- Added RouteScopes as required Annotation for all Routes
- Added new function
\Shopware\Core\Framework\DataAbstractionLayer\Indexing\IndexerInterface::partial
to index partially in time limited requests - Added
\Shopware\Core\Framework\Migration\InheritanceUpdaterTrait
to update entity schema for inherited associations - Changed default enqueue transport from enqueue/fs to enqueue/dbal
- Made the service
\Shopware\Core\System\SystemConfig\SystemConfigService
public - Removed
Shopware\Core\Framework\DataAbstractionLayer\Search\Aggregation\ValueCount
useShopware\Core\Framework\DataAbstractionLayer\Search\Aggregation\Bucket\Terms
instead - Removed
Shopware\Core\Framework\DataAbstractionLayer\Search\Aggregation\Value
useShopware\Core\Framework\DataAbstractionLayer\Search\Aggregation\Bucket\Terms
instead - Refactored DAL aggregation system, see
UPGRADE-6.1.md
for more details - Changed
\Shopware\Core\Framework\DataAbstractionLayer\EntityWriteResult
,...\Event\EntityWrittenEvent
...\Event\EntityDeletedEvent
to make them serializable. See removals. - Added
\Shopware\Core\Framework\DataAbstractionLayer\EntityWrittenContainerEvent::getEventByEntityName
which returns allEntityWrittenEvent
s for a given entity name. - Changed
Shopware\Core\Framework\DataAbstractionLayer\Write\EntityExistence
to store primary keys in hex. - Added a new required parameter
DefinitionInstanceRegistry $definitionRegistry
toShopware\Core\Framework\DataAbstractionLayer\FieldSerializer\AbstractFieldSerializer
. - Refactored Kernel plugin loading into
\Shopware\Core\Framework\Plugin\KernelPluginLoader\KernelPluginLoader
. By default the\Shopware\Core\Framework\Plugin\KernelPluginLoader\DbalKernelPluginLoader
is used. The Kernel constructor changed, seeUPGRADE-6.1.md
for more details - Improved Plugin capabilities:
- Plugin bundle class is automatically inserted into container with autoload and autowire
- This allows setter injection in plugin bundle class
- These services are now available in
\Shopware\Core\Framework\Plugin::activate
and\Shopware\Core\Framework\Plugin::deactivate
\Shopware\Core\Framework\Plugin::deactivate
is now always called before\Shopware\Core\Framework\Plugin::uninstall
- Renamed container service id
shopware.cache
tocache.object
- Added new function to
\Shopware\Core\Framework\Adapter\Cache\CacheClearer
. Please use this service to invalidate or delete cache items. - We did some refactoring on how we use
WriteConstraintsViolationExceptions
. It's pathproperty
should now point to the object that is inspected by an validator while thepropertyPath
property inWriteConstraint
objects should only point to the invalid property. For more information read the updated "write command validation" article in the docs. - Added new function
\Shopware\Core\Framework\Migration\MigrationStep::registerIndexer
. This method registers an indexer that needs to run (after the update). See\Shopware\Core\Migration\Migration1570684913ScheduleIndexer
for an example.
- Storefront
- Changed the default storefront script path in
Bundle
toResources/dist/storefront/js
- Changed the name of
messages.<locale>.json
tostorefront.<locale>.json
and changed to not be a base file anymore. - Added
extractIdsToUpdate
toShopware\Storefront\Framework\Seo\SeoUrlRoute\SeoUrlRouteInterface
- Changed the behaviour of the SeoUrlIndexer to rebuild seo urls asynchronously in some cases where a single change to an entity can trigger huge amount if seo url changes.
- Added
\Shopware\Storefront\Framework\Cache\CacheWarmer\CacheRouteWarmerRegistry
which allows to warm up different http cache routes - Added
http:cache:warmup
console command to warm up the http cache. - Added new service
\Shopware\Storefront\Framework\Cache\CacheStore
which is used for the http cache - Added new .env variables
SHOPWARE_HTTP_CACHE_ENABLED
andSHOPWARE_HTTP_DEFAULT_TTL
which configures the http cache. - Added
\Shopware\Storefront\Framework\Cache\ObjectCacheKeyFinder
which finds all entity cache keys in a none entity object. - Added twig helper function
seoUrl
that returns a seo url if possible, otherwise just callsurl
. - Deprecated twig helper functions
productUrl
andnavigationUrl
, useseoUrl
instead.
- Changed the default storefront script path in
Removals
- Administration
- Removed
sw-tag-multi-select
- Removed
sw-multi-select-option
usesw-result-option
instead - Removed
sw-single-select-option
usesw-result-option
instead - Removed
Criteria.value
useCriteria.terms
instead - Removed
Criteria.valueCount
useCriteria.terms
instead - Removed
Criteria.addAssociationPath
useCriteria.addAssociation
instead - Deprecated
sw_product_detail_prices_price_card_price_group_empty_state_rule_select
twig block will be completely removed in the next minor version.
- Removed
- Core
- Removed
\Shopware\Core\Checkout\Customer\SalesChannel\AddressService::getCountryList
function - Removed
\Shopware\Core\Framework\DataAbstractionLayer\Search\PaginationCriteria
- Removed
\Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria::addAssociationPath
use\Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria::addAssociation
instead - Removed
\Shopware\Core\Checkout\Order\Api\OrderActionController
which is now replaced by the generic\Shopware\Core\System\StateMachine\Api\StateMachineActionController
- Removed
\Shopware\Core\Checkout\Order\Api\OrderDeliveryActionController
which is now replaced by the generic\Shopware\Core\System\StateMachine\Api\StateMachineActionController
- Removed
\Shopware\Core\Checkout\Order\Api\OrderTransactionActionController
which is now replaced by the generic\Shopware\Core\System\StateMachine\Api\StateMachineActionController
- Removed
getDefinition
and the correspondingdefinition
member from\Shopware\Core\Framework\DataAbstractionLayer\EntityWriteResults
and...\Event\EntityWrittenEvent
. - Removed
\Shopware\Core\Framework\DataAbstractionLayer\Event\EntityWrittenEvent::getWrittenDefinitions
as the definitions were removed from the event. - Removed
\Shopware\Core\Framework\DataAbstractionLayer\EntityWrittenContainerEvent::getEventByDefinition
. UsegetEventByEntityName
. - Removed
\Shopware\Core\Framework\DataAbstractionLayer\FieldSerializer\JsonFieldSerializer::fieldHandlerRegistry
,...\ListFieldSerializer::compositeHandler
and...\PriceFieldSerializer::fieldHandlerRegistry
as they now use thedefinitionRegistry
from their commonAbstractFieldSerializer
baseclass - Removed
\Shopware\Core\Kernel::getPlugins
, use\Shopware\Core\Framework\Plugin\KernelPluginCollection
from the container instead
- Removed
- Storefront
- Removed
Shopware\Storefront\Framework\Seo\Entity\Field\CanonicalUrlField
, use the twig helper functionseoUrl
to get seo urls - Removed fields
isValid
andautoIncrement
fromSeoUrlDefinition
- Removed