diff options
| author | mo khan <mo.khan@gmail.com> | 2020-05-20 11:32:10 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-05-20 11:32:10 -0600 |
| commit | 274429b4d10f428a23a084e24996de2fb3901e85 (patch) | |
| tree | 65facf1634ea08edf566c31d494fe4ce2c325026 | |
| parent | 502efc78c5f1fa7c6d69ade456229d1b580e79be (diff) | |
Update CHANGELOGv0.5.1
| -rw-r--r-- | CHANGELOG.md | 18 | ||||
| -rw-r--r-- | Gemfile.lock | 2 | ||||
| -rw-r--r-- | lib/scim/kit/version.rb | 2 |
3 files changed, 16 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 45458e3..5392abd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -Version 0.5.0 +Version 0.5.1 # Changelog All notable changes to this project will be documented in this file. @@ -7,7 +7,16 @@ 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] -- nil + +## [0.5.1] - 2020-05-20 +### Fixed +- Specify `Accept: application/scim+json` header when discovering a SCIM API. +- Specify `Content-Type: application/scim+json` header when discovering a SCIM API. +- Specify `User-Agent: scim/kit <version>` header when discovering a SCIM API. +- Follow HTTP redirects when discovering a SCIM API. +- Retry 3 times with backoff + jitter when a connection to a SCIM discovery API fails. +- Specify a 1 second open timeout. +- Specify a 5 second read timeout. ## [0.5.0] - 2020-01-21 ### Added @@ -44,8 +53,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - \_assign does not coerce values by default. - errors are merged together instead of overwritten during attribute validation. -[Unreleased]: https://github.com/mokhan/scim-kit/compare/v0.5.0...HEAD -[0.4.0]: https://github.com/mokhan/scim-kit/compare/v0.4.0...v0.5.0 +[Unreleased]: https://github.com/mokhan/scim-kit/compare/v0.5.1...HEAD +[0.5.1]: https://github.com/mokhan/scim-kit/compare/v0.5.0...v0.5.1 +[0.5.0]: https://github.com/mokhan/scim-kit/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/mokhan/scim-kit/compare/v0.3.2...v0.4.0 [0.3.2]: https://github.com/mokhan/scim-kit/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/mokhan/scim-kit/compare/v0.3.0...v0.3.1 diff --git a/Gemfile.lock b/Gemfile.lock index 2daa752..f8670bc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - scim-kit (0.5.0) + scim-kit (0.5.1) activemodel (>= 5.2.0) net-hippie (~> 0.3) parslet (~> 1.8) diff --git a/lib/scim/kit/version.rb b/lib/scim/kit/version.rb index 3d22e1e..31f5773 100644 --- a/lib/scim/kit/version.rb +++ b/lib/scim/kit/version.rb @@ -2,6 +2,6 @@ module Scim module Kit - VERSION = '0.5.0' + VERSION = '0.5.1' end end |
