conjur-api 5.4.1 → 5.4.2.pre.638

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: 95f3eee20794e6ae05f4392c3fd8b9131fcfb0fe30c6f7feb26b14dec96c6152
4
- data.tar.gz: fdf08384b730b3f70e75e2b52498c801335ff124a9a8652f88565678b23dde33
3
+ metadata.gz: 0cc188b840c2f7ebf563ea87eac1a5fda70f5437808fe10d878ded402ad0dd93
4
+ data.tar.gz: 77679ec286e918526412a0933a6a9e241047b52d644aa31ba823413df70a3569
5
5
  SHA512:
6
- metadata.gz: e114ef3b941a2e65587c1f4c4294caecd31852fa3f88cbbe5fa7c803c5811641a98fa9222f85746c30a52cf787a4767ca098ed7b4629b6716bdf8f38fd3b781b
7
- data.tar.gz: 83ce2703e3f69d488b642aee98d6a6ca7f827e04f91b582ccc3414b03bd252843886a13f130c1402d1ed1d7761175f8a6beffcf81eb39cf6f6e26681cfa435ff
6
+ metadata.gz: dd98f024f9afaa7a9cbb48ff9451efb8dda1249486465d5b64deb64dce4da46827ba1d79195369aa2b82e6a6e56a406dfbaa4034f44d9974639f15e4fcd1c229
7
+ data.tar.gz: e591debab91ca3a9340b0a7b26735c21b07fb720bab8885c937eb661470733fc7911bed2e434399eadd59c04ff75621333088e8235e00139c4cc61a72186046b
data/CHANGELOG.md CHANGED
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9
9
  - Nothing should go in this section, please add to the latest unreleased version
10
10
  (and update the corresponding date), or add a new version.
11
11
 
12
+ ## [5.4.2] - 2023-09-11
13
+
12
14
  ## [5.4.1] - 2023-06-14
13
15
 
14
16
  ### Added
@@ -385,6 +387,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
385
387
  ## [2.0.0] - 2013-13-12
386
388
 
387
389
  [Unreleased]: https://github.com/cyberark/conjur-api-ruby/compare/v5.4.1...HEAD
390
+ [5.4.2]: https://github.com/cyberark/conjur-api-ruby/compare/v5.4.1...v5.4.2
388
391
  [5.4.1]: https://github.com/cyberark/conjur-api-ruby/compare/v5.4.0...v5.4.1
389
392
  [5.4.0]: https://github.com/cyberark/conjur-api-ruby/compare/v5.3.7...v5.4.0
390
393
  [5.3.7]: https://github.com/cyberark/conjur-api-ruby/compare/v5.3.6...v5.3.7
data/VERSION CHANGED
@@ -1 +1 @@
1
- 5.4.1
1
+ 5.4.2-638
@@ -12,7 +12,3 @@ openssl s_client \
12
12
  openssl x509 \
13
13
  -outform PEM \
14
14
  >/etc/ssl/certs/keycloak.pem
15
-
16
- hash=$(openssl x509 -hash -in /etc/ssl/certs/keycloak.pem -out /dev/null)
17
-
18
- ln -s /etc/ssl/certs/keycloak.pem "/etc/ssl/certs/${hash}.0"
@@ -85,20 +85,19 @@ end
85
85
 
86
86
  Given(/^I setup a keycloak authenticator$/) do
87
87
  $conjur.load_policy 'root', <<-POLICY
88
- - !policy
88
+ - !policy
89
89
  id: conjur/authn-oidc/keycloak
90
- body:
91
- - !webservice
92
-
93
- - !variable provider-uri
94
- - !variable client-id
95
- - !variable client-secret
90
+ body:
91
+ - !webservice
92
+
93
+ - !variable provider-uri
94
+ - !variable client-id
95
+ - !variable client-secret
96
96
  - !variable name
97
-
98
- - !variable claim-mapping
99
-
100
- - !variable nonce
97
+ - !variable claim-mapping
98
+ - !variable nonce
101
99
  - !variable state
100
+ - !variable ca-cert
102
101
 
103
102
  - !variable redirect-uri
104
103
 
@@ -122,6 +121,7 @@ Given(/^I setup a keycloak authenticator$/) do
122
121
  @nonce = $conjur.resource("cucumber:variable:conjur/authn-oidc/keycloak/nonce")
123
122
  @state = $conjur.resource("cucumber:variable:conjur/authn-oidc/keycloak/state")
124
123
  @redirect_uri = $conjur.resource("cucumber:variable:conjur/authn-oidc/keycloak/redirect-uri")
124
+ @ca_cert = $conjur.resource("cucumber:variable:conjur/authn-oidc/keycloak/ca-cert")
125
125
 
126
126
  @provider_uri.add_value "https://keycloak:8443/auth/realms/master"
127
127
  @client_id.add_value "conjurClient"
@@ -131,4 +131,5 @@ Given(/^I setup a keycloak authenticator$/) do
131
131
  @state.add_value SecureRandom.uuid
132
132
  @name.add_value "keycloak"
133
133
  @redirect_uri.add_value "http://conjur_5/authn-oidc/keycloak/cucumber/authenticate"
134
+ @ca_cert.add_value File.read("/etc/ssl/certs/keycloak.pem")
134
135
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.4.1
4
+ version: 5.4.2.pre.638
5
5
  platform: ruby
6
6
  authors:
7
7
  - CyberArk Maintainers
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-14 00:00:00.000000000 Z
11
+ date: 2023-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -412,7 +412,7 @@ homepage: https://github.com/cyberark/conjur-api-ruby/
412
412
  licenses:
413
413
  - Apache-2.0
414
414
  metadata: {}
415
- post_install_message:
415
+ post_install_message:
416
416
  rdoc_options: []
417
417
  require_paths:
418
418
  - lib
@@ -423,12 +423,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
423
423
  version: '1.9'
424
424
  required_rubygems_version: !ruby/object:Gem::Requirement
425
425
  requirements:
426
- - - ">="
426
+ - - ">"
427
427
  - !ruby/object:Gem::Version
428
- version: '0'
428
+ version: 1.3.1
429
429
  requirements: []
430
- rubygems_version: 3.2.33
431
- signing_key:
430
+ rubygems_version: 3.4.10
431
+ signing_key:
432
432
  specification_version: 4
433
433
  summary: Conjur API
434
434
  test_files: