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 +4 -4
- data/CHANGELOG.md +3 -0
- data/VERSION +1 -1
- data/ci/oauth/keycloak/fetch_certificate +0 -4
- data/features/step_definitions/policy_steps.rb +12 -11
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0cc188b840c2f7ebf563ea87eac1a5fda70f5437808fe10d878ded402ad0dd93
|
4
|
+
data.tar.gz: 77679ec286e918526412a0933a6a9e241047b52d644aa31ba823413df70a3569
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
+
5.4.2-638
|
@@ -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
|
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.
|
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-
|
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:
|
428
|
+
version: 1.3.1
|
429
429
|
requirements: []
|
430
|
-
rubygems_version: 3.
|
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:
|