Skip to content

Commit 2937479

Browse files
committed
Update changelog
1 parent de5187d commit 2937479

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

CHANGES.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
1-
14.0.0 (unreleased)
1+
14.0.0 (2022-03-05)
22
-------------------
3-
- Regenerated Code:
4-
- Import API:
5-
- Removed `retry_count`
6-
- removed delete and deleted from importsummary
7-
- Project:
8-
- Add `delete_days_after_last_modification` field
9-
- Change `SearchIndexingConfigurationValuesSchema` field status to type Enum
10-
- Add `last_modified_at` and `last_modified_by` fields to SearchIndexingConfigurationValuesSchema
11-
- Add `ProjectChangeCartsConfigurationSchema`
12-
- Shipping Method:
13-
- Change `localized_description` field to `LocalizedStringField` type
143
- Update the request builder pattern to match the commercetools SDK's for other languages.
154
This means that the old pattern:
165
```python
6+
from commercetools.client import Client
7+
8+
client = Client()
179
product = client.products.get_by_id("00633d11-c5bb-434e-b132-73f7e130b4e3")
1810
```
11+
1912
is replaced with the new pattern:
2013
```python
14+
from commercetools.platform.client import Client
15+
16+
client = Client()
2117
product = (
2218
client
2319
.with_project_key("<your-project-key>")
@@ -26,6 +22,8 @@
2622
.get())
2723
```
2824
The old pattern is deprecated but will remain backwards compatible for now
25+
- Regenerated code with latest commercetools api specs as of march 2022. This
26+
means that new features like the product selections api's are now available.
2927
- Allow passing custom HTTP adapter to BaseClient (@lime-green)
3028
- Add support for custom address fields and update actions
3129
- Testing: Add support for `Order` imports
@@ -37,7 +35,7 @@
3735
- Testing: Add `setLineItemCustomField` action for cart and order
3836
- Testing: Fix helper function to set enum fields giving an error on fields that have no value
3937

40-
38+
4139
## Notes on code generation
4240
We moved our code generation to the code generation tool from Commercetools,
4341
see https://github.com/commercetools/rmf-codegen

0 commit comments

Comments
 (0)