conjur-api 6.1.0.pre.616 → 6.1.0.pre.620
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +0 -1
- data/CHANGELOG.md +5 -1
- data/VERSION +1 -1
- data/lib/conjur/configuration.rb +1 -0
- data/spec/configuration_spec.rb +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f81b6076e67d611c530534ecc9ddee1e633fb511b278b153e43ea9342542dcd0
|
|
4
|
+
data.tar.gz: 035dbc04a7b88f5ef9e51b37e29085ead7590288b236d4e9995a333a7de4fbe9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: decde2f3484a97ff7e5f881c3a00ed28c17ba57afe18ed4688ae0d4e6bbd053fb4029bec1f6415303b8cf3738a7a50ad3b633e032f7d6e8d1718ac8cce28b0b5
|
|
7
|
+
data.tar.gz: 3b33d13ea0fef85bc3f64adf3a7e65eb112c72d514221aa67075a732baffacf04f53763e883fe4420267bbf17579215da41b93e8f09758ccdf7e9df608ec1c6e
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -9,7 +9,11 @@ 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
|
-
## [6.1.0] - 2025-
|
|
12
|
+
## [6.1.0] - 2025-12-10
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Fixed problem with missing Conjur::API package (CNJR-12082).
|
|
16
|
+
[cyberark/conjur-api-ruby#224](https://github.com/cyberark/conjur-api-ruby/issues/224)
|
|
13
17
|
|
|
14
18
|
### Added
|
|
15
19
|
- Added Config code and tests to repository (CNJR-10552).
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.1.0-
|
|
1
|
+
6.1.0-620
|
data/lib/conjur/configuration.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
|
@@ -39,6 +39,11 @@ describe Conjur::Configuration do
|
|
|
39
39
|
expect(configuration.rest_client_options[:headers]).to include(:'x-cybr-telemetry')
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
+
it "API version check" do
|
|
43
|
+
VERSION = File.read(File.expand_path('../VERSION', __dir__))
|
|
44
|
+
expect(configuration.integration_version).to eq VERSION
|
|
45
|
+
end
|
|
46
|
+
|
|
42
47
|
it "rest_client_options propagate to RestClient::Resource" do
|
|
43
48
|
expected = {
|
|
44
49
|
ssl_ca_file: "ca_certificate.pem",
|
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: 6.1.0.pre.
|
|
4
|
+
version: 6.1.0.pre.620
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- CyberArk Maintainers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|