appbundle-updater 1.0.2 → 1.0.3
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 +11 -6
- data/VERSION +1 -1
- data/bin/appbundle-updater +1 -1
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc38c5462173a101679a559137ac31f25acc30d3b967a6fdd3ee3eb69d72fccd
|
|
4
|
+
data.tar.gz: 418c9085c5d1bd752c9ad6ac560b28145f4d67f75ed0967f034a3742fec3f2bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e8d197d1d45bc63180b98311ad186280680c0c4cca83e4c78d5b2a44100e8ea3111c1acb049d5f48615177c8c0bc30adf14ce6a7d95ea505f61bf9867f0b93c
|
|
7
|
+
data.tar.gz: 91600e577f7efff406192626ae214ea5b18d65ea106f43c32dc8269c50ab6c4481259e2e14140037a6e2058f32daa2367ef57bd1132a4256c8fc57dd29429fb7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,30 @@
|
|
|
1
1
|
# appbundle-updater Change Log
|
|
2
2
|
|
|
3
|
-
<!-- latest_release 1.0.
|
|
4
|
-
## [v1.0.
|
|
3
|
+
<!-- latest_release 1.0.3 -->
|
|
4
|
+
## [v1.0.3](https://github.com/chef/appbundle-updater/tree/v1.0.3) (2020-03-12)
|
|
5
5
|
|
|
6
6
|
#### Merged Pull Requests
|
|
7
|
-
-
|
|
7
|
+
- fix a local variable [#51](https://github.com/chef/appbundle-updater/pull/51) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
8
8
|
<!-- latest_release -->
|
|
9
9
|
|
|
10
|
-
<!-- release_rollup since=1.0.
|
|
10
|
+
<!-- release_rollup since=1.0.2 -->
|
|
11
11
|
### Changes not yet released to rubygems.org
|
|
12
12
|
|
|
13
13
|
#### Merged Pull Requests
|
|
14
|
-
-
|
|
14
|
+
- fix a local variable [#51](https://github.com/chef/appbundle-updater/pull/51) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.3 -->
|
|
15
15
|
<!-- release_rollup -->
|
|
16
16
|
|
|
17
17
|
<!-- latest_stable_release -->
|
|
18
|
+
## [v1.0.2](https://github.com/chef/appbundle-updater/tree/v1.0.2) (2020-03-12)
|
|
19
|
+
|
|
20
|
+
#### Merged Pull Requests
|
|
21
|
+
- omit the right groups for ohai [#50](https://github.com/chef/appbundle-updater/pull/50) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
22
|
+
<!-- latest_stable_release -->
|
|
23
|
+
|
|
18
24
|
## [v1.0.1](https://github.com/chef/appbundle-updater/tree/v1.0.1) (2020-03-12)
|
|
19
25
|
|
|
20
26
|
#### Merged Pull Requests
|
|
21
27
|
- more chef-15 updates [#49](https://github.com/chef/appbundle-updater/pull/49) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
22
|
-
<!-- latest_stable_release -->
|
|
23
28
|
|
|
24
29
|
## [v1.0.0](https://github.com/chef/appbundle-updater/tree/v1.0.0) (2020-03-11)
|
|
25
30
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.3
|
data/bin/appbundle-updater
CHANGED
|
@@ -299,7 +299,7 @@ class Updater
|
|
|
299
299
|
gems.each do |gem_name, without|
|
|
300
300
|
Dir.chdir(app_dir) do
|
|
301
301
|
cmd = "#{bin_dir.join("appbundler")} #{app_dir} #{chefdk.join("bin")} #{gem_name}"
|
|
302
|
-
cmd += " --without #{
|
|
302
|
+
cmd += " --without #{without.join(",")}" if without
|
|
303
303
|
cmd += " --extra-bin-files #{@extra_bin_files}" if @extra_bin_files
|
|
304
304
|
cmd += " --binstubs-source #{@binstubs_source}" if @binstubs_source
|
|
305
305
|
ruby(cmd)
|