keycloak-admin 1.0.15 → 1.0.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 045fe9f1da5f6db7c4c4fdf81292c622af6bf30150f0067f0c16266d73cd2aad
4
- data.tar.gz: 9124de4d0394b9a657365c622ee6a1142b060e22bf0730ce26cdeea3a9dba1d3
3
+ metadata.gz: f30a381496a82b5ca155376eadeaa9a2d100d7843b015adbb2a6eaa575547613
4
+ data.tar.gz: 28b7325e840da41621f9d3a40338db19aef80afd626b5048057f551b3ab7034d
5
5
  SHA512:
6
- metadata.gz: aab469430cbf4c63028dfe6d0ea0ddb1a809b88c285b43a2449a3b14f8667147b210590fcb28783fe228fa5b12a6326389354e35a102b1438f155461b7e048da
7
- data.tar.gz: 4072fcb6f9cfa4c7cd169bd78534eb774e1644a58690341ea5fa9abcf1003245d93a732bab1d32ced9b193f8765acb3f9fbb321943a40d41a0362a76a19057f5
6
+ metadata.gz: 74d5c91da160b07d00476f46fccd69e51a060bcf3d8a9b47bdb224dda3a6d2b5170684c426c8fecd0d3af7d7dc5fb12aeb4c9bd08632670b65d32d9be5bf5e12
7
+ data.tar.gz: 869e1a226ff33650e8fd5232fcd141b26e6478805df03dbf5fc11e43189be48d4aaafa88e2c5d29934b781365d5539947b734ddf301fa0c31fa5820732ef854a
data/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.16] - 2022-10-15
9
+
10
+ * Remove `rest-client` warning when adding a group (thanks to @tlloydthwaites)
11
+
8
12
  ## [1.0.15] - 2022-05-23
9
13
 
10
14
  * Delete all "realm" roles mapped to a user
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- keycloak-admin (1.0.15)
4
+ keycloak-admin (1.0.16)
5
5
  http-cookie (~> 1.0, >= 1.0.3)
6
6
  rest-client (~> 2.1)
7
7
 
@@ -13,7 +13,7 @@ GEM
13
13
  domain_name (0.5.20190701)
14
14
  unf (>= 0.0.5, < 1.0.0)
15
15
  http-accept (1.7.0)
16
- http-cookie (1.0.4)
16
+ http-cookie (1.0.5)
17
17
  domain_name (~> 0.5)
18
18
  mime-types (3.4.1)
19
19
  mime-types-data (~> 3.2015)
@@ -39,7 +39,7 @@ GEM
39
39
  rspec-support (3.7.1)
40
40
  unf (0.1.4)
41
41
  unf_ext
42
- unf_ext (0.0.8.1)
42
+ unf_ext (0.0.8.2)
43
43
 
44
44
  PLATFORMS
45
45
  ruby
data/README.md CHANGED
@@ -12,7 +12,7 @@ This gem *does not* require Rails.
12
12
  For example, using `bundle`, add this line to your Gemfile.
13
13
 
14
14
  ```ruby
15
- gem "keycloak-admin", "1.0.15"
15
+ gem "keycloak-admin", "1.0.16"
16
16
  ```
17
17
 
18
18
  ## Login
@@ -36,7 +36,7 @@ module KeycloakAdmin
36
36
  @configuration.rest_client_options.merge(
37
37
  method: :put,
38
38
  url: "#{users_url(user_id)}/groups/#{group_id}",
39
- payload: {},
39
+ payload: create_payload({}),
40
40
  headers: headers
41
41
  )
42
42
  )
@@ -1,3 +1,3 @@
1
1
  module KeycloakAdmin
2
- VERSION = "1.0.15"
2
+ VERSION = "1.0.16"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: keycloak-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.15
4
+ version: 1.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lorent Lempereur
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-23 00:00:00.000000000 Z
11
+ date: 2022-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http-cookie