hiera-eyaml-gpg 0.7.3 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Rakefile +12 -0
- data/lib/hiera/backend/eyaml/encryptors/gpg/puppet_gpg.rb +1 -1
- data/lib/hiera/backend/eyaml/encryptors/gpg/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ab26f360dfbe936c790036f827b23c375e02c31
|
4
|
+
data.tar.gz: b4a08045b1e912318b17a864caa37f18813f7a59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f90e38e4e9197a36f2439d7867e66efc4d36e9b677ee09db0d6c0c35e7f1b00ea851daefdc211ff3b63f1fcf688f9165c5269a8446d4716c2577590d88af1ef
|
7
|
+
data.tar.gz: 33cbabe1cec06a8f1efb0c178d25ddabaa33329ad1c9c7fb42dc8ce634312e4c8bb80098b0b88c65093e3227ce8a8bdb0616307b32f206c1b2aea5821301f375
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,18 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [v0.7.4](https://github.com/voxpupuli/hiera-eyaml-gpg/tree/v0.7.4) (2019-10-15)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/hiera-eyaml-gpg/compare/v0.7.3...v0.7.4)
|
8
|
+
|
9
|
+
**Closed issues:**
|
10
|
+
|
11
|
+
- Output is Garbled if contention occurs on GPG random\_seed. [\#68](https://github.com/voxpupuli/hiera-eyaml-gpg/issues/68)
|
12
|
+
|
13
|
+
**Merged pull requests:**
|
14
|
+
|
15
|
+
- Don't merge stderr into stdout for GPG Output. [\#69](https://github.com/voxpupuli/hiera-eyaml-gpg/pull/69) ([KeithWard](https://github.com/KeithWard))
|
16
|
+
|
5
17
|
## [v0.7.3](https://github.com/voxpupuli/hiera-eyaml-gpg/tree/v0.7.3) (2019-04-25)
|
6
18
|
|
7
19
|
[Full Changelog](https://github.com/voxpupuli/hiera-eyaml-gpg/compare/v0.7.2...v0.7.3)
|
data/Rakefile
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
require 'bundler/gem_tasks'
|
2
2
|
require 'rubocop/rake_task'
|
3
3
|
require 'github_changelog_generator/task'
|
4
|
+
require 'rbconfig'
|
4
5
|
|
5
6
|
desc 'Run RuboCop on the lib directory'
|
6
7
|
RuboCop::RakeTask.new(:rubocop) do |task|
|
@@ -18,3 +19,14 @@ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
|
18
19
|
config.project = 'hiera-eyaml-gpg'
|
19
20
|
config.since_tag = 'vp_migration'
|
20
21
|
end
|
22
|
+
|
23
|
+
# Workaround for https://github.com/github-changelog-generator/github-changelog-generator/issues/715
|
24
|
+
if RbConfig::CONFIG['host_os'] =~ /linux/
|
25
|
+
task :changelog do
|
26
|
+
puts 'Fixing line endings...'
|
27
|
+
changelog_file = File.join(__dir__, 'CHANGELOG.md')
|
28
|
+
changelog_txt = File.read(changelog_file)
|
29
|
+
new_contents = changelog_txt.gsub(%r{\r\n}, "\n")
|
30
|
+
File.open(changelog_file, "w") {|file| file.puts new_contents }
|
31
|
+
end
|
32
|
+
end
|
@@ -15,7 +15,7 @@ class Hiera
|
|
15
15
|
|
16
16
|
real_command = "#{command} #{tmpfile.path}"
|
17
17
|
|
18
|
-
output = Puppet::Util::Execution.execute(real_command)
|
18
|
+
output = Puppet::Util::Execution.execute(real_command, combine: false, failonfail: true)
|
19
19
|
tmpfile.unlink
|
20
20
|
|
21
21
|
if output.exitstatus != 0
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hiera-eyaml-gpg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Simon Hildrew
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hiera-eyaml
|