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

Commit cfbf4da

Browse files
author
Jens Schulze
committed
docs(Changelog): update changelog
1 parent 76199f4 commit cfbf4da

File tree

4 files changed

+82
-3
lines changed

4 files changed

+82
-3
lines changed

CHANGELOG.md

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,82 @@
1+
<a name="1.0.0-RC11"></a>
2+
# [1.0.0-RC11](https://github.com/sphereio/commercetools-php-sdk/compare/v1.0.0-RC10...v1.0.0-RC11) (2016-04-06)
3+
4+
5+
### Bug Fixes
6+
7+
* **Product:** change type of price collection ([8cc1262](https://github.com/sphereio/commercetools-php-sdk/commit/8cc1262))
8+
9+
### Code Refactoring
10+
11+
* **Customer:** adjust customer email verification request to API changes ([2e3dd32](https://github.com/sphereio/commercetools-php-sdk/commit/2e3dd32))
12+
* **Customer:** adjust customer password change request to API changes ([318e93f](https://github.com/sphereio/commercetools-php-sdk/commit/318e93f))
13+
14+
### Features
15+
16+
* **Client:** add support for oauth scopes ([5545dfd](https://github.com/sphereio/commercetools-php-sdk/commit/5545dfd))
17+
* **Client:** log response body and headers of api exceptions ([f371979](https://github.com/sphereio/commercetools-php-sdk/commit/f371979)), closes [#186](https://github.com/sphereio/commercetools-php-sdk/issues/186)
18+
* **Product:** add update action for stageable SKU ([870a1f8](https://github.com/sphereio/commercetools-php-sdk/commit/870a1f8))
19+
* **Response:** add getter for correlation id ([6029a02](https://github.com/sphereio/commercetools-php-sdk/commit/6029a02)), closes [#69](https://github.com/sphereio/commercetools-php-sdk/issues/69)
20+
21+
22+
### BREAKING CHANGES
23+
24+
* Product: renamed the ProductSetSKUAction to ProductSetSKUNotStageableAction
25+
26+
Before:
27+
28+
```
29+
ProductSetSKUAction::ofVariantId()
30+
```
31+
32+
After:
33+
34+
```
35+
ProductSetSKUNotStageableAction::ofVariantId() // old behavior action
36+
ProductSetSkuAction::ofVariantId() // stageable action
37+
```
38+
* Product: fix type of price collections
39+
40+
Before:
41+
42+
```
43+
ProductAddVariantAction::of()->setPrices(PriceCollection::of()->add(Price::of()))
44+
```
45+
46+
After:
47+
48+
```
49+
ProductAddVariantAction::of()->setPrices(PriceDraftCollection::of()->add(PriceDraft::of()))
50+
```
51+
* Customer: adjust customer email verification request to API changes
52+
53+
Before:
54+
55+
```
56+
CustomerEmailConfirmRequest::ofIdVersionAndToken($id, $version, $token)
57+
```
58+
59+
After:
60+
61+
```
62+
CustomerEmailConfirmRequest::ofToken($token)
63+
```
64+
* Customer: adjust customer password change request to API changes
65+
66+
Before:
67+
68+
```
69+
CustomerPasswordResetRequest::ofIdVersionTokenAndPassword($id, $version, $token, $newPassword)
70+
```
71+
72+
After:
73+
74+
```
75+
CustomerPasswordResetRequest::ofTokenAndPassword($token, $newPassword)
76+
```
77+
78+
79+
180
<a name="1.0.0-RC10"></a>
281
# [1.0.0-RC10](https://github.com/sphereio/commercetools-php-sdk/compare/v1.0.0-RC9...v1.0.0-RC10) (2016-03-22)
382

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# <img src="build/theme/resources/CT_cube_200px.png" width="40" align="center"></img> commercetools PHP SDK
22

3-
> STATUS: Release Candidate 10. We ask you to really use this API thoroughly now, especially the API design and object structure. Thank you very much!
3+
> STATUS: Release Candidate 11. We ask you to really use this API thoroughly now, especially the API design and object structure. Thank you very much!
44
>
55
> See the [Milestone Plan](https://github.com/sphereio/commercetools-php-sdk/milestones?direction=desc&sort=completeness&state=open) for details of what's planned in detail. We love feedback and [Issue reports](https://github.com/sphereio/commercetools-php-sdk/issues?q=is%3Aopen+is%3Aissue+sort%3Acreated-asc)!
66
> Up-to-Date planning status can be found on this [Waffle Board](https://waffle.io/sphereio/commercetools-php-sdk)

src/AbstractHttpClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
abstract class AbstractHttpClient
1616
{
17-
const VERSION = '1.0.0-RC10';
17+
const VERSION = '1.0.0-RC11';
1818

1919
/**
2020
* @var AdapterInterface

tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "commercetools-php-sdk-changelog",
3-
"version": "1.0.0-RC10",
3+
"version": "1.0.0-RC11",
44
"description": "commercetools PHP SDK changelog generator package description",
55
"homepage": "https://github.com/sphereio/commercetools-php-sdk",
66
"bugs": "https://github.com/sphereio/commercetools-php-sdk/issues",

0 commit comments

Comments
 (0)