conjur-api 6.0.1.pre.252 → 6.0.1.pre.383
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/Gemfile +1 -1
- data/Jenkinsfile +12 -12
- data/VERSION +1 -1
- data/ci/configure.sh +2 -0
- data/docker-compose.yml +0 -1
- data/test.sh +3 -2
- metadata +4 -4
- /data/{.gitleaks.toml → .oldgitleaks.toml} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0bb8763aae591647353cd0f996e73646d9b4c3e85788bb15dbd0d4f57d407b33
|
4
|
+
data.tar.gz: 1e88b17f00813bd22d9208e8fa19c04261ca1cefbb2007282278f6113fcd365f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13a169d9d71e2b4de14619c5f2e0933d42c4738998323e8629772ced816681f394cc949151060031e78f08f3d4995194d0224c4321094257ec813070387fc484
|
7
|
+
data.tar.gz: 1915d74e7377e5d8a1a760e632ebcdf27570e34ba8891c77e49975b26bc7c9c38fc3c933579d4edd6ca6c63769fa696955222d97b71bdf4d97b2a983d02fc84b
|
data/Gemfile
CHANGED
data/Jenkinsfile
CHANGED
@@ -79,56 +79,56 @@ pipeline {
|
|
79
79
|
}
|
80
80
|
}
|
81
81
|
|
82
|
-
stage('Test Ruby 3.
|
82
|
+
stage('Test Ruby 3.2') {
|
83
83
|
environment {
|
84
|
-
|
84
|
+
INFRAPOOL_RUBY_VERSION = '3.2'
|
85
85
|
INFRAPOOL_REGISTRY_URL = "registry.tld"
|
86
86
|
}
|
87
87
|
steps {
|
88
88
|
script {
|
89
89
|
infrapool.agentSh "./test.sh"
|
90
|
-
infrapool.agentStash name: 'reports3.
|
90
|
+
infrapool.agentStash name: 'reports3.2', includes: '**/reports/*.xml'
|
91
91
|
}
|
92
92
|
}
|
93
93
|
post {
|
94
94
|
always {
|
95
|
-
unstash 'reports3.
|
95
|
+
unstash 'reports3.2'
|
96
96
|
}
|
97
97
|
}
|
98
98
|
}
|
99
99
|
|
100
|
-
stage('Test Ruby 3.
|
100
|
+
stage('Test Ruby 3.3') {
|
101
101
|
environment {
|
102
|
-
|
102
|
+
INFRAPOOL_RUBY_VERSION = '3.3'
|
103
103
|
INFRAPOOL_REGISTRY_URL = "registry.tld"
|
104
104
|
}
|
105
105
|
steps {
|
106
106
|
script {
|
107
107
|
infrapool.agentSh "./test.sh"
|
108
|
-
infrapool.agentStash name: 'reports3.
|
108
|
+
infrapool.agentStash name: 'reports3.3', includes: '**/reports/*.xml'
|
109
109
|
}
|
110
110
|
}
|
111
111
|
post {
|
112
112
|
always {
|
113
|
-
unstash 'reports3.
|
113
|
+
unstash 'reports3.3'
|
114
114
|
}
|
115
115
|
}
|
116
116
|
}
|
117
117
|
|
118
|
-
stage('Test Ruby 3.
|
118
|
+
stage('Test Ruby 3.4') {
|
119
119
|
environment {
|
120
|
-
|
120
|
+
INFRAPOOL_RUBY_VERSION = '3.4'
|
121
121
|
INFRAPOOL_REGISTRY_URL = "registry.tld"
|
122
122
|
}
|
123
123
|
steps {
|
124
124
|
script {
|
125
125
|
infrapool.agentSh "./test.sh"
|
126
|
-
infrapool.agentStash name: 'reports3.
|
126
|
+
infrapool.agentStash name: 'reports3.4', includes: '**/reports/*.xml'
|
127
127
|
}
|
128
128
|
}
|
129
129
|
post {
|
130
130
|
always {
|
131
|
-
unstash 'reports3.
|
131
|
+
unstash 'reports3.4'
|
132
132
|
}
|
133
133
|
}
|
134
134
|
}
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
6.0.1-
|
1
|
+
6.0.1-383
|
data/ci/configure.sh
CHANGED
data/docker-compose.yml
CHANGED
data/test.sh
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
#!/bin/bash -e
|
2
2
|
|
3
|
-
: "${RUBY_VERSION=3.
|
3
|
+
: "${RUBY_VERSION=3.2}"
|
4
4
|
# My local RUBY_VERSION is set to ruby-#.#.# so this allows running locally.
|
5
5
|
RUBY_VERSION="$(cut -d '-' -f 2 <<< "$RUBY_VERSION")"
|
6
6
|
|
7
7
|
export REGISTRY_URL=${INFRAPOOL_REGISTRY_URL:-"docker.io"}
|
8
|
+
export RUBY_VERSION="${INFRAPOOL_RUBY_VERSION:-$RUBY_VERSION}"
|
8
9
|
|
9
10
|
source ./ci/oauth/keycloak/keycloak_functions.sh
|
10
11
|
TOP_LEVEL=$(git rev-parse --show-toplevel)
|
@@ -51,7 +52,7 @@ function runTests() {
|
|
51
52
|
echo 'Waiting for Conjur to come up, and configuring it...'
|
52
53
|
./ci/configure.sh
|
53
54
|
|
54
|
-
local api_key=$(docker compose exec -T conjur rake 'role:retrieve-key[cucumber:user:admin]')
|
55
|
+
local api_key=$(docker compose exec -T conjur bundle exec rake 'role:retrieve-key[cucumber:user:admin]')
|
55
56
|
|
56
57
|
echo 'Running tests'
|
57
58
|
echo '-----'
|
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.0.1.pre.
|
4
|
+
version: 6.0.1.pre.383
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- CyberArk Maintainers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -279,7 +279,7 @@ files:
|
|
279
279
|
- ".dockerignore"
|
280
280
|
- ".github/CODEOWNERS"
|
281
281
|
- ".gitignore"
|
282
|
-
- ".
|
282
|
+
- ".oldgitleaks.toml"
|
283
283
|
- ".overcommit.yml"
|
284
284
|
- ".project"
|
285
285
|
- ".rubocop.yml"
|
@@ -424,7 +424,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
424
424
|
- !ruby/object:Gem::Version
|
425
425
|
version: 1.3.1
|
426
426
|
requirements: []
|
427
|
-
rubygems_version: 3.4.
|
427
|
+
rubygems_version: 3.4.19
|
428
428
|
signing_key:
|
429
429
|
specification_version: 4
|
430
430
|
summary: Conjur API
|
File without changes
|