Skip to content

Commit

Permalink
Bump client version to 3.0.4 and changelog (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
kedarkhaire authored Jan 10, 2024
1 parent 88b3cc2 commit b561085
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# CHANGELOG
## [3.0.4](https://github.com/apigee/apigee-client-php/milestone/28?closed=1)
* [#343] Fix Invalid payload issue while editing/updating AppGroup/Teams in Apigee X.
* [#342] Fix for test failing for symfony 6.4.
* [#340] Fix for attribute values lost in PUT call while creating AppGroup.
* [#337] Fix for Team app credentials listings sorted in ascending order.
* [#334] Fix for \Apigee\Edge\HttpClient\Plugin\Authentication\GceServiceAccount::isAvailable() throws exception when called on non-GCE context.

## [3.0.3](https://github.com/apigee/apigee-client-php/milestone/26?closed=1)
* [#323] Add union type to suppress deprecation warning.
* [#325] Fix error when AppGroup list is empty or do not returns appgroups array.
Expand Down
24 changes: 12 additions & 12 deletions src/ClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ interface ClientInterface extends HttpClient
*/
public const APIGEE_ON_GCP_ENDPOINT = 'https://apigee.googleapis.com/v1';

public const VERSION = '3.0.3';
public const VERSION = '3.0.4';

/**
* Allows access to the last request, response and exception.
*
* @return \Apigee\Edge\HttpClient\Utility\JournalInterface
* @return JournalInterface
*/
public function getJournal(): JournalInterface;

Expand Down Expand Up @@ -108,10 +108,10 @@ public function getEndpoint(): string;
* @param \Psr\Http\Message\UriInterface|string $uri
* @param array $headers
*
* @throws \Apigee\Edge\Exception\ApiException
* @throws Exception\ApiException
* @throws \Http\Client\Exception
*
* @return \Psr\Http\Message\ResponseInterface
* @return ResponseInterface
*/
public function get($uri, array $headers = []): ResponseInterface;

Expand All @@ -121,10 +121,10 @@ public function get($uri, array $headers = []): ResponseInterface;
* @param \Psr\Http\Message\UriInterface|string $uri
* @param array $headers
*
* @throws \Apigee\Edge\Exception\ApiException
* @throws Exception\ApiException
* @throws \Http\Client\Exception
*
* @return \Psr\Http\Message\ResponseInterface
* @return ResponseInterface
*/
public function head($uri, array $headers = []): ResponseInterface;

Expand All @@ -135,10 +135,10 @@ public function head($uri, array $headers = []): ResponseInterface;
* @param \Psr\Http\Message\StreamInterface|resource|string|null $body
* @param array $headers
*
* @throws \Apigee\Edge\Exception\ApiException
* @throws Exception\ApiException
* @throws \Http\Client\Exception
*
* @return \Psr\Http\Message\ResponseInterface
* @return ResponseInterface
*/
public function post($uri, $body = null, array $headers = []): ResponseInterface;

Expand All @@ -149,10 +149,10 @@ public function post($uri, $body = null, array $headers = []): ResponseInterface
* @param \Psr\Http\Message\StreamInterface|resource|string|null $body
* @param array $headers
*
* @throws \Apigee\Edge\Exception\ApiException
* @throws Exception\ApiException
* @throws \Http\Client\Exception
*
* @return \Psr\Http\Message\ResponseInterface
* @return ResponseInterface
*/
public function put($uri, $body = null, array $headers = []): ResponseInterface;

Expand All @@ -163,10 +163,10 @@ public function put($uri, $body = null, array $headers = []): ResponseInterface;
* @param \Psr\Http\Message\StreamInterface|resource|string|null $body
* @param array $headers
*
* @throws \Apigee\Edge\Exception\ApiException
* @throws Exception\ApiException
* @throws \Http\Client\Exception
*
* @return \Psr\Http\Message\ResponseInterface
* @return ResponseInterface
*/
public function delete($uri, $body = null, array $headers = []): ResponseInterface;
}

0 comments on commit b561085

Please sign in to comment.