Skip to content

Commit

Permalink
Merge pull request #15 from mxr576/2.x
Browse files Browse the repository at this point in the history
2.0.0-alpha4 preparations.
  • Loading branch information
mxr576 authored Aug 14, 2018
2 parents 7606137 + f12c874 commit 8d045ed
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-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.
* Introduced new traits that allows us to keep contract about methods use in traits and classes.
* Now EntityTransformer handles updating entity properties from API responses.
* Introducing a new BaseObject as a parent class for entities and (data) structures.

## 2.0.0-alpha3 - 2018-07-26

* As CPS pagination got supported in the Management API for listing API products and Companies we also added it to API client.
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-alpha3';
public const VERSION = '2.0.0-alpha4';

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

0 comments on commit 8d045ed

Please sign in to comment.