conjur-api 6.0.1.pre.139 → 6.0.1.pre.250
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/Dockerfile +1 -1
- data/VERSION +1 -1
- data/dev/Dockerfile.dev +1 -1
- data/example/demo.rb +1 -0
- data/kics.config +19 -0
- data/spec/api_spec.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87a442076a86568ddabff5afd5b9cd8b437c9e8c494290e47256f4a18742a620
|
4
|
+
data.tar.gz: 9e93f94e7e55dcf0df83741f79184d037ebdacac5d77ac548635fcac82299f1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a57f7864acdb019e5310b31df1201975b67cd08ed7fc7ae5c2cdf603762d69abacaa537ef74bde6abd6759cf03947ebfc5e880003c5aeeee855c0936bddc4aa
|
7
|
+
data.tar.gz: 58d614f50cf4102b32e8e5f86899e48a36f67bf326b7f0525c1b9442b44eb65479f59d31225e361a47e78f990c7f27d111667b7679c7d30022ec3f13ba403fcb
|
data/Dockerfile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
6.0.1-
|
1
|
+
6.0.1-250
|
data/dev/Dockerfile.dev
CHANGED
data/example/demo.rb
CHANGED
data/kics.config
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# All of the following issues are not a concern for the infrastructure files in this
|
2
|
+
# repository since they're only used in the build process or testing.
|
3
|
+
exclude-queries:
|
4
|
+
- 965a08d7-ef86-4f14-8792-4a3b2098937e # Apt Get Install Pin Version Not Defined
|
5
|
+
- fd54f200-402c-4333-a5a4-36ef6709af2f # Missing User Instruction
|
6
|
+
- ce76b7d0-9e77-464d-b86f-c5c48e03e22d # Container Capabilities Unrestricted
|
7
|
+
- 8c978947-0ff6-485c-b0c2-0bfca6026466 # Shared Volumes Between Containers
|
8
|
+
- 610e266e-6c12-4bca-9925-1ed0cd29742b # Security Opt Not Set
|
9
|
+
- b03a748a-542d-44f4-bb86-9199ab4fd2d5 # Healthcheck Instruction Missing
|
10
|
+
- 698ed579-b239-4f8f-a388-baa4bcb13ef8 # Healthcheck Not Set
|
11
|
+
- 451d79dc-0588-476a-ad03-3c7f0320abb3 # Container Traffic Not Bound To Host Interface
|
12
|
+
- df746b39-6564-4fed-bf85-e9c44382303c # Apt Get Install Lists Were Not Deleted
|
13
|
+
- 4f31dd9f-2cc3-4751-9b53-67e4af83dac0 # Host Namespace is Shared
|
14
|
+
- ce14a68b-1668-41a0-ab7d-facd9f784742 # Networks Not Set
|
15
|
+
|
16
|
+
# The following files are used for development and testing only.
|
17
|
+
exclude-paths:
|
18
|
+
- "conjur-api-ruby/docker-compose.yml"
|
19
|
+
- "conjur-api-ruby/dev/docker-compose.yml"
|
data/spec/api_spec.rb
CHANGED
@@ -146,6 +146,7 @@ describe Conjur::API do
|
|
146
146
|
let(:token_encoded) { Base64.strict_encode64(token.to_json) }
|
147
147
|
let(:base_headers) { { authorization: authz_header } }
|
148
148
|
let(:headers) { base_headers }
|
149
|
+
# deepcode ignore InsecureTransmission: This is test code
|
149
150
|
let(:resource) { RestClient::Resource.new("http://example.com", { headers: headers })}
|
150
151
|
context 'basic functioning' do
|
151
152
|
it_behaves_like 'it can clone itself'
|
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.250
|
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-
|
11
|
+
date: 2024-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -339,6 +339,7 @@ files:
|
|
339
339
|
- features/user.feature
|
340
340
|
- features/variable_fields.feature
|
341
341
|
- features/variable_value.feature
|
342
|
+
- kics.config
|
342
343
|
- lib/conjur-api.rb
|
343
344
|
- lib/conjur-api/version.rb
|
344
345
|
- lib/conjur/acts_as_resource.rb
|