|
| 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 | + |
1 | 80 | <a name="1.0.0-RC10"></a> |
2 | 81 | # [1.0.0-RC10](https://github.com/sphereio/commercetools-php-sdk/compare/v1.0.0-RC9...v1.0.0-RC10) (2016-03-22) |
3 | 82 |
|
|
0 commit comments