beaker-hiera 0.3.0 → 0.5.0

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: 3f452d3f2513e4aba4d980f029222044b4f899d92c68ae02f71f8c25bbfd531a
4
- data.tar.gz: b03bc1cf07161dbe89c7915c7b3f489a7f37b471aee548f8d26438a39e9bb46f
3
+ metadata.gz: 6fa301c34061f47569899cb912a65ef2445800aa858aeb73bd409a2c458b9032
4
+ data.tar.gz: 3b9fe6eefd16dcee3a9ddfc40c157047b832e870728ef8c14996e37566102cd3
5
5
  SHA512:
6
- metadata.gz: 17e9609cbf693def9d87ecfb7c51df255a143cbdbf3e03dd791b5cd44520d6861495d06c4292403c9240391aba7ddaeb3dafc696b6b5c570e65e359fad18e000
7
- data.tar.gz: 8bfb95f9b8331d10c3185760425668898ab445c46889ddf8e4b857f2149e6d5973ae3e686859bb2d7544e81496b257525fbfa1e0ee79a54426110dc30f062874
6
+ metadata.gz: 2cbb692a5db729f93a2564a46cdaa756cb703698ef864eec4e0e596101092b02b70def1b09b228894e30c6ed329c22220132249a80b59b21d1e6e57bc1f9c35e
7
+ data.tar.gz: dd46816d6f16cb699db0413d17d514494ef0c9cbfea3757f8af6dd69fb8ee86a17b9e29297a5d8ddd219911997e9e4c5d75c5bdf20fe5fce50ec1c85f69b5667
@@ -0,0 +1,17 @@
1
+ version: 2
2
+ updates:
3
+ # raise PRs for gem updates
4
+ - package-ecosystem: bundler
5
+ directory: "/"
6
+ schedule:
7
+ interval: daily
8
+ time: "13:00"
9
+ open-pull-requests-limit: 10
10
+
11
+ # Maintain dependencies for GitHub Actions
12
+ - package-ecosystem: github-actions
13
+ directory: "/"
14
+ schedule:
15
+ interval: daily
16
+ time: "13:00"
17
+ open-pull-requests-limit: 10
@@ -9,7 +9,7 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  if: github.repository == 'voxpupuli/beaker-hiera'
11
11
  steps:
12
- - uses: actions/checkout@v2
12
+ - uses: actions/checkout@v3
13
13
  - name: Install Ruby 2.7
14
14
  uses: ruby/setup-ruby@v1
15
15
  with:
@@ -1,27 +1,57 @@
1
1
  name: Test
2
2
 
3
3
  on:
4
- - pull_request
5
- - push
4
+ pull_request: {}
5
+ push:
6
+ branches:
7
+ - master
8
+
9
+ env:
10
+ BUNDLE_WITHOUT: release
6
11
 
7
12
  jobs:
8
- test:
13
+ rubocop:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ - name: Install Ruby ${{ matrix.ruby }}
18
+ uses: ruby/setup-ruby@v1
19
+ with:
20
+ ruby-version: "2.7"
21
+ bundler-cache: true
22
+ - name: Run Rubocop
23
+ run: bundle exec rake rubocop
24
+ spec:
9
25
  runs-on: ubuntu-latest
10
26
  strategy:
11
27
  fail-fast: false
12
28
  matrix:
13
- ruby:
14
- - "2.4"
15
- - "2.5"
16
- - "2.6"
17
- - "2.7"
18
- name: Ruby ${{ matrix.ruby }}
29
+ include:
30
+ - ruby: "2.7"
31
+ coverage: "yes"
32
+ - ruby: "3.0"
33
+ - ruby: "3.1"
34
+ - ruby: "3.2"
35
+ env:
36
+ COVERAGE: ${{ matrix.coverage }}
37
+ name: RSpec - Ruby ${{ matrix.ruby }}
19
38
  steps:
20
- - uses: actions/checkout@v2
39
+ - uses: actions/checkout@v3
21
40
  - name: Install Ruby ${{ matrix.ruby }}
22
41
  uses: ruby/setup-ruby@v1
23
42
  with:
24
43
  ruby-version: ${{ matrix.ruby }}
25
44
  bundler-cache: true
26
- - name: Run tests
45
+ - name: spec tests
27
46
  run: bundle exec rake test
47
+ - name: Build gem
48
+ run: gem build *.gemspec
49
+
50
+ tests:
51
+ needs:
52
+ - spec
53
+ - rubocop
54
+ runs-on: ubuntu-latest
55
+ name: Test suite
56
+ steps:
57
+ - run: echo Test suite completed
data/.rubocop.yml ADDED
@@ -0,0 +1,5 @@
1
+ ---
2
+ inherit_from: .rubocop_todo.yml
3
+
4
+ inherit_gem:
5
+ beaker: rubocop.yml
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,73 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2023-03-27 16:34:12 UTC using RuboCop version 1.48.1.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 1
10
+ # Configuration parameters: ExpectMatchingDefinition, CheckDefinitionPathHierarchy, CheckDefinitionPathHierarchyRoots, Regex, IgnoreExecutableScripts, AllowedAcronyms.
11
+ # CheckDefinitionPathHierarchyRoots: lib, spec, test, src
12
+ # AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
13
+ Naming/FileName:
14
+ Exclude:
15
+ - 'lib/beaker-hiera.rb'
16
+
17
+ # Offense count: 1
18
+ # Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
19
+ # Include: **/*_spec*rb*, **/spec/**/*
20
+ RSpec/FilePath:
21
+ Exclude:
22
+ - 'spec/beaker-hiera/helpers_spec.rb'
23
+
24
+ # Offense count: 6
25
+ # Configuration parameters: .
26
+ # SupportedStyles: have_received, receive
27
+ RSpec/MessageSpies:
28
+ EnforcedStyle: receive
29
+
30
+ # Offense count: 2
31
+ RSpec/MultipleExpectations:
32
+ Max: 2
33
+
34
+ # Offense count: 11
35
+ # Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
36
+ # SupportedStyles: always, named_only
37
+ RSpec/NamedSubject:
38
+ Exclude:
39
+ - 'spec/beaker-hiera/helpers_spec.rb'
40
+
41
+ # Offense count: 2
42
+ RSpec/StubbedMock:
43
+ Exclude:
44
+ - 'spec/beaker-hiera/helpers_spec.rb'
45
+
46
+ # Offense count: 6
47
+ RSpec/SubjectStub:
48
+ Exclude:
49
+ - 'spec/beaker-hiera/helpers_spec.rb'
50
+
51
+ # Offense count: 1
52
+ # This cop supports unsafe autocorrection (--autocorrect-all).
53
+ # Configuration parameters: .
54
+ # SupportedStyles: constant, string
55
+ RSpec/VerifiedDoubleReference:
56
+ EnforcedStyle: string
57
+
58
+ # Offense count: 10
59
+ # This cop supports unsafe autocorrection (--autocorrect-all).
60
+ # Configuration parameters: EnforcedStyle.
61
+ # SupportedStyles: always, always_true, never
62
+ Style/FrozenStringLiteralComment:
63
+ Exclude:
64
+ - '.simplecov'
65
+ - 'Gemfile'
66
+ - 'Rakefile'
67
+ - 'beaker-hiera.gemspec'
68
+ - 'bin/beaker-hiera'
69
+ - 'lib/beaker-hiera.rb'
70
+ - 'lib/beaker-hiera/helpers.rb'
71
+ - 'lib/beaker-hiera/version.rb'
72
+ - 'spec/beaker-hiera/helpers_spec.rb'
73
+ - 'spec/spec_helper.rb'
data/CHANGELOG.md ADDED
@@ -0,0 +1,74 @@
1
+ # Changelog
2
+
3
+ ## [0.5.0](https://github.com/voxpupuli/beaker-hiera/tree/0.5.0) (2023-03-28)
4
+
5
+ [Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.4.0...0.5.0)
6
+
7
+ **Breaking changes:**
8
+
9
+ - update to beaker 5; Drop Ruby 2.4/2.5/2.6 support [\#19](https://github.com/voxpupuli/beaker-hiera/pull/19) ([rwaffen](https://github.com/rwaffen))
10
+
11
+ **Closed issues:**
12
+
13
+ - update to beaker 5 [\#18](https://github.com/voxpupuli/beaker-hiera/issues/18)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Bump actions/checkout from 2 to 3 [\#23](https://github.com/voxpupuli/beaker-hiera/pull/23) ([dependabot[bot]](https://github.com/apps/dependabot))
18
+ - Implement rubocop & fix violations [\#22](https://github.com/voxpupuli/beaker-hiera/pull/22) ([bastelfreak](https://github.com/bastelfreak))
19
+ - dependabot: check for github actions and gems [\#21](https://github.com/voxpupuli/beaker-hiera/pull/21) ([bastelfreak](https://github.com/bastelfreak))
20
+
21
+ ## [0.4.0](https://github.com/voxpupuli/beaker-hiera/tree/0.4.0) (2021-05-19)
22
+
23
+ [Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.3.0...0.4.0)
24
+
25
+ **Implemented enhancements:**
26
+
27
+ - Support Ruby 3 [\#16](https://github.com/voxpupuli/beaker-hiera/pull/16) ([ekohl](https://github.com/ekohl))
28
+
29
+ **Fixed bugs:**
30
+
31
+ - Handle an array of hosts in copy\_hiera\_data\_to [\#15](https://github.com/voxpupuli/beaker-hiera/pull/15) ([ekohl](https://github.com/ekohl))
32
+
33
+ ## [0.3.0](https://github.com/voxpupuli/beaker-hiera/tree/0.3.0) (2021-05-18)
34
+
35
+ [Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.2.0...0.3.0)
36
+
37
+ **Merged pull requests:**
38
+
39
+ - Release 0.3.0 [\#14](https://github.com/voxpupuli/beaker-hiera/pull/14) ([ekohl](https://github.com/ekohl))
40
+ - Update Github actions [\#13](https://github.com/voxpupuli/beaker-hiera/pull/13) ([ekohl](https://github.com/ekohl))
41
+ - Update the authors, email and homepage to VP [\#12](https://github.com/voxpupuli/beaker-hiera/pull/12) ([ekohl](https://github.com/ekohl))
42
+ - Require Ruby ~\> 2.4 [\#11](https://github.com/voxpupuli/beaker-hiera/pull/11) ([ekohl](https://github.com/ekohl))
43
+ - Use ruby/setup-ruby action [\#10](https://github.com/voxpupuli/beaker-hiera/pull/10) ([ekohl](https://github.com/ekohl))
44
+ - Correct documentation strings [\#9](https://github.com/voxpupuli/beaker-hiera/pull/9) ([ekohl](https://github.com/ekohl))
45
+ - Clean up specs [\#8](https://github.com/voxpupuli/beaker-hiera/pull/8) ([ekohl](https://github.com/ekohl))
46
+ - Indicate the project is not EOL and add example [\#7](https://github.com/voxpupuli/beaker-hiera/pull/7) ([ekohl](https://github.com/ekohl))
47
+ - Always prefer codedir for hieradata [\#6](https://github.com/voxpupuli/beaker-hiera/pull/6) ([ekohl](https://github.com/ekohl))
48
+ - Do not shadow a variable & inline hash definition [\#5](https://github.com/voxpupuli/beaker-hiera/pull/5) ([ekohl](https://github.com/ekohl))
49
+ - Add Github actions for CI + clean up gem deps [\#4](https://github.com/voxpupuli/beaker-hiera/pull/4) ([ekohl](https://github.com/ekohl))
50
+
51
+ ## [0.2.0](https://github.com/voxpupuli/beaker-hiera/tree/0.2.0) (2020-11-10)
52
+
53
+ [Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.1.1...0.2.0)
54
+
55
+ **Merged pull requests:**
56
+
57
+ - Release 0.2.0 before moving the repo to Vox Pupuli [\#3](https://github.com/voxpupuli/beaker-hiera/pull/3) ([lucywyman](https://github.com/lucywyman))
58
+ - \(BKR-1500\) Mothball beaker-hiera [\#2](https://github.com/voxpupuli/beaker-hiera/pull/2) ([Dakta](https://github.com/Dakta))
59
+
60
+ ## [0.1.1](https://github.com/voxpupuli/beaker-hiera/tree/0.1.1) (2015-10-14)
61
+
62
+ [Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.1.0...0.1.1)
63
+
64
+ **Merged pull requests:**
65
+
66
+ - \(BKR-562\) removed leftover spec lines [\#1](https://github.com/voxpupuli/beaker-hiera/pull/1) ([kevpl](https://github.com/kevpl))
67
+
68
+ ## [0.1.0](https://github.com/voxpupuli/beaker-hiera/tree/0.1.0) (2015-09-08)
69
+
70
+ [Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/84dbbc6be29c41e74d862665fe9aa9dd7bbacb18...0.1.0)
71
+
72
+
73
+
74
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
data/Gemfile CHANGED
@@ -1,3 +1,7 @@
1
1
  source ENV['GEM_SOURCE'] || 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
+
5
+ group :release do
6
+ gem 'github_changelog_generator', require: false
7
+ end
data/Rakefile CHANGED
@@ -14,3 +14,31 @@ RSpec::Core::RakeTask.new(:coverage) do |t|
14
14
  end
15
15
 
16
16
  task default: :test
17
+
18
+ begin
19
+ require 'rubygems'
20
+ require 'github_changelog_generator/task'
21
+ rescue LoadError
22
+ # github_changelog_generator is an optional release
23
+ else
24
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
25
+ config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog]
26
+ config.user = 'voxpupuli'
27
+ config.project = 'beaker-hiera'
28
+ gem_version = Gem::Specification.load("#{config.project}.gemspec").version
29
+ config.future_release = gem_version
30
+ end
31
+ end
32
+
33
+ begin
34
+ require 'rubocop/rake_task'
35
+ rescue LoadError
36
+ # RuboCop is an optional group
37
+ else
38
+ RuboCop::RakeTask.new(:rubocop) do |task|
39
+ # These make the rubocop experience maybe slightly less terrible
40
+ task.options = ['--display-cop-names', '--display-style-guide', '--extra-details']
41
+ # Use Rubocop's Github Actions formatter if possible
42
+ task.formatters << 'github' if ENV['GITHUB_ACTIONS']
43
+ end
44
+ end
data/beaker-hiera.gemspec CHANGED
@@ -12,16 +12,19 @@ Gem::Specification.new do |s|
12
12
  s.license = 'Apache2'
13
13
 
14
14
  s.files = `git ls-files`.split("\n")
15
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
15
  s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
17
16
  s.require_paths = ['lib']
18
17
 
19
- s.required_ruby_version = '~> 2.4'
18
+ s.required_ruby_version = '>= 2.7', '< 4'
20
19
 
21
20
  # Testing dependencies
22
21
  s.add_development_dependency 'pry', '~> 0.10'
23
22
  s.add_development_dependency 'rake', '~> 13.0'
24
23
  s.add_development_dependency 'rspec', '~> 3.0'
24
+ s.add_development_dependency 'rubocop', '~> 1.48.1'
25
+ s.add_development_dependency 'rubocop-performance', '~> 1.10'
26
+ s.add_development_dependency 'rubocop-rake', '~> 0.2'
27
+ s.add_development_dependency 'rubocop-rspec', '>= 1.44'
25
28
  s.add_development_dependency 'simplecov'
26
29
 
27
30
  # Documentation dependencies
@@ -30,5 +33,5 @@ Gem::Specification.new do |s|
30
33
  s.add_development_dependency 'yard'
31
34
 
32
35
  # Run time dependencies
33
- s.add_runtime_dependency 'beaker', '~> 4.0'
36
+ s.add_runtime_dependency 'beaker', '>= 4', '< 6'
34
37
  end
@@ -16,10 +16,10 @@ module Beaker
16
16
  hiera_config = {
17
17
  backends: 'yaml',
18
18
  yaml: {
19
- datadir: hiera_datadir(hst)
19
+ datadir: hiera_datadir(hst),
20
20
  },
21
21
  hierarchy: hierarchy,
22
- logger: 'console'
22
+ logger: 'console',
23
23
  }
24
24
  create_remote_file hst, hst.puppet['hiera_config'], hiera_config.to_yaml
25
25
  end
@@ -43,7 +43,9 @@ module Beaker
43
43
  # @param [String] source
44
44
  # Directory containing the hiera data files.
45
45
  def copy_hiera_data_to(host, source)
46
- scp_to host, File.expand_path(source), hiera_datadir(host)
46
+ block_on host do |hst|
47
+ scp_to hst, File.expand_path(source), hiera_datadir(hst)
48
+ end
47
49
  end
48
50
 
49
51
  # Copy hiera data files to the default host
@@ -4,7 +4,7 @@ module Beaker
4
4
  module Hiera
5
5
  module Version
6
6
  # Current version of beaker-hiera
7
- STRING = '0.3.0'.freeze
7
+ STRING = '0.5.0'.freeze
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-hiera
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-05-18 00:00:00.000000000 Z
12
+ date: 2023-03-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pry
@@ -53,6 +53,62 @@ dependencies:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
55
  version: '3.0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: rubocop
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: 1.48.1
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: 1.48.1
70
+ - !ruby/object:Gem::Dependency
71
+ name: rubocop-performance
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '1.10'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '1.10'
84
+ - !ruby/object:Gem::Dependency
85
+ name: rubocop-rake
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '0.2'
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '0.2'
98
+ - !ruby/object:Gem::Dependency
99
+ name: rubocop-rspec
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '1.44'
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '1.44'
56
112
  - !ruby/object:Gem::Dependency
57
113
  name: simplecov
58
114
  requirement: !ruby/object:Gem::Requirement
@@ -113,16 +169,22 @@ dependencies:
113
169
  name: beaker
114
170
  requirement: !ruby/object:Gem::Requirement
115
171
  requirements:
116
- - - "~>"
172
+ - - ">="
117
173
  - !ruby/object:Gem::Version
118
- version: '4.0'
174
+ version: '4'
175
+ - - "<"
176
+ - !ruby/object:Gem::Version
177
+ version: '6'
119
178
  type: :runtime
120
179
  prerelease: false
121
180
  version_requirements: !ruby/object:Gem::Requirement
122
181
  requirements:
123
- - - "~>"
182
+ - - ">="
124
183
  - !ruby/object:Gem::Version
125
- version: '4.0'
184
+ version: '4'
185
+ - - "<"
186
+ - !ruby/object:Gem::Version
187
+ version: '6'
126
188
  description: For use for the Beaker acceptance testing tool
127
189
  email:
128
190
  - voxpupuli@groups.io
@@ -131,13 +193,16 @@ executables:
131
193
  extensions: []
132
194
  extra_rdoc_files: []
133
195
  files:
196
+ - ".github/dependabot.yml"
134
197
  - ".github/workflows/release.yml"
135
198
  - ".github/workflows/test.yml"
136
199
  - ".gitignore"
137
200
  - ".rspec"
201
+ - ".rubocop.yml"
202
+ - ".rubocop_todo.yml"
138
203
  - ".simplecov"
204
+ - CHANGELOG.md
139
205
  - Gemfile
140
- - HISTORY.md
141
206
  - LICENSE
142
207
  - README.md
143
208
  - Rakefile
@@ -158,9 +223,12 @@ require_paths:
158
223
  - lib
159
224
  required_ruby_version: !ruby/object:Gem::Requirement
160
225
  requirements:
161
- - - "~>"
226
+ - - ">="
227
+ - !ruby/object:Gem::Version
228
+ version: '2.7'
229
+ - - "<"
162
230
  - !ruby/object:Gem::Version
163
- version: '2.4'
231
+ version: '4'
164
232
  required_rubygems_version: !ruby/object:Gem::Requirement
165
233
  requirements:
166
234
  - - ">="
data/HISTORY.md DELETED
@@ -1,34 +0,0 @@
1
- # default - History
2
- ## Tags
3
- * [0.3.0 - 18 May, 2021](#0.2.1)
4
- * [0.2.0 - 10 Nov, 2020](#0.2.0)
5
- * [0.1.1 - 14 Oct, 2.05 (a23d45bc)](#0.1.1)
6
- * [0.1.0 - 8 Sep, 2.05 (7d1ef9b6)](#0.1.0)
7
-
8
- ## Details
9
-
10
- ### <a name = "0.3.0">0.3.0 - 18 May, 2021
11
-
12
- * Major update to work with Beaker 4
13
-
14
- ### <a name = "0.2.0">0.2.0 - 10 Nov, 2020
15
-
16
- * Release before moving to Vox Pupuli
17
-
18
- ### <a name = "0.1.1">0.1.1 - 14 Oct, 2.05 (a23d45bc)
19
-
20
- * (GEM) update beaker-hiera version to 0.1.1 (a23d45bc)
21
-
22
- * Merge pull request #1 from puppetlabs/bkr562_spec_audit (2693ec4f)
23
-
24
-
25
- ```
26
- Merge pull request #1 from puppetlabs/bkr562_spec_audit
27
-
28
- (BKR-562) removed leftover spec lines
29
- ```
30
- * (BKR-562) removed leftover spec lines (c348c5e9)
31
-
32
- ### <a name = "0.1.0">0.1.0 - 8 Sep, 2.05 (7d1ef9b6)
33
-
34
- * Initial release.