Skip to content

Commit

Permalink
Merge pull request #95 from arlina-espinoza/2.0.4-preparations
Browse files Browse the repository at this point in the history
Update changelog for 2.0.4, readme, and client version.
  • Loading branch information
arlina-espinoza authored Dec 5, 2019
2 parents 5a650bf + 885e70b commit e5e352e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
# CHANGELOG

## [2.0.4](https://github.com/apigee/apigee-client-php/milestone/2?closed=1) - December 5 2019
* Updated php-cs-fixer version and code analysis tools rules/validations.
#### Apigee Hybrid Management API
* Alpha support for Apigee hybrid Management API.
* Support for OAuth 2.0 for server to server applications using email and a private key.
#### Management API
* [#65](https://github.com/apigee/apigee-client-php/pull/74) Deprecated `createdBy` and `lastModifiedBy` properties in
all entities.
* [#82](https://github.com/apigee/apigee-client-php/pull/82),
[#299-apigee-edge-drupal](https://github.com/apigee/apigee-client-php/pull/93) Introduced an organization features
utility class (`OrganizationFeatures`) with methods `isCpsEnabled()`, `isPaginationAvailable()`,
`isCompaniesFeatureAvailable()`, `isHybridEnabled()`, `isMonetizationEnabled()`, and `isFeatureEnabled()`.
#### Monetization API
* [#61](https://github.com/apigee/apigee-client-php/pull/61) Fix PHP notices produced when the developer is not set.

## [2.0.3](https://github.com/apigee/apigee-client-php/milestone/1?closed=1) - June 24 2019
#### Management API
* [#54](https://github.com/apigee/apigee-client-php/pull/54) Add forked AddPathPlugin and removed required patch
* [#54](https://github.com/apigee/apigee-client-php/pull/54) Add forked AddPathPlugin and removed required patch
#### Monetization API
* [#58](https://github.com/apigee/apigee-client-php/pull/58) Added the end unit property to `RatePlanRate`

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ The PHP API client supports pagination on listing API endpoints (ex.: [List Deve
This notice can be suppressed in multiple ways. You can suppress it by changing PHP's `error_reporting` configuration to
suppress _all_ E_NOTICE level errors with changing its value to `E_ALL | ~E_NOTICE` for example. You can also suppress only the notice generated by the PHP API client by setting the `APIGEE_EDGE_PHP_CLIENT_SUPPRESS_CPS_SIMULATION_NOTICE` environment variable value to a falsy value, for example: `APIGEE_EDGE_PHP_CLIENT_SUPPRESS_CPS_SIMULATION_NOTICE=1`.

## Edge for Hybrid Cloud: Alpha Release

Support for [Apigee hybrid API](https://docs.apigee.com/hybrid/reference-overview) has been added to this library but is
considered to be an alpha. If you run into any problems, add an issue to our [GitHub issue queue](https://github.com/apigee/apigee-client-php/issues).

## Installing the client library

You must install an HTTP client or adapter before you install the Apigee API Client Library for PHP. For a complete list
Expand Down
7 changes: 1 addition & 6 deletions src/ClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,7 @@ interface ClientInterface extends HttpClient
*/
public const HYBRID_ENDPOINT = 'https://apigee.googleapis.com/v1';

/**
* Library version.
*
* @var string
*/
public const VERSION = '2.0.3';
public const VERSION = '2.0.4';

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

0 comments on commit e5e352e

Please sign in to comment.