appbundle-updater 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab39881e965a49031a6de49a681c42ab1a6aca16d78732007ed680c476d94cb0
4
- data.tar.gz: 52ac4491a06b576bb5ba8483364315d7d11804394e02994104d3ef306557ccdb
3
+ metadata.gz: 35e852a7a413c901a80af3afb028df575256847915bf2eda64eefd768a3ba358
4
+ data.tar.gz: 2dbd4e1a942a872ca0fe06f2929b1c52971aa2525d39b146e154acf5f507a717
5
5
  SHA512:
6
- metadata.gz: bbbd27814f71aee479f1d01984c90783b5e2f0e58ecb70d38a239a5d1bfb33ecc78b51faaf3f1f79af8c0b6f6d15a4d8f5f9086cd13f07ef3b4539e5dfa848b6
7
- data.tar.gz: d73d4ff424e7e60892ac80df43f36e709b693d4671e4c6bd772c1a089d8567406f8e9e5a6b286d0bc6fbaabb54e032dd5cf072361b1919db55151c01dc22a96b
6
+ metadata.gz: 34fdca0eabb8c1561e1b159b8854b52e61f90e70e185f38c001e610b49f25850a4fed75bd16f4f4df3538685d860bbc653f0f5835bbd1fbf8c1792b97cc428fe
7
+ data.tar.gz: fc7aad393794a2389cd16fc07f17ba9abd55b0e8bd1d1bdb4bfee443c6c001a50091f1891da3de5067463ab93045299b7de3aeb08479ac346a40ea1e21eda315
@@ -1,25 +1,30 @@
1
1
  # appbundle-updater Change Log
2
2
 
3
- <!-- latest_release 1.0.4 -->
4
- ## [v1.0.4](https://github.com/chef/appbundle-updater/tree/v1.0.4) (2020-04-28)
3
+ <!-- latest_release 1.0.5 -->
4
+ ## [v1.0.5](https://github.com/chef/appbundle-updater/tree/v1.0.5) (2020-05-29)
5
5
 
6
6
  #### Merged Pull Requests
7
- - update gem groups in appbundler [#53](https://github.com/chef/appbundle-updater/pull/53) ([lamont-granquist](https://github.com/lamont-granquist))
7
+ - switch from `open` to `URI.open` [#54](https://github.com/chef/appbundle-updater/pull/54) ([lamont-granquist](https://github.com/lamont-granquist))
8
8
  <!-- latest_release -->
9
9
 
10
- <!-- release_rollup since=1.0.3 -->
10
+ <!-- release_rollup since=1.0.4 -->
11
11
  ### Changes not yet released to rubygems.org
12
12
 
13
13
  #### Merged Pull Requests
14
- - update gem groups in appbundler [#53](https://github.com/chef/appbundle-updater/pull/53) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.4 -->
14
+ - switch from `open` to `URI.open` [#54](https://github.com/chef/appbundle-updater/pull/54) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.5 -->
15
15
  <!-- release_rollup -->
16
16
 
17
17
  <!-- latest_stable_release -->
18
+ ## [v1.0.4](https://github.com/chef/appbundle-updater/tree/v1.0.4) (2020-04-28)
19
+
20
+ #### Merged Pull Requests
21
+ - update gem groups in appbundler [#53](https://github.com/chef/appbundle-updater/pull/53) ([lamont-granquist](https://github.com/lamont-granquist))
22
+ <!-- latest_stable_release -->
23
+
18
24
  ## [v1.0.3](https://github.com/chef/appbundle-updater/tree/v1.0.3) (2020-03-12)
19
25
 
20
26
  #### Merged Pull Requests
21
27
  - fix a local variable [#51](https://github.com/chef/appbundle-updater/pull/51) ([lamont-granquist](https://github.com/lamont-granquist))
22
- <!-- latest_stable_release -->
23
28
 
24
29
  ## [v1.0.2](https://github.com/chef/appbundle-updater/tree/v1.0.2) (2020-03-12)
25
30
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.4
1
+ 1.0.5
@@ -253,7 +253,7 @@ class Updater
253
253
  Dir.chdir(chefdk.join("embedded/apps")) do
254
254
  Tempfile.open("appbundle-updater") do |tempfile|
255
255
  tempfile.binmode
256
- open(git_url) do |uri|
256
+ URI.open(git_url) do |uri|
257
257
  tempfile.write(uri.read)
258
258
  end
259
259
  tempfile.close
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "1.0.4".freeze
2
+ VERSION = "1.0.5".freeze
3
3
  end
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: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-28 00:00:00.000000000 Z
11
+ date: 2020-05-29 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Updates appbundled apps in Chef's omnibus packages
14
14
  email: