Releases: webgriffe/SyliusAkeneoPlugin
2.8.1
2.8.0
What's Changed
💪 Improvements
📝 Upgrade notes
The v2.8.0 version introduces the Attribute importer.
If you want to import attribute and options translations from Akeneo you have to add the --importer="Attribute"
option to the command that imports once a hour:
- 0 * * * * /path/to/sylius/bin/console -e prod -q webgriffe:akeneo:import --all --importer="AttributeOptions"
+ 0 * * * * /path/to/sylius/bin/console -e prod -q webgriffe:akeneo:import --all --importer="Attribute" --importer="AttributeOptions"
Full Changelog: v2.7.0...v2.8.0
2.7.0
2.6.1
2.6.0
What's Changed
💪 Improvements
Maintainance
📝 Upgrade notes
- A new deprecation in the
Webgriffe\SyliusAkeneoPlugin\ValueHandler\AttributeValueHandler
has been added in #199. The new parameter is:- AkeneoPimClientInterface $akeneoPimClient
Not passing that parameter will cause an error from v3.0.0.
Full Changelog: v2.5.0...v2.6.0
2.5.0
What's Changed
💪 Improvements
📝 Upgrade notes
The v2.5.0 version now allows you to choose which product and product model to import through the webhook entry point.
Take a look at the customization documentation to see how to configure it.
Full Changelog: v2.4.0...v2.5.0
2.4.0 - Product model import
What's Changed
💪 Improvements
📝 Upgrade notes
This version adds the ProductModel importer. If you are using the webhook no changes are requested as it will be automatically enqueued on every update.
If you are using the cronjob, you have to add the --importer="ProductModel"
option to the command that imports every minute:
- * * * * * /path/to/sylius/bin/console -e prod -q webgriffe:akeneo:import --since-file=/path/to/sylius/var/storage/akeneo-import-sincefile.txt --importer="Product" --importer="ProductAssociations"
+ * * * * * /path/to/sylius/bin/console -e prod -q webgriffe:akeneo:import --since-file=/path/to/sylius/var/storage/akeneo-import-sincefile.txt --importer="Product" --importer="ProductModel" --importer="ProductAssociations"
Full Changelog: v2.3.0...v2.4.0
2.3.0 - Webhook support ❤️📬
What's Changed
💪 Improvements
📝 Upgrade notes
This version introduces the support for webhooks. To enable check the new documentation here. It is highly recommended to remove the import command that runs every minute from your crontab and use the webhook instead.
Full Changelog: v2.2.0...v2.3.0
2.2.0 - Update Sylius product options
What's Changed
💪 Improvements
📝 Upgrade notes
-
This version of plugin now requires Sylius >= v1.12.11, this is due to the existence of a new method on product option repository.
-
Some new deprecations in the
Webgriffe\SyliusAkeneoPlugin\AttributeOptions\Importer
have been added in #188. The new parameters are:- ProductOptionRepositoryInterface $optionRepository
- TranslationLocaleProviderInterface $translationLocaleProvider
- FactoryInterface $productOptionValueTranslationFactory
- FactoryInterface $productOptionValueFactory
- FactoryInterface $productOptionTranslationFactory
- Translator $translator
Not passing these parameters will cause an error from v3.0.0.
Full Changelog: v2.1.0...v2.2.0
2.1.0
What's Changed
📝 Upgrade notes
This is just a test-refactoring release, so any changes to the source code have been applied. Anyway, if you extend/use the behat suites from this plugin you should probably adjust your code.
🔧 Fixes and maintenance
Full Changelog: v2.0.1...v2.1.0