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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3712965b11da078a3350f172fca28dbdaf551f5f4a48c5961a9a56d61cb0096c
4
- data.tar.gz: ec8fc451aa1322efb6c6a5cb925cb3128a94f41d62dc2d39193fa2a4b12811bb
3
+ metadata.gz: f81b6076e67d611c530534ecc9ddee1e633fb511b278b153e43ea9342542dcd0
4
+ data.tar.gz: 035dbc04a7b88f5ef9e51b37e29085ead7590288b236d4e9995a333a7de4fbe9
5
5
  SHA512:
6
- metadata.gz: ac2aad1231ca9b9c9efa2f26c9a2c15120370d2f468e502975af920c9ff74a21dcf06f1eb636741cb23b9098cfafb45686bbc54a98e7843750a0f06f90848f9a
7
- data.tar.gz: f9ab4897e81519e4968c62d225dd9d5dc61330b11be670f8b46b30de0f48ec7ea799b2f8692bab1d144b792de8577af99a707cdebeb99d247fb98edb57a5fb45
6
+ metadata.gz: decde2f3484a97ff7e5f881c3a00ed28c17ba57afe18ed4688ae0d4e6bbd053fb4029bec1f6415303b8cf3738a7a50ad3b633e032f7d6e8d1718ac8cce28b0b5
7
+ data.tar.gz: 3b33d13ea0fef85bc3f64adf3a7e65eb112c72d514221aa67075a732baffacf04f53763e883fe4420267bbf17579215da41b93e8f09758ccdf7e9df608ec1c6e
data/.gitignore CHANGED
@@ -30,5 +30,4 @@ tmp
30
30
 
31
31
  # Script to connect to jon's lxc appliances
32
32
  lxcsh.rb
33
-
34
33
  VERSION
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-09-05
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-616
1
+ 6.1.0-620
@@ -23,6 +23,7 @@ require 'openssl'
23
23
  require 'set'
24
24
  require 'conjur/cert_utils'
25
25
  require 'base64'
26
+ require 'conjur-api/version'
26
27
 
27
28
  module Conjur
28
29
  class << self
@@ -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.616
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-09 00:00:00.000000000 Z
11
+ date: 2025-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client