Skip to content

Commit

Permalink
release: v1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusDev20 committed Nov 19, 2024
1 parent fc55a8d commit 6990ef7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.10.0](https://github.com/Coaktion/client-core/compare/v1.9.1...v1.10.0) (2024-11-19)


### Features

* enhance retryCondition to handle undefined errors and improve status checks ([247e36b](https://github.com/Coaktion/client-core/commit/247e36b50c6e9c2a6f279a57da6b12019e581985))
* enhance retryDelay method to improve error handling and support rate limit delays ([197fac8](https://github.com/Coaktion/client-core/commit/197fac82ee51b55e065028c437b8db4398be3ded))


### Bug Fixes

* improve error handling in retryDelay method to support optional chaining ([42db061](https://github.com/Coaktion/client-core/commit/42db061a690346dc239a62dc60dbacc7ef33b17d))

### [1.9.1](https://github.com/Coaktion/client-core/compare/v1.9.0...v1.9.1) (2024-11-18)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coaktion/client-core",
"version": "1.9.1",
"version": "1.10.0",
"description": "Library helping you to create a client RestFul API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion tests/axios.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ describe('AxiosClient', () => {
url: '/users'
});
} catch (error) {
expect(error.status).toEqual(500);
expect(error.response.status).toEqual(500);
}
});
});

0 comments on commit 6990ef7

Please sign in to comment.