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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22577611fe210bd567dc63cd774db6bf8b188b764a0ed1d2d7d954010266573c
4
- data.tar.gz: 635aad92a4751e1f68f5e03c67bf571b0498572d040fddf6a2d530eb83bcfb99
3
+ metadata.gz: 0bb8763aae591647353cd0f996e73646d9b4c3e85788bb15dbd0d4f57d407b33
4
+ data.tar.gz: 1e88b17f00813bd22d9208e8fa19c04261ca1cefbb2007282278f6113fcd365f
5
5
  SHA512:
6
- metadata.gz: 98ffb236fb6e0862be09adb1b2d3e6a0ca85b754295888936c69f35674884605135a13c5355833b2cb8147f3e53a2875ec87db7faa937b94d5ef17d5153d1d7e
7
- data.tar.gz: f6bf3cd58f3df2d0bc26a8f8e889b6fd80610d3225946f386954b7abeab4e183956e3c0fa28c1032b9b25605b0b9838931a0cd0a7cf814afa3391600f24bfbf1
6
+ metadata.gz: 13a169d9d71e2b4de14619c5f2e0933d42c4738998323e8629772ced816681f394cc949151060031e78f08f3d4995194d0224c4321094257ec813070387fc484
7
+ data.tar.gz: 1915d74e7377e5d8a1a760e632ebcdf27570e34ba8891c77e49975b26bc7c9c38fc3c933579d4edd6ca6c63769fa696955222d97b71bdf4d97b2a983d02fc84b
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- #ruby=ruby-3.0
3
+ #ruby=ruby-3.2
4
4
  #ruby-gemset=conjur-api
5
5
 
6
6
  # Specify your gem's dependencies in conjur-api.gemspec
data/Jenkinsfile CHANGED
@@ -79,56 +79,56 @@ pipeline {
79
79
  }
80
80
  }
81
81
 
82
- stage('Test Ruby 3.0') {
82
+ stage('Test Ruby 3.2') {
83
83
  environment {
84
- RUBY_VERSION = '3.0'
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.0', includes: '**/reports/*.xml'
90
+ infrapool.agentStash name: 'reports3.2', includes: '**/reports/*.xml'
91
91
  }
92
92
  }
93
93
  post {
94
94
  always {
95
- unstash 'reports3.0'
95
+ unstash 'reports3.2'
96
96
  }
97
97
  }
98
98
  }
99
99
 
100
- stage('Test Ruby 3.1') {
100
+ stage('Test Ruby 3.3') {
101
101
  environment {
102
- RUBY_VERSION = '3.1'
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.1', includes: '**/reports/*.xml'
108
+ infrapool.agentStash name: 'reports3.3', includes: '**/reports/*.xml'
109
109
  }
110
110
  }
111
111
  post {
112
112
  always {
113
- unstash 'reports3.1'
113
+ unstash 'reports3.3'
114
114
  }
115
115
  }
116
116
  }
117
117
 
118
- stage('Test Ruby 3.2') {
118
+ stage('Test Ruby 3.4') {
119
119
  environment {
120
- RUBY_VERSION = '3.2'
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.2', includes: '**/reports/*.xml'
126
+ infrapool.agentStash name: 'reports3.4', includes: '**/reports/*.xml'
127
127
  }
128
128
  }
129
129
  post {
130
130
  always {
131
- unstash 'reports3.2'
131
+ unstash 'reports3.4'
132
132
  }
133
133
  }
134
134
  }
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.0.1-252
1
+ 6.0.1-383
data/ci/configure.sh CHANGED
@@ -15,5 +15,7 @@ done
15
15
  curl -o /dev/null -fs -X OPTIONS http://localhost > /dev/null
16
16
  CONFIGURE
17
17
 
18
+ wait_for_keycloak_server
19
+
18
20
  fetch_keycloak_certificate
19
21
  create_keycloak_users
data/docker-compose.yml CHANGED
@@ -1,4 +1,3 @@
1
- version: '2.1'
2
1
  services:
3
2
  pg:
4
3
  image: postgres:15
data/test.sh CHANGED
@@ -1,10 +1,11 @@
1
1
  #!/bin/bash -e
2
2
 
3
- : "${RUBY_VERSION=3.0}"
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.252
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: 2024-09-13 00:00:00.000000000 Z
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
- - ".gitleaks.toml"
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.10
427
+ rubygems_version: 3.4.19
428
428
  signing_key:
429
429
  specification_version: 4
430
430
  summary: Conjur API
File without changes