Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.

Commit ae4a2a8

Browse files
author
Jens Schulze
committed
docs(Changelog): update changelog
1 parent 896ea75 commit ae4a2a8

File tree

2 files changed

+71
-1
lines changed

2 files changed

+71
-1
lines changed

CHANGELOG.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,73 @@
1+
<a name="1.0.0-RC10"></a>
2+
# [1.0.0-RC10](https://github.com/sphereio/commercetools-php-sdk/compare/v1.0.0-RC9...v1.0.0-RC10) (2016-03-22)
3+
4+
5+
### Bug Fixes
6+
7+
* **CartDiscount:** fix cart discount target with correct type ([220c1da](https://github.com/sphereio/commercetools-php-sdk/commit/220c1da))
8+
* **Client:** fix guzzle5 adapter to send user agent ([3ae8748](https://github.com/sphereio/commercetools-php-sdk/commit/3ae8748))
9+
* **Collection:** fix add function for collection ([993cddd](https://github.com/sphereio/commercetools-php-sdk/commit/993cddd))
10+
* **Collection:** fix collection iterator for associative collections ([2442677](https://github.com/sphereio/commercetools-php-sdk/commit/2442677))
11+
* **Customer:** fix exception on getDefaultAddresses for empty customer address ([7bd63a4](https://github.com/sphereio/commercetools-php-sdk/commit/7bd63a4))
12+
* **DateDecorator:** fix date overflow for date decorator on serialization ([9009b8f](https://github.com/sphereio/commercetools-php-sdk/commit/9009b8f))
13+
* **Inventory:** fix setSupplyChannel action for inventory update ([f356179](https://github.com/sphereio/commercetools-php-sdk/commit/f356179))
14+
* **LocalizedString:** use graceful flag for language property getter ([621195d](https://github.com/sphereio/commercetools-php-sdk/commit/621195d))
15+
* **Payment:** correct type mapping for transaction state ([0c6f36d](https://github.com/sphereio/commercetools-php-sdk/commit/0c6f36d))
16+
* **Reference:** remove obj from serialized result if resource is embedded ([79f8cba](https://github.com/sphereio/commercetools-php-sdk/commit/79f8cba))
17+
* **Review:** fix locale serialization for review models ([973129d](https://github.com/sphereio/commercetools-php-sdk/commit/973129d))
18+
19+
### Features
20+
21+
* **Category:** add metaDescription, metaKeywords, metaTitle to Category and CategoryDraft model ([5468676](https://github.com/sphereio/commercetools-php-sdk/commit/5468676))
22+
* **Customer:** add update actions to set customer's firstName, middleName, lastName and title ([b122225](https://github.com/sphereio/commercetools-php-sdk/commit/b122225))
23+
* **GraphQL:** add request to query GraphQL endpoint ([182641a](https://github.com/sphereio/commercetools-php-sdk/commit/182641a))
24+
* **LineItem:** add helper function to calculate discounted price ([961a493](https://github.com/sphereio/commercetools-php-sdk/commit/961a493))
25+
* **Payment:** add change amount planned update action ([2815f98](https://github.com/sphereio/commercetools-php-sdk/commit/2815f98))
26+
* **Product:** add product setCategoryOrderHint action ([9f8de04](https://github.com/sphereio/commercetools-php-sdk/commit/9f8de04))
27+
* **Product:** add set prices update action ([a8c4206](https://github.com/sphereio/commercetools-php-sdk/commit/a8c4206))
28+
* **ProductSearch:** support POST for filters and facets ([caeb0a5](https://github.com/sphereio/commercetools-php-sdk/commit/caeb0a5))
29+
* **ProductType:** add change isSearchable update action ([95395f9](https://github.com/sphereio/commercetools-php-sdk/commit/95395f9))
30+
* **ProductType:** add inputTip to attribute definition ([09288a4](https://github.com/sphereio/commercetools-php-sdk/commit/09288a4))
31+
* **ProductType:** add key to product type ([4e1d393](https://github.com/sphereio/commercetools-php-sdk/commit/4e1d393))
32+
* **Review:** add by key requests ([ebc4ece](https://github.com/sphereio/commercetools-php-sdk/commit/ebc4ece))
33+
* **Review:** add update by key request ([710c89e](https://github.com/sphereio/commercetools-php-sdk/commit/710c89e))
34+
* **Review:** update Review requests and models to API changes ([6634658](https://github.com/sphereio/commercetools-php-sdk/commit/6634658))
35+
* **ShippingMethod:** add delete request for shipping methods ([e5510f6](https://github.com/sphereio/commercetools-php-sdk/commit/e5510f6))
36+
* **State:** add set, add and remove roles update action ([7c9a28d](https://github.com/sphereio/commercetools-php-sdk/commit/7c9a28d))
37+
* **Type:** add by key delete requests ([509616f](https://github.com/sphereio/commercetools-php-sdk/commit/509616f))
38+
* **Type:** add type change key action ([1c2ebf4](https://github.com/sphereio/commercetools-php-sdk/commit/1c2ebf4))
39+
* **Type:** add type update by key request ([72e4bd2](https://github.com/sphereio/commercetools-php-sdk/commit/72e4bd2))
40+
* **Types:** add delete type by key request ([2450b7a](https://github.com/sphereio/commercetools-php-sdk/commit/2450b7a))
41+
* **Types:** add request to get type by key ([2b34ae9](https://github.com/sphereio/commercetools-php-sdk/commit/2b34ae9)), closes [#169](https://github.com/sphereio/commercetools-php-sdk/issues/169)
42+
43+
### DEPRECATION NOTE
44+
Facet, Filter, FilterRange and FilterRangeCollection in namespace Commercetools\Core\Model\Product have been marked as deprecated and will be removed in v1.0.0. Please use the classes found in namespace Commercetools\Core\Model\Product\Search instead.
45+
46+
### BREAKING CHANGES
47+
* Changed named constructors for type update actions
48+
49+
Before:
50+
51+
```
52+
TypeAddLocalizedEnumValueAction::ofEnum(...)
53+
TypeAddEnumValueAction::ofEnum(...)
54+
TypeChangeEnumValueOrderAction::ofEnums(...)
55+
TypeChangeLocalizedEnumValueOrderAction::ofEnums(...)
56+
TypeChangeLabelAction::ofLabel(...)
57+
```
58+
59+
After:
60+
61+
```
62+
TypeAddLocalizedEnumValueAction::ofNameAndEnum(...)
63+
TypeAddEnumValueAction::ofNameAndEnum(...)
64+
TypeChangeEnumValueOrderAction::ofNameAndEnums(...)
65+
TypeChangeLocalizedEnumValueOrderAction::ofNameAndEnums(...)
66+
TypeChangeLabelAction::ofNameAndLabel(...)
67+
```
68+
69+
70+
171
<a name="1.0.0-RC9"></a>
272
# [1.0.0-RC9](https://github.com/sphereio/commercetools-php-sdk/compare/v1.0.0-RC8...v1.0.0-RC9) (2016-01-11)
373

tools/changelog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
conventional-changelog -p angular -i CHANGELOG.md -w -k tools/package.json
2+
conventional-changelog -p angular -i CHANGELOG.md -o CHANGELOG.md -k tools/package.json

0 commit comments

Comments
 (0)