diff --git a/meta/documents/changelog_de.md b/meta/documents/changelog_de.md index 0021969106..401b4f5863 100644 --- a/meta/documents/changelog_de.md +++ b/meta/documents/changelog_de.md @@ -1,5 +1,23 @@ # Release Notes für Ceres +## v5.0.40 (2021-10-05) Übersicht aller Änderungen + +### Hinzugefügt + +* plentySHop unterstützt jetzt Bestelleigenschaften. Um Bestelleigenschaften zu nutzen, aktiviere die Einstellung **Nutzung von Bestelleigenschaften (beta)** im Schritt **Webshop** des plentyShop-Assistenten. **Achtung:** Dadurch werden Bestellmerkmale deaktiviert. + +### Geändert + +* Im ShopBuilder wurden maximal 250 Eigenschaften angezeigt, wenn man versucht hat, über den Datenfeldpicker in einem Textfeld auf Eigenschaften zuzugreifen. Dieses Verhalten wurde angepasst und die Zahl der maximal angezeigten Eigenschaften auf 1500 erhöht. +* plentyShop kann jetzt auf eine zukünftige Auftragseinstellung reagieren, mit der Präfixe für Artikelpakete und Komponenten angepasst werden können. Beachte, dass es bei Änderungen an diesen Präfixen zu einer fehlerhaften Darstellugn von älteren Aufträgen kommen kann. +* Die maximale Menge der angezeigten Artikel in der Vorschau des Artikelraster-Widgets im ShopBuilder wurde auf 50 begrenzt. + +### Behoben + +* Artikellisten vom Typ **Zuletzt gesehen** funktionierten teilweise nicht korrekt wenn Server-Side Rendering inaktiv war. Dieses Verhalten wurde behoben. +* Wenn die Einstellung **Nicht akzeptierte Cookies blockieren** inaktiv war, konnte durch das Akzeptieren der Cookies ein reCAPTCHA-Fehler ausgelöst werden. Dies wurde behoben. +* Die Option **Kategorien als Filteroptionen bei Suchergebnissen anzeigen**, die zur Anzeige des Kategorie-Filter-Widgets benötigt wird, wurde zum Assistenten hinzugefügt. + ## v5.0.39 (2021-09-13) Übersicht aller Änderungen ### Geändert diff --git a/meta/documents/changelog_en.md b/meta/documents/changelog_en.md index 3b4deabd80..0f09523961 100644 --- a/meta/documents/changelog_en.md +++ b/meta/documents/changelog_en.md @@ -1,5 +1,23 @@ # Release Notes for Ceres +## v5.0.40 (2021-10-05) Overview of all changes + +### Added + ++ plentyShop now supports order properties. In order to use order properties, you need to activate the setting **Activate order properties** in the step **Online store** of the plentyShop assistant. Please note that this replaces order characteristics. + +### Changed + +* A maximum of 250 properties were displayed in the data field picker in the ShopBuilder. This has been changed to a maximum of 1500 properties. +* plentyShop is now able to react to a future order setting with which prefixes for item bundles and components can be customised. Note that changing these prefixes may lead to a faulty display of older orders. +* The maximum number of displayed items in the preview of the item grid widget in the ShopBuilder has been limited to 50. + +### Fixed + +* Item lists of the type **Last seen** didn't work as intended if Server-Side Rendering was inactive. This behaviour has been fixed. +* If the setting **Block unaccepted cookies** was inactive, accepting cookies could lead to a reCAPTCHA error. This has been fixed. +* The option **Show categories as filter options for search results**, which is necessary for displaying the category filter widget, has been added to the plentyShop assistant. + ## v5.0.39 (2021-09-13) Overview of all changes ### Changed diff --git a/package-lock.json b/package-lock.json index dc9db8ea70..40949e1b46 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "Ceres", - "version": "5.0.39", + "version": "5.0.40", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 93ffd80ff4..3cbd0e8890 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "Ceres", "license": "AGPL-3.0", - "version": "5.0.39", + "version": "5.0.40", "repository": { "type": "git", "url": "https://github.com/plentymarkets/plugin-ceres.git" diff --git a/plugin.json b/plugin.json index 4f123eb4f5..4c360294cb 100755 --- a/plugin.json +++ b/plugin.json @@ -1,5 +1,5 @@ { - "version" : "5.0.39", + "version" : "5.0.40", "name" : "Ceres", "marketplaceName" : {"de": "Ceres","en": "Ceres"}, "description" : "This is the official Ceres plugin developed by plentymarkets. Ceres is the default template plugin for plentymarkets 7 online stores.", @@ -15,7 +15,7 @@ "keywords" : ["plentymarkets", "plugins", "layout", "template", "ceres"], "type" : "template", "require" : { - "IO": "~5.0.39" + "IO": "~5.0.40" }, "namespace" : "Ceres", "serviceProvider" : "Ceres\\Providers\\TemplateServiceProvider",