Skip to content

Commit

Permalink
2.0.0-alpha5 preparations (#23)
Browse files Browse the repository at this point in the history
* Bumped API client version.

* Added 2.0.0-alpha5 changes.
  • Loading branch information
mxr576 authored Oct 8, 2018
1 parent 1b00f08 commit 564ea5a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG

## 2.0.0-alpha5 - 2018-10-08
* Added missing constructor to the Company entity.
* Added "JSON_PRESERVE_ZERO_FRACTION" to the serializer to ensure float values are always encoded as a float value.
* Simplified and improved serialization. The EntityNormalizer now called as ObjectNormalizer and the EntityDenormalizer called as ObjectDenormalizer.
* Blocked installation php-http/client-common>=1.8.0 until this issue does not get solved: https://github.com/php-http/client-common/issues/109.
* Updated vimeo/psalm dev dependency to the latest 2.x version.

## 2.0.0-alpha4 - 2018-08-14
* Dropped paginated entity listing support from developer- and company apps controllers. Pagination only supported on developer- and company apps endpoints when entity ids listed. These endpoints only return maximum 100 entities (ids and objects), if a developer/company has more apps (it should not be) use the /apps endpoint to load all apps one by one in a loop.
* Decoupled entity serialization logic from controller classes.
Expand Down
2 changes: 1 addition & 1 deletion src/ClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ interface ClientInterface extends HttpClient
{
public const DEFAULT_ENDPOINT = 'https://api.enterprise.apigee.com/v1';

public const VERSION = '2.0.0-alpha4';
public const VERSION = '2.0.0-alpha5';

/**
* Allows access to the last request, response and exception.
Expand Down

0 comments on commit 564ea5a

Please sign in to comment.