conjur-api 5.4.1.pre.539 → 5.4.1.pre.552

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: 82ab76771a88091c1d819b35474d59e90ab4f315d53d9cf5cdad37b29d2b5c02
4
- data.tar.gz: cb73219fe20674c5a7de24f2c99f9e7b75baa44e1596807f404810ac7456ba3d
3
+ metadata.gz: 9fc6868c34a893c85b1b916243ec75ffdc6e88cb3a57d065fefe69f2fd264fe6
4
+ data.tar.gz: 1f403df1b8b413408319c3a66be246a7fcb1112fa24cb28e9dfd6d466c8ddc00
5
5
  SHA512:
6
- metadata.gz: 8789f3ded3ba98012c6af691ef46c9c35701f6e7320206f474e9aa853981d91e68d473efc5b3453d09c020f8fdc61b42e51be16b2460b4d6867c6051ca2f1779
7
- data.tar.gz: 5e05f63d1b2a66a0c2fbb55c8bed1458ac9ce86234e57a781e2f6e11d63dfa38eabb8dde5f65460b4e68aa52e365b34d0ddf1a93af01ed93dc892a6ad68d9409
6
+ metadata.gz: 9961815591304d7be5387e993e14b86910bca3df8dbdabef553bbac4ca0c727c4076f4837597dad3472426b4bb8b97c58e9c83e497d08b35c6d0e1316e3cfd1d
7
+ data.tar.gz: 71a0ec5617fd9d1a655d2db8e5b3af9cb0487e5b7f9b5b0b58e54145b3bf4bab05052a67fe587714f3ee78b3c81f8e3189f7886704e4e10f0480b1cc917712a2
data/.gitignore CHANGED
@@ -30,3 +30,5 @@ tmp
30
30
 
31
31
  # Script to connect to jon's lxc appliances
32
32
  lxcsh.rb
33
+
34
+ VERSION
data/CHANGELOG.md CHANGED
@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
13
13
  ### Added
14
14
  - Added authenticate wrapper to access unparsed response object (including headers).
15
15
  [cyberark/conjur-api-ruby#213](https://github.com/cyberark/conjur-api-ruby/pull/213)
16
+ - Support Ruby v3.1 and v3.2.
17
+ [cyberark/conjur-api-ruby#220](https://github.com/cyberark/conjur-api-ruby/pull/220)
16
18
 
17
19
  ## [5.4.0] - 2022-08-16
18
20
 
@@ -381,7 +383,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
381
383
 
382
384
  ## [2.0.0] - 2013-13-12
383
385
 
384
- [Unreleased]: https://github.com/cyberark/conjur-api-ruby/compare/v5.4.0...HEAD
386
+ [Unreleased]: https://github.com/cyberark/conjur-api-ruby/compare/v5.4.1...HEAD
387
+ [5.4.1]: https://github.com/cyberark/conjur-api-ruby/compare/v5.4.0...v5.4.1
385
388
  [5.4.0]: https://github.com/cyberark/conjur-api-ruby/compare/v5.3.7...v5.4.0
386
389
  [5.3.7]: https://github.com/cyberark/conjur-api-ruby/compare/v5.3.6...v5.3.7
387
390
  [5.3.6]: https://github.com/cyberark/conjur-api-ruby/compare/v5.3.5...v5.3.6
data/Jenkinsfile CHANGED
@@ -58,14 +58,29 @@ pipeline {
58
58
  }
59
59
  }
60
60
 
61
- stage('Test Ruby 2.7') {
61
+ stage('Test Ruby 3.0') {
62
62
  environment {
63
- RUBY_VERSION = '2.7'
63
+ RUBY_VERSION = '3.0'
64
64
  }
65
65
  steps {
66
- sh './test.sh'
66
+ sh("./test.sh")
67
+ }
68
+ post {
69
+ always {
70
+ junit 'spec/reports/*.xml'
71
+ junit 'features/reports/*.xml'
72
+ junit 'features_v4/reports/*.xml'
73
+ }
67
74
  }
75
+ }
68
76
 
77
+ stage('Test Ruby 3.1') {
78
+ environment {
79
+ RUBY_VERSION = '3.1'
80
+ }
81
+ steps {
82
+ sh("./test.sh")
83
+ }
69
84
  post {
70
85
  always {
71
86
  junit 'spec/reports/*.xml'
@@ -75,9 +90,9 @@ pipeline {
75
90
  }
76
91
  }
77
92
 
78
- stage('Test Ruby 3.0') {
93
+ stage('Test Ruby 3.2') {
79
94
  environment {
80
- RUBY_VERSION = '3.0'
95
+ RUBY_VERSION = '3.2'
81
96
  }
82
97
  steps {
83
98
  sh("./test.sh")
data/VERSION CHANGED
@@ -1 +1 @@
1
- 5.4.1-539
1
+ 5.4.1-552
data/dev/Dockerfile.dev CHANGED
@@ -1,10 +1,10 @@
1
- FROM ruby:2.7
1
+ FROM ruby:3
2
2
 
3
3
  RUN apt-get update && apt-get install -y vim curl
4
4
 
5
5
  WORKDIR /src/conjur-api
6
6
 
7
- COPY Gemfile conjur-api.gemspec ./
7
+ COPY Gemfile conjur-api.gemspec VERSION ./
8
8
  COPY lib/conjur-api/version.rb ./lib/conjur-api/
9
9
 
10
10
  RUN bundle
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.pre.539
4
+ version: 5.4.1.pre.552
5
5
  platform: ruby
6
6
  authors:
7
7
  - CyberArk Maintainers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-11 00:00:00.000000000 Z
11
+ date: 2023-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client