File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030
3131# Script to connect to jon's lxc appliances
3232lxcsh.rb
33-
3433VERSION
Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99- Nothing should go in this section, please add to the latest unreleased version
1010 (and update the corresponding date), or add a new version.
1111
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 )
1317
1418### Added
1519- Added Config code and tests to repository (CNJR-10552).
Original file line number Diff line number Diff line change 2323require 'set'
2424require 'conjur/cert_utils'
2525require 'base64'
26+ require 'conjur-api/version'
2627
2728module Conjur
2829 class << self
Original file line number Diff line number Diff line change 3939 expect ( configuration . rest_client_options [ :headers ] ) . to include ( :'x-cybr-telemetry' )
4040 end
4141
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+
4247 it "rest_client_options propagate to RestClient::Resource" do
4348 expected = {
4449 ssl_ca_file : "ca_certificate.pem" ,
You can’t perform that action at this time.
0 commit comments