Skip to content

Commit

Permalink
Add test to assert CHANGELOG format (#1582)
Browse files Browse the repository at this point in the history
  • Loading branch information
jderusse authored Oct 6, 2023
1 parent b63a348 commit 2f9b135
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@

## 1.7.2

### Changed

- Make sure we can get credentials even if the cache storage fails
- Clear `realpath` cache to make sure we get the latest credentials token

Expand Down Expand Up @@ -236,15 +238,15 @@
- Support for CloudFront in `AwsClientFactory`
- Support for RdsDataService in `AwsClientFactory`

### Fixed

- Allows non-AWS regions when using custom endpoints

### Changed

- Add more context to error logs
- Log level for 404 responses changed to "info".

### Fixed

- Allows non-AWS regions when using custom endpoints

## 1.2.0

### Added
Expand All @@ -256,7 +258,7 @@
- Support for global and regional endpoints
- Add a `Configuration::optionExists` to allow third parties to check if an option is available (needed by libraries supporting several versions of core)

### Deprecation
### Deprecated

- Clients extending `AbstractApi` should override `getEndpointMetata`. The method will be abstract in 2.0
- Custom endpoints should not contain `%region%` and `%service` placeholder. They won't be replaced anymore in 2.0
Expand Down Expand Up @@ -321,6 +323,13 @@

## 0.5.0

### Removed

- The input's `validate()` function was merged with the `request()` function.
- `Configuration::isDefault()`.
- Protected property `AbstractApi::$logger`.
- `AsyncAws\Core\StreamableBody` in favor of `AsyncAws\Core\Stream\ResponseBodyStream`.

### Added

- Add support for multiregion via `@region` input parameter.
Expand All @@ -334,13 +343,6 @@
- Internal `AsyncAws\Core\RequestContext`.
- Internal `AsyncAws\Core\Stream\RewindableStream`.

### Removed

- The input's `validate()` function was merged with the `request()` function.
- `Configuration::isDefault()`.
- Protected property `AbstractApi::$logger`.
- `AsyncAws\Core\StreamableBody` in favor of `AsyncAws\Core\Stream\ResponseBodyStream`.

### Changed

- Exceptions will contain more information from the HTTP response.
Expand All @@ -360,6 +362,11 @@

## 0.4.0

### Removed

- Public `AbstractApi::request()` was removed.
- Protected function `AbstractApi::getEndpoint()` was made private.

### Added

- Test class `AsyncAws\Core\Test\SimpleStreamableBody`
Expand All @@ -372,11 +379,6 @@
- Class `AsyncAws\Core\Stream\StreamFactory` is not internal anymore.
- Removed `requestBody()`, `requestHeaders()`, `requestQuery()` and `requestUri()` input classes. They are replaced with `request()`.

### Removed

- Public `AbstractApi::request()` was removed.
- Protected function `AbstractApi::getEndpoint()` was made private.

### Fixed

- Fix Instance Provider Role fetching
Expand Down

0 comments on commit 2f9b135

Please sign in to comment.