conjur-api 5.4.1.pre.539 → 5.4.1.pre.552
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 +2 -0
- data/CHANGELOG.md +4 -1
- data/Jenkinsfile +20 -5
- data/VERSION +1 -1
- data/dev/Dockerfile.dev +2 -2
- 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: 9fc6868c34a893c85b1b916243ec75ffdc6e88cb3a57d065fefe69f2fd264fe6
|
|
4
|
+
data.tar.gz: 1f403df1b8b413408319c3a66be246a7fcb1112fa24cb28e9dfd6d466c8ddc00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9961815591304d7be5387e993e14b86910bca3df8dbdabef553bbac4ca0c727c4076f4837597dad3472426b4bb8b97c58e9c83e497d08b35c6d0e1316e3cfd1d
|
|
7
|
+
data.tar.gz: 71a0ec5617fd9d1a655d2db8e5b3af9cb0487e5b7f9b5b0b58e54145b3bf4bab05052a67fe587714f3ee78b3c81f8e3189f7886704e4e10f0480b1cc917712a2
|
data/.gitignore
CHANGED
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.
|
|
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
|
|
61
|
+
stage('Test Ruby 3.0') {
|
|
62
62
|
environment {
|
|
63
|
-
RUBY_VERSION = '
|
|
63
|
+
RUBY_VERSION = '3.0'
|
|
64
64
|
}
|
|
65
65
|
steps {
|
|
66
|
-
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.
|
|
93
|
+
stage('Test Ruby 3.2') {
|
|
79
94
|
environment {
|
|
80
|
-
RUBY_VERSION = '3.
|
|
95
|
+
RUBY_VERSION = '3.2'
|
|
81
96
|
}
|
|
82
97
|
steps {
|
|
83
98
|
sh("./test.sh")
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.4.1-
|
|
1
|
+
5.4.1-552
|
data/dev/Dockerfile.dev
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
FROM ruby:
|
|
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.
|
|
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
|
+
date: 2023-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|