appbundle-updater 0.6.17 → 0.6.18
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/Gemfile +0 -6
- data/VERSION +1 -1
- data/bin/appbundle-updater +2 -0
- data/lib/appbundle_updater/version.rb +1 -1
- 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: 7242b26435741d855c0027ae555306d22afe1bc435dd0dedba545eb7a8e2ea2e
|
|
4
|
+
data.tar.gz: a7f8fd4aaae104a61f3db9d65da9ed4f43e7a8ef74a885ef28e285b979eea2be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 05f098020ccc36956ec963e62e55204d7fe93405956839db8e74afb5a932523c20c9699f25edd30f80cbde3a4b815bc9968775cb6c11b6039a37ccce49dd5730
|
|
7
|
+
data.tar.gz: 15603d8d4f33006e0dd1f9cd8fd60e1425ffcc336e4af167259e450414448f247a8ad6585d930c56077beb1ed70978e8f8257b391f3c8371356c60b2c4257320
|
data/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,30 @@
|
|
|
1
1
|
# appbundle-updater Change Log
|
|
2
2
|
|
|
3
|
-
<!-- latest_release 0.6.
|
|
4
|
-
## [v0.6.
|
|
3
|
+
<!-- latest_release 0.6.18 -->
|
|
4
|
+
## [v0.6.18](https://github.com/chef/appbundle-updater/tree/v0.6.18) (2020-03-11)
|
|
5
5
|
|
|
6
6
|
#### Merged Pull Requests
|
|
7
|
-
-
|
|
7
|
+
- need output logging so that we can debug [#47](https://github.com/chef/appbundle-updater/pull/47) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
8
8
|
<!-- latest_release -->
|
|
9
9
|
|
|
10
|
-
<!-- release_rollup since=0.6.
|
|
10
|
+
<!-- release_rollup since=0.6.17 -->
|
|
11
11
|
### Changes not yet released to rubygems.org
|
|
12
12
|
|
|
13
13
|
#### Merged Pull Requests
|
|
14
|
-
-
|
|
14
|
+
- need output logging so that we can debug [#47](https://github.com/chef/appbundle-updater/pull/47) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 0.6.18 -->
|
|
15
15
|
<!-- release_rollup -->
|
|
16
16
|
|
|
17
17
|
<!-- latest_stable_release -->
|
|
18
|
+
## [v0.6.17](https://github.com/chef/appbundle-updater/tree/v0.6.17) (2019-09-30)
|
|
19
|
+
|
|
20
|
+
#### Merged Pull Requests
|
|
21
|
+
- Don't exclude the development group for ohai [#45](https://github.com/chef/appbundle-updater/pull/45) ([tas50](https://github.com/tas50))
|
|
22
|
+
<!-- latest_stable_release -->
|
|
23
|
+
|
|
18
24
|
## [v0.6.16](https://github.com/chef/appbundle-updater/tree/v0.6.16) (2019-09-30)
|
|
19
25
|
|
|
20
26
|
#### Merged Pull Requests
|
|
21
27
|
- Update the groups we ignore in the bundle installs [#44](https://github.com/chef/appbundle-updater/pull/44) ([tas50](https://github.com/tas50))
|
|
22
|
-
<!-- latest_stable_release -->
|
|
23
28
|
|
|
24
29
|
## [v0.6.15](https://github.com/chef/appbundle-updater/tree/v0.6.15) (2019-07-18)
|
|
25
30
|
|
data/Gemfile
CHANGED
|
@@ -18,9 +18,3 @@ group :debug do
|
|
|
18
18
|
gem "pry-byebug"
|
|
19
19
|
gem "pry-stack_explorer"
|
|
20
20
|
end
|
|
21
|
-
|
|
22
|
-
instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]
|
|
23
|
-
|
|
24
|
-
# If you want to load debugging tools into the bundle exec sandbox,
|
|
25
|
-
# add these additional dependencies into Gemfile.local
|
|
26
|
-
eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local")
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.18
|
data/bin/appbundle-updater
CHANGED
|
@@ -56,6 +56,8 @@ def run(cmd)
|
|
|
56
56
|
output = `#{cmd} 2>&1` # FIXME: bash/zsh-ism, will not work on csh
|
|
57
57
|
unless $?.exited? && $?.exitstatus == 0
|
|
58
58
|
raise("Command [#{cmd}] failed!\n\n---BEGIN OUTPUT--\n#{output}\n---END OUTPUT--\n")
|
|
59
|
+
else
|
|
60
|
+
puts "---BEGIN OUTPUT--\n#{output}\n---END OUTPUT--\n"
|
|
59
61
|
end
|
|
60
62
|
|
|
61
63
|
ENV_KEYS.each { |key| ENV[key] = ENV.delete("_YOLO_#{key}") }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appbundle-updater
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lamont-granquist
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-03-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Updates appbundled apps in Chef's omnibus packages
|
|
14
14
|
email:
|