r10k 3.3.1 → 3.3.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a32b4ab214210ba825f405bd3272d15693c253b7
4
- data.tar.gz: 8a6ff6f3dc4ea0d1a1ad7d50bf23a2ead7a2d805
3
+ metadata.gz: c887307303f3824d75c36c71bba941d2727eb5ab
4
+ data.tar.gz: fde4db259354fcec049b96538bf2440f4466e021
5
5
  SHA512:
6
- metadata.gz: c18d09be0beed3f7da6323fa76ceea9093bd69899664e617a4035a8c4de76b92f632ba94f1ab5edd6b17f9443ecbe5dcb71114b737b1213043e468c44d24c210
7
- data.tar.gz: 604ded22aa744ebac83ef3d39991e84ced2c589627f05ae26bf9afe3ae92ecd58ac962d49a0b9efc96dbf43a8da1934155f2feb35dea9bb15917b66de1910af0
6
+ metadata.gz: 3296cd805a5494b27e8bda6ff93644eae2b31feb73246bf5fccd1ba470cfe6a53bd62f6440f65fa8484cbb158c6b7c16b8534bfea5a0b92336c664fd03f44bb0
7
+ data.tar.gz: 4ea29b8f13acddc4fbc89dc7d84ed458967ab95383fd6362f03a01d4f51f890aef944f4cc7a97d708f167dd1fd6e4dd6c0131976017e5fa36a58b0ba28f22e03
@@ -1,2 +1 @@
1
- docker/r10k/* text eol=lf
2
- docker/r10k/docker-entrypoint.d/* text eol=lf
1
+ docker/** text eol=lf
@@ -1,6 +1,13 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 3.3.2
5
+ -----
6
+
7
+ ### Bug Fixes
8
+
9
+ - Switched to thread-safe OpenSSL::Digest creation. [#979](https://github.com/puppetlabs/r10k/issues/979)
10
+
4
11
  3.3.1
5
12
  -----
6
13
 
@@ -116,7 +116,7 @@ module R10K
116
116
  def verify
117
117
  logger.debug1 "Verifying that #{@tarball_cache_path} matches checksum"
118
118
 
119
- sha256_of_tarball = Digest::SHA256.file(@tarball_cache_path).hexdigest
119
+ sha256_of_tarball = Digest(:SHA256).file(@tarball_cache_path).hexdigest
120
120
 
121
121
  if @sha256_file_path.exist?
122
122
  verify_from_file(sha256_of_tarball, @sha256_file_path)
@@ -130,7 +130,7 @@ module R10K
130
130
  end
131
131
 
132
132
  logger.debug1 "No SHA256 checksum available, falling back to MD5"
133
- md5_of_tarball = Digest::MD5.file(@tarball_cache_path).hexdigest
133
+ md5_of_tarball = Digest(:MD5).file(@tarball_cache_path).hexdigest
134
134
  if @md5_file_path.exist?
135
135
  verify_from_file(md5_of_tarball, @md5_file_path)
136
136
  else
@@ -1,3 +1,3 @@
1
1
  module R10K
2
- VERSION = '3.3.1'
2
+ VERSION = '3.3.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r10k
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.1
4
+ version: 3.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrien Thebo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-19 00:00:00.000000000 Z
11
+ date: 2019-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colored