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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -2
  3. data/VERSION +1 -1
  4. data/lib/conjur/debify.rb +10 -10
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f59f248642626ad2fd484fe7ce73a98a26def7f2218f73e740e798f225d27f94
4
- data.tar.gz: dc88be5619ec05aea79b51e3e1e6e2855f39cf7f9111dc350567c12a9e33791e
3
+ metadata.gz: 9ea9361be60b213c3065afa68e3aa9250c8f708692af466d52caf656c0efbbd1
4
+ data.tar.gz: 19fa8c2c730a5ac0459fa2707678cf65eac6039fff43eb48db48dab49e74f802
5
5
  SHA512:
6
- metadata.gz: 4d1ce19bd3da4beab66c679b11bb1aa6e4d656c4b19735719a9ec9ca703ad4915b97d56aaf5a5f6791f8cfaa807800cc5a6b430fd56d93a097193f5280049b05
7
- data.tar.gz: c98a222617ee803351fd4180edd3981b089dba989aa4291890985961d2991896f814e5fbbe01f19eae0b0d58cdc752df7c4a9004d5a059c57720c5092953929c
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-1981
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['Gemfile.lock', 'VERSION']).uniq
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['.', '..', '.git']
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
- "CONJUR_AUTHN_LOGIN=admin",
588
- "CONJUR_ENV=appliance",
589
- "CONJUR_AUTHN_API_KEY=SEcret12!!!!",
590
- "CONJUR_ADMIN_PASSWORD=SEcret12!!!!",
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
- "CONJUR_AUTHN_LOGIN=admin",
738
- "CONJUR_ENV=appliance",
739
- "CONJUR_AUTHN_API_KEY=SEcret12!!!!",
740
- "CONJUR_ADMIN_PASSWORD=SEcret12!!!!",
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.1981
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-15 00:00:00.000000000 Z
11
+ date: 2023-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gli