conjur-debify 3.0.3.pre.1981 → 3.0.3.pre.2005
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/CHANGELOG.md +6 -2
- data/VERSION +1 -1
- data/lib/conjur/debify.rb +10 -10
- 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: 9ea9361be60b213c3065afa68e3aa9250c8f708692af466d52caf656c0efbbd1
|
|
4
|
+
data.tar.gz: 19fa8c2c730a5ac0459fa2707678cf65eac6039fff43eb48db48dab49e74f802
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 403934cf494cb55052cfd5802030c5a7afc86425fa8170c3cd7d8b88a72c9320013961f1e38c98cfd3e605f9a852be01ed40b11abaeab36fd44f5d3f8eb55f29
|
|
7
|
+
data.tar.gz: b0ab72a1b8ff2ca571b9accaaffc7200e6180d4480698f7f6b1683efa1cc98f2fa0f388bdbd1b4e09c073eebfe49e69324855a2f06b57ce17b3ab7aef5b33b07
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
- Allow user to specify architecture of packages (arm64 or amd64)
|
|
4
4
|
- Upload artifacts for all packaged architectures to artifactory
|
|
5
5
|
|
|
6
|
+
### Fixed
|
|
7
|
+
- Fixed regressions introduced by incorrect linting fixes. Most significantly,
|
|
8
|
+
preventing the `VERSION` file from being included in release packages.
|
|
9
|
+
|
|
6
10
|
## [3.0.2]
|
|
7
11
|
### Changed
|
|
8
12
|
- Allow Base Image to be configured on execution.
|
|
@@ -40,11 +44,11 @@
|
|
|
40
44
|
|
|
41
45
|
- Refine bundler related steps in `debify package` flow: only `package.sh` file configures
|
|
42
46
|
and invokes bundler. `Dockerfile.fpm` only copies files and adjusts folder structure.
|
|
43
|
-
- Remove bundler 1.* support
|
|
47
|
+
- Remove bundler 1.* support
|
|
44
48
|
|
|
45
49
|
# 2.0.0
|
|
46
50
|
### Changed
|
|
47
|
-
- Debify now receives the flag `--output` as input to indicate the file type that it should package (e.g `rpm`). If this
|
|
51
|
+
- Debify now receives the flag `--output` as input to indicate the file type that it should package (e.g `rpm`). If this
|
|
48
52
|
flag is not given, the default value is `deb`.
|
|
49
53
|
[conjurinc/debify#56](https://github.com/conjurinc/debify/issues/56)
|
|
50
54
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.3-
|
|
1
|
+
3.0.3-2005
|
data/lib/conjur/debify.rb
CHANGED
|
@@ -93,7 +93,7 @@ def detect_version
|
|
|
93
93
|
end
|
|
94
94
|
|
|
95
95
|
def git_files
|
|
96
|
-
files = (`git ls-files -z`.split("\x0") + %w[
|
|
96
|
+
files = (`git ls-files -z`.split("\x0") + %w[Gemfile.lock VERSION]).uniq
|
|
97
97
|
# Since submodule directories are listed, but are not files, we remove them.
|
|
98
98
|
# Currently, `conjur-project-config` is the only submodule in Conjur, and it
|
|
99
99
|
# can safely be removed because it's a developer-only tool. If we add another
|
|
@@ -154,7 +154,7 @@ command "clean" do |c|
|
|
|
154
154
|
unless perform_deletion
|
|
155
155
|
$stderr.puts "No --force, and this doesn't look like Jenkins. I won't actually delete anything"
|
|
156
156
|
end
|
|
157
|
-
@ignore_list = Array(cmd_options[:ignore]) + %w[
|
|
157
|
+
@ignore_list = Array(cmd_options[:ignore]) + %w[. .. .git]
|
|
158
158
|
|
|
159
159
|
def ignore_file?(f)
|
|
160
160
|
@ignore_list.find { |ignore| f.index(ignore) == 0 }
|
|
@@ -584,10 +584,10 @@ RUN touch /etc/service/conjur/down
|
|
|
584
584
|
'Image' => appliance_image.id,
|
|
585
585
|
'name' => project_name,
|
|
586
586
|
'Env' => %w[
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
587
|
+
CONJUR_AUTHN_LOGIN=admin
|
|
588
|
+
CONJUR_ENV=appliance
|
|
589
|
+
CONJUR_AUTHN_API_KEY=SEcret12!!!!
|
|
590
|
+
CONJUR_ADMIN_PASSWORD=SEcret12!!!!
|
|
591
591
|
] + global_options[:env],
|
|
592
592
|
'HostConfig' => {
|
|
593
593
|
'Binds' => [
|
|
@@ -734,10 +734,10 @@ command "sandbox" do |c|
|
|
|
734
734
|
'Image' => appliance_image.id,
|
|
735
735
|
'WorkingDir' => "/src/#{project_name}",
|
|
736
736
|
'Env' => %w[
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
737
|
+
CONJUR_AUTHN_LOGIN=admin
|
|
738
|
+
CONJUR_ENV=appliance
|
|
739
|
+
CONJUR_AUTHN_API_KEY=SEcret12!!!!
|
|
740
|
+
CONJUR_ADMIN_PASSWORD=SEcret12!!!!
|
|
741
741
|
] + global_options[:env]
|
|
742
742
|
}
|
|
743
743
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: conjur-debify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.3.pre.
|
|
4
|
+
version: 3.0.3.pre.2005
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- CyberArk Software, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gli
|