-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PLATFORM-535]: [jwks_client] Update README (#10)
* Update documentation * Add changelog * Fix typo
- Loading branch information
1 parent
e7d487e
commit a05dda9
Showing
3 changed files
with
64 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Fixed | ||
|
||
- README code example updated with the latest changes. | ||
|
||
## [0.3.0] - 2022-04-01 | ||
|
||
### Added | ||
|
||
- Added new builder pattern struct `JwksClientBuilder`. | ||
- Added `JwksClient::builder` function to create a new `JwksClientBuilder`. | ||
- Added custom in-memory cache with entries TTL. | ||
|
||
### Removed | ||
|
||
- Removed `JwksClient::new` function. | ||
|
||
## [0.2.0] - 2022-03-14 | ||
|
||
### Added | ||
|
||
- Added `timeout` (default set to 10 seconds) and `connect_timeout` (default set to 20 seconds) functions. These values | ||
are used in `reqwest::Client` to avoid never-ending http requests. | ||
- Added new library usage [example](./examples/get_jwks.rs). | ||
- Added library usage documentation. | ||
|
||
### Changed | ||
|
||
- Changed cache TTL duration set from 1 minute to 1 day. | ||
|
||
## [0.1.0] - 2021-10-28 | ||
|
||
### Added | ||
|
||
- First release 🎉 | ||
|
||
[Unreleased]: https://github.com/primait/jwks_client/compare/0.3.0...HEAD | ||
[0.3.0]: https://github.com/primait/jwks_client/compare/0.2.0...0.3.0 | ||
[0.2.0]: https://github.com/primait/jwks_client/compare/0.1.0...0.2.0 | ||
[0.1.0]: https://github.com/primait/jwks_client/releases/tag/0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters