beaker-puppet 1.19.1 → 1.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +8 -0
- data/.github/workflows/release.yml +32 -0
- data/.github/workflows/test.yml +36 -0
- data/CHANGELOG.md +634 -0
- data/CODEOWNERS +0 -3
- data/Gemfile +7 -5
- data/README.md +34 -38
- data/Rakefile +13 -0
- data/beaker-puppet.gemspec +4 -7
- data/lib/beaker-puppet.rb +0 -1
- data/lib/beaker-puppet/helpers/host_helpers.rb +5 -1
- data/lib/beaker-puppet/helpers/puppet_helpers.rb +2 -2
- data/lib/beaker-puppet/install_utils/foss_utils.rb +17 -7
- data/lib/beaker-puppet/install_utils/puppet_utils.rb +1 -3
- data/lib/beaker-puppet/install_utils/windows_utils.rb +2 -2
- data/lib/beaker-puppet/version.rb +1 -1
- data/setup/git/000_EnvSetup.rb +1 -1
- data/spec/beaker-puppet/helpers/host_helpers_spec.rb +29 -0
- data/spec/beaker-puppet/helpers/puppet_helpers_spec.rb +15 -20
- data/spec/beaker-puppet/install_utils/foss_utils_spec.rb +7 -22
- data/spec/beaker-puppet/install_utils/puppet_utils_spec.rb +14 -0
- data/spec/beaker-puppet/install_utils/windows_utils_spec.rb +1 -1
- data/spec/spec_helper.rb +25 -2
- metadata +15 -53
- data/HISTORY.md +0 -42
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53f89a92b8bca60e64107cc70882e959fbf05594edf34307374f392b8f31e622
|
4
|
+
data.tar.gz: a3cd7ac37aa8c519346bd8a2a874f6b42661983bf0f7edad91f53a77b3a646ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0a6be8dfcfcb86fb13b1b6833fa18b470769cdd50b6321c51f9aa5a75106eb3cab12f03f98b5f5eb7e4e861e8746041f83eeb2c1d1e8374910f19d96d40de23
|
7
|
+
data.tar.gz: cbaa76dcb7f841cc0d057b28ae761f820507b74d2dfa7f5f0226990a571ab032f5de12b1b5b59ca6e62e0df41dfb86db007ec81e1fa7b1b835a6f8ce07158b04
|
@@ -0,0 +1,32 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- '*'
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
release:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
if: github.repository_owner == 'voxpupuli'
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
- name: Install Ruby 3.0
|
15
|
+
uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: '3.0'
|
18
|
+
env:
|
19
|
+
BUNDLE_WITHOUT: release
|
20
|
+
- name: Build gem
|
21
|
+
run: gem build *.gemspec
|
22
|
+
- name: Publish gem to rubygems.org
|
23
|
+
run: gem push *.gem
|
24
|
+
env:
|
25
|
+
GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
|
26
|
+
- name: Setup GitHub packages access
|
27
|
+
run: |
|
28
|
+
mkdir -p ~/.gem
|
29
|
+
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
|
30
|
+
chmod 0600 ~/.gem/credentials
|
31
|
+
- name: Publish gem to GitHub packages
|
32
|
+
run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
|
@@ -0,0 +1,36 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
- pull_request
|
5
|
+
- push
|
6
|
+
|
7
|
+
env:
|
8
|
+
BUNDLE_WITHOUT: release
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
rspec:
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
strategy:
|
14
|
+
fail-fast: false
|
15
|
+
matrix:
|
16
|
+
include:
|
17
|
+
- ruby: "2.4"
|
18
|
+
- ruby: "2.5"
|
19
|
+
- ruby: "2.6"
|
20
|
+
- ruby: "2.7"
|
21
|
+
- ruby: "3.0"
|
22
|
+
coverage: "yes"
|
23
|
+
env:
|
24
|
+
COVERAGE: ${{ matrix.coverage }}
|
25
|
+
name: RSpec - Ruby ${{ matrix.ruby }}
|
26
|
+
steps:
|
27
|
+
- uses: actions/checkout@v2
|
28
|
+
- name: Install Ruby ${{ matrix.ruby }}
|
29
|
+
uses: ruby/setup-ruby@v1
|
30
|
+
with:
|
31
|
+
ruby-version: ${{ matrix.ruby }}
|
32
|
+
bundler-cache: true
|
33
|
+
- name: spec tests
|
34
|
+
run: bundle exec rake test:spec
|
35
|
+
- name: Verify gem builds
|
36
|
+
run: gem build *.gemspec
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,634 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
## [v1.22.0](https://github.com/voxpupuli/beaker-puppet/tree/v1.22.0) (2021-08-17)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.21.0...v1.22.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Create better puppet apply tmpfiles [\#161](https://github.com/voxpupuli/beaker-puppet/pull/161) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
12
|
+
- Drop stringify-hash dependency [\#158](https://github.com/voxpupuli/beaker-puppet/pull/158) ([ekohl](https://github.com/ekohl))
|
13
|
+
|
14
|
+
**Merged pull requests:**
|
15
|
+
|
16
|
+
- Remove mentions of Beaker 3 [\#165](https://github.com/voxpupuli/beaker-puppet/pull/165) ([ekohl](https://github.com/ekohl))
|
17
|
+
- Use the built-in Resolv::IPv4::Regex [\#164](https://github.com/voxpupuli/beaker-puppet/pull/164) ([ekohl](https://github.com/ekohl))
|
18
|
+
- Implement codecov; update README.md [\#162](https://github.com/voxpupuli/beaker-puppet/pull/162) ([bastelfreak](https://github.com/bastelfreak))
|
19
|
+
- Add both GPG keys when installing repos on SLES [\#157](https://github.com/voxpupuli/beaker-puppet/pull/157) ([GabrielNagy](https://github.com/GabrielNagy))
|
20
|
+
|
21
|
+
## [1.21.0](https://github.com/voxpupuli/beaker-puppet/tree/1.21.0) (2020-12-21)
|
22
|
+
|
23
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.20.0...1.21.0)
|
24
|
+
|
25
|
+
**Fixed bugs:**
|
26
|
+
|
27
|
+
- Fix Arch Linux support [\#154](https://github.com/voxpupuli/beaker-puppet/pull/154) ([bastelfreak](https://github.com/bastelfreak))
|
28
|
+
|
29
|
+
**Merged pull requests:**
|
30
|
+
|
31
|
+
- \(\#151\) Remove useless 'PATH' string from system PATH [\#152](https://github.com/voxpupuli/beaker-puppet/pull/152) ([silug](https://github.com/silug))
|
32
|
+
- \(maint\) replace use of deprecated method `get_puppet_collection` [\#149](https://github.com/voxpupuli/beaker-puppet/pull/149) ([ciprianbadescu](https://github.com/ciprianbadescu))
|
33
|
+
- \(maint\) Make latest the latest stable instead of nightly [\#147](https://github.com/voxpupuli/beaker-puppet/pull/147) ([GabrielNagy](https://github.com/GabrielNagy))
|
34
|
+
- \(maint\) Remove deprecated gem install flags [\#146](https://github.com/voxpupuli/beaker-puppet/pull/146) ([gimmyxd](https://github.com/gimmyxd))
|
35
|
+
- \(maint\) redhat-8-arm64 builds access check [\#145](https://github.com/voxpupuli/beaker-puppet/pull/145) ([ciprianbadescu](https://github.com/ciprianbadescu))
|
36
|
+
|
37
|
+
## [1.20.0](https://github.com/voxpupuli/beaker-puppet/tree/1.20.0) (2020-09-10)
|
38
|
+
|
39
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.19.2...1.20.0)
|
40
|
+
|
41
|
+
**Merged pull requests:**
|
42
|
+
|
43
|
+
- \(maint\) Remove puppet teams from CODEOWNERS file [\#143](https://github.com/voxpupuli/beaker-puppet/pull/143) ([lucywyman](https://github.com/lucywyman))
|
44
|
+
- Add .travis.yml [\#142](https://github.com/voxpupuli/beaker-puppet/pull/142) ([genebean](https://github.com/genebean))
|
45
|
+
- Add Dependabot to keep thins up to date [\#139](https://github.com/voxpupuli/beaker-puppet/pull/139) ([genebean](https://github.com/genebean))
|
46
|
+
- \(maint\) Update Windows test version.txt path [\#138](https://github.com/voxpupuli/beaker-puppet/pull/138) ([mihaibuzgau](https://github.com/mihaibuzgau))
|
47
|
+
|
48
|
+
## [1.19.2](https://github.com/voxpupuli/beaker-puppet/tree/1.19.2) (2020-05-21)
|
49
|
+
|
50
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.19.1...1.19.2)
|
51
|
+
|
52
|
+
**Merged pull requests:**
|
53
|
+
|
54
|
+
- \(BKR-1654\) ruby\_command should work on windows localhost [\#137](https://github.com/voxpupuli/beaker-puppet/pull/137) ([Filipovici-Andrei](https://github.com/Filipovici-Andrei))
|
55
|
+
|
56
|
+
## [1.19.1](https://github.com/voxpupuli/beaker-puppet/tree/1.19.1) (2020-05-07)
|
57
|
+
|
58
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.19.0...1.19.1)
|
59
|
+
|
60
|
+
**Merged pull requests:**
|
61
|
+
|
62
|
+
- \(BKR-1641\) Update Agent version defaults [\#134](https://github.com/voxpupuli/beaker-puppet/pull/134) ([sebastian-miclea](https://github.com/sebastian-miclea))
|
63
|
+
|
64
|
+
## [1.19.0](https://github.com/voxpupuli/beaker-puppet/tree/1.19.0) (2020-05-06)
|
65
|
+
|
66
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.15...1.19.0)
|
67
|
+
|
68
|
+
**Merged pull requests:**
|
69
|
+
|
70
|
+
- Bump puppet and rake version [\#136](https://github.com/voxpupuli/beaker-puppet/pull/136) ([highb](https://github.com/highb))
|
71
|
+
- \(maint\) Add extra escape chars in msi-log [\#135](https://github.com/voxpupuli/beaker-puppet/pull/135) ([donoghuc](https://github.com/donoghuc))
|
72
|
+
|
73
|
+
## [1.18.15](https://github.com/voxpupuli/beaker-puppet/tree/1.18.15) (2020-03-31)
|
74
|
+
|
75
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.14...1.18.15)
|
76
|
+
|
77
|
+
**Merged pull requests:**
|
78
|
+
|
79
|
+
- \(maint\) Enable Windows hosts to use the package\_proxy [\#133](https://github.com/voxpupuli/beaker-puppet/pull/133) ([markcassidy](https://github.com/markcassidy))
|
80
|
+
|
81
|
+
## [1.18.14](https://github.com/voxpupuli/beaker-puppet/tree/1.18.14) (2020-02-20)
|
82
|
+
|
83
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.13...1.18.14)
|
84
|
+
|
85
|
+
**Merged pull requests:**
|
86
|
+
|
87
|
+
- Update to remove issues with type/more commands [\#131](https://github.com/voxpupuli/beaker-puppet/pull/131) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
88
|
+
|
89
|
+
## [1.18.13](https://github.com/voxpupuli/beaker-puppet/tree/1.18.13) (2020-02-07)
|
90
|
+
|
91
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.12...1.18.13)
|
92
|
+
|
93
|
+
**Merged pull requests:**
|
94
|
+
|
95
|
+
- Revert "Merge pull request \#129 from trevor-vaughan/windows\_paths" [\#130](https://github.com/voxpupuli/beaker-puppet/pull/130) ([gimmyxd](https://github.com/gimmyxd))
|
96
|
+
|
97
|
+
## [1.18.12](https://github.com/voxpupuli/beaker-puppet/tree/1.18.12) (2020-02-06)
|
98
|
+
|
99
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.11...1.18.12)
|
100
|
+
|
101
|
+
**Merged pull requests:**
|
102
|
+
|
103
|
+
- Fix Windows Support [\#129](https://github.com/voxpupuli/beaker-puppet/pull/129) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
104
|
+
- Provide a useful message if possible ISP hijacking [\#128](https://github.com/voxpupuli/beaker-puppet/pull/128) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
105
|
+
|
106
|
+
## [1.18.11](https://github.com/voxpupuli/beaker-puppet/tree/1.18.11) (2019-12-10)
|
107
|
+
|
108
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.10...1.18.11)
|
109
|
+
|
110
|
+
**Merged pull requests:**
|
111
|
+
|
112
|
+
- \(maint\) Allow custom hypervisor settings [\#127](https://github.com/voxpupuli/beaker-puppet/pull/127) ([melissa](https://github.com/melissa))
|
113
|
+
|
114
|
+
## [1.18.10](https://github.com/voxpupuli/beaker-puppet/tree/1.18.10) (2019-11-26)
|
115
|
+
|
116
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.9...1.18.10)
|
117
|
+
|
118
|
+
**Merged pull requests:**
|
119
|
+
|
120
|
+
- \(RE-12690\) Be more explicit about when to gsub [\#126](https://github.com/voxpupuli/beaker-puppet/pull/126) ([mwaggett](https://github.com/mwaggett))
|
121
|
+
|
122
|
+
## [1.18.9](https://github.com/voxpupuli/beaker-puppet/tree/1.18.9) (2019-11-25)
|
123
|
+
|
124
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.8...1.18.9)
|
125
|
+
|
126
|
+
**Merged pull requests:**
|
127
|
+
|
128
|
+
- \(RE-12690\) Add debug output to `install_repo_configs_from_url` [\#125](https://github.com/voxpupuli/beaker-puppet/pull/125) ([mwaggett](https://github.com/mwaggett))
|
129
|
+
|
130
|
+
## [1.18.8](https://github.com/voxpupuli/beaker-puppet/tree/1.18.8) (2019-09-25)
|
131
|
+
|
132
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.7...1.18.8)
|
133
|
+
|
134
|
+
**Merged pull requests:**
|
135
|
+
|
136
|
+
- \(maint\) removed unused gem markdown [\#124](https://github.com/voxpupuli/beaker-puppet/pull/124) ([ciprianbadescu](https://github.com/ciprianbadescu))
|
137
|
+
- \(maint\) fix ssl cleanup [\#123](https://github.com/voxpupuli/beaker-puppet/pull/123) ([ciprianbadescu](https://github.com/ciprianbadescu))
|
138
|
+
- \(maint\) add CODEOWNERS [\#120](https://github.com/voxpupuli/beaker-puppet/pull/120) ([mihaibuzgau](https://github.com/mihaibuzgau))
|
139
|
+
|
140
|
+
## [1.18.7](https://github.com/voxpupuli/beaker-puppet/tree/1.18.7) (2019-07-18)
|
141
|
+
|
142
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.6...1.18.7)
|
143
|
+
|
144
|
+
**Merged pull requests:**
|
145
|
+
|
146
|
+
- \(maint\) Using skip\_test in a step was not doing what I expected [\#119](https://github.com/voxpupuli/beaker-puppet/pull/119) ([underscorgan](https://github.com/underscorgan))
|
147
|
+
|
148
|
+
## [1.18.6](https://github.com/voxpupuli/beaker-puppet/tree/1.18.6) (2019-07-15)
|
149
|
+
|
150
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.5...1.18.6)
|
151
|
+
|
152
|
+
**Merged pull requests:**
|
153
|
+
|
154
|
+
- \(maint\) Updates for rerunning tests on existing containers [\#117](https://github.com/voxpupuli/beaker-puppet/pull/117) ([underscorgan](https://github.com/underscorgan))
|
155
|
+
|
156
|
+
## [1.18.5](https://github.com/voxpupuli/beaker-puppet/tree/1.18.5) (2019-06-27)
|
157
|
+
|
158
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.4...1.18.5)
|
159
|
+
|
160
|
+
**Merged pull requests:**
|
161
|
+
|
162
|
+
- \(BKR-1600\) Default puppet settings to `main` section [\#118](https://github.com/voxpupuli/beaker-puppet/pull/118) ([joshcooper](https://github.com/joshcooper))
|
163
|
+
|
164
|
+
## [1.18.4](https://github.com/voxpupuli/beaker-puppet/tree/1.18.4) (2019-06-19)
|
165
|
+
|
166
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.3...1.18.4)
|
167
|
+
|
168
|
+
**Merged pull requests:**
|
169
|
+
|
170
|
+
- \(BKR-1598\) Set server hostname [\#116](https://github.com/voxpupuli/beaker-puppet/pull/116) ([joshcooper](https://github.com/joshcooper))
|
171
|
+
|
172
|
+
## [1.18.3](https://github.com/voxpupuli/beaker-puppet/tree/1.18.3) (2019-05-24)
|
173
|
+
|
174
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.2...1.18.3)
|
175
|
+
|
176
|
+
**Merged pull requests:**
|
177
|
+
|
178
|
+
- \(maint\) Mark dev repos as trusted [\#115](https://github.com/voxpupuli/beaker-puppet/pull/115) ([pcarlisle](https://github.com/pcarlisle))
|
179
|
+
|
180
|
+
## [1.18.2](https://github.com/voxpupuli/beaker-puppet/tree/1.18.2) (2019-05-20)
|
181
|
+
|
182
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.1...1.18.2)
|
183
|
+
|
184
|
+
**Merged pull requests:**
|
185
|
+
|
186
|
+
- \(BKR-1591\) install puppet from devbuilds on amazon [\#114](https://github.com/voxpupuli/beaker-puppet/pull/114) ([gimmyxd](https://github.com/gimmyxd))
|
187
|
+
|
188
|
+
## [1.18.1](https://github.com/voxpupuli/beaker-puppet/tree/1.18.1) (2019-05-16)
|
189
|
+
|
190
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.18.0...1.18.1)
|
191
|
+
|
192
|
+
**Merged pull requests:**
|
193
|
+
|
194
|
+
- \(BKR-1587\) Install non-latest builds on all hosts [\#112](https://github.com/voxpupuli/beaker-puppet/pull/112) ([joshcooper](https://github.com/joshcooper))
|
195
|
+
|
196
|
+
## [1.18.0](https://github.com/voxpupuli/beaker-puppet/tree/1.18.0) (2019-05-15)
|
197
|
+
|
198
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.17.0...1.18.0)
|
199
|
+
|
200
|
+
**Merged pull requests:**
|
201
|
+
|
202
|
+
- \(BKR-1590\) Support new yum and apt release locations [\#113](https://github.com/voxpupuli/beaker-puppet/pull/113) ([treydock](https://github.com/treydock))
|
203
|
+
- \(maint\) Restructure release repo url [\#110](https://github.com/voxpupuli/beaker-puppet/pull/110) ([melissa](https://github.com/melissa))
|
204
|
+
|
205
|
+
## [1.17.0](https://github.com/voxpupuli/beaker-puppet/tree/1.17.0) (2019-04-15)
|
206
|
+
|
207
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.16.0...1.17.0)
|
208
|
+
|
209
|
+
**Merged pull requests:**
|
210
|
+
|
211
|
+
- \(maint\) Bump version of puppet-agent to test against to 6.0.0 [\#109](https://github.com/voxpupuli/beaker-puppet/pull/109) ([melissa](https://github.com/melissa))
|
212
|
+
- \(maint\) Remove assumption that we have runtime on docker [\#108](https://github.com/voxpupuli/beaker-puppet/pull/108) ([melissa](https://github.com/melissa))
|
213
|
+
- \(maint\) Added debian 10 or higher to allow insecure repo [\#107](https://github.com/voxpupuli/beaker-puppet/pull/107) ([loopinu](https://github.com/loopinu))
|
214
|
+
- \(MAINT\) Fix test:acceptance:pkg [\#106](https://github.com/voxpupuli/beaker-puppet/pull/106) ([smcelmurry](https://github.com/smcelmurry))
|
215
|
+
- \(maint\) Exclude tmp directory on module installation [\#101](https://github.com/voxpupuli/beaker-puppet/pull/101) ([glennsarti](https://github.com/glennsarti))
|
216
|
+
- \(maint\) Enable acceptance testing with puppet-agent installed from ni… [\#98](https://github.com/voxpupuli/beaker-puppet/pull/98) ([melissa](https://github.com/melissa))
|
217
|
+
|
218
|
+
## [1.16.0](https://github.com/voxpupuli/beaker-puppet/tree/1.16.0) (2019-01-29)
|
219
|
+
|
220
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.15.1...1.16.0)
|
221
|
+
|
222
|
+
**Merged pull requests:**
|
223
|
+
|
224
|
+
- \(maint\) Add puppetserver package to puppet\_collection\_for [\#104](https://github.com/voxpupuli/beaker-puppet/pull/104) ([ekinanp](https://github.com/ekinanp))
|
225
|
+
- \(maint\) `agent` should be `host` [\#103](https://github.com/voxpupuli/beaker-puppet/pull/103) ([melissa](https://github.com/melissa))
|
226
|
+
|
227
|
+
## [1.15.1](https://github.com/voxpupuli/beaker-puppet/tree/1.15.1) (2019-01-28)
|
228
|
+
|
229
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.15.0...1.15.1)
|
230
|
+
|
231
|
+
**Merged pull requests:**
|
232
|
+
|
233
|
+
- \(maint\) Avoid mutating frozen string [\#102](https://github.com/voxpupuli/beaker-puppet/pull/102) ([donoghuc](https://github.com/donoghuc))
|
234
|
+
|
235
|
+
## [1.15.0](https://github.com/voxpupuli/beaker-puppet/tree/1.15.0) (2019-01-25)
|
236
|
+
|
237
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.14.0...1.15.0)
|
238
|
+
|
239
|
+
**Merged pull requests:**
|
240
|
+
|
241
|
+
- \(maint\) Centralize puppet\_collection\_for logic [\#100](https://github.com/voxpupuli/beaker-puppet/pull/100) ([ekinanp](https://github.com/ekinanp))
|
242
|
+
- \(maint\) return nil explicitly for agent/server version helpers [\#99](https://github.com/voxpupuli/beaker-puppet/pull/99) ([caseywilliams](https://github.com/caseywilliams))
|
243
|
+
- A few small puppet helper fixes [\#97](https://github.com/voxpupuli/beaker-puppet/pull/97) ([caseywilliams](https://github.com/caseywilliams))
|
244
|
+
- \(maint\) Fix incorrect constant reference, update a spec test description [\#96](https://github.com/voxpupuli/beaker-puppet/pull/96) ([caseywilliams](https://github.com/caseywilliams))
|
245
|
+
- \(BKR-1560\) Add install\_puppetserver\_on helper [\#95](https://github.com/voxpupuli/beaker-puppet/pull/95) ([caseywilliams](https://github.com/caseywilliams))
|
246
|
+
- \(BKR-1560\) Allow for installing puppet-agent from dev builds [\#93](https://github.com/voxpupuli/beaker-puppet/pull/93) ([caseywilliams](https://github.com/caseywilliams))
|
247
|
+
- \(maint\) Fix empty argument case in collection methods [\#92](https://github.com/voxpupuli/beaker-puppet/pull/92) ([caseywilliams](https://github.com/caseywilliams))
|
248
|
+
- \(maint\) Simplify missing SHA.yaml error message [\#91](https://github.com/voxpupuli/beaker-puppet/pull/91) ([caseywilliams](https://github.com/caseywilliams))
|
249
|
+
- \(BKR-1560\) Updates to support puppet\_agent module testing [\#89](https://github.com/voxpupuli/beaker-puppet/pull/89) ([caseywilliams](https://github.com/caseywilliams))
|
250
|
+
|
251
|
+
## [1.14.0](https://github.com/voxpupuli/beaker-puppet/tree/1.14.0) (2018-12-17)
|
252
|
+
|
253
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.13.0...1.14.0)
|
254
|
+
|
255
|
+
**Merged pull requests:**
|
256
|
+
|
257
|
+
- Autodetect the target module dir in copy\_module\_to [\#83](https://github.com/voxpupuli/beaker-puppet/pull/83) ([ekohl](https://github.com/ekohl))
|
258
|
+
|
259
|
+
## [1.13.0](https://github.com/voxpupuli/beaker-puppet/tree/1.13.0) (2018-12-13)
|
260
|
+
|
261
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.12.0...1.13.0)
|
262
|
+
|
263
|
+
**Implemented enhancements:**
|
264
|
+
|
265
|
+
- \(BKR-1523\) Add only-fails capability to beaker [\#76](https://github.com/voxpupuli/beaker-puppet/pull/76) ([speedofdark](https://github.com/speedofdark))
|
266
|
+
|
267
|
+
**Merged pull requests:**
|
268
|
+
|
269
|
+
- \(BKR-1558\) make sure we destroy hosts for ci:test:\* task execution [\#88](https://github.com/voxpupuli/beaker-puppet/pull/88) ([speedofdark](https://github.com/speedofdark))
|
270
|
+
- \(MAINT\) Use puppet.com URLs instead of puppetlabs.com [\#78](https://github.com/voxpupuli/beaker-puppet/pull/78) ([raphink](https://github.com/raphink))
|
271
|
+
|
272
|
+
## [1.12.0](https://github.com/voxpupuli/beaker-puppet/tree/1.12.0) (2018-11-30)
|
273
|
+
|
274
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.11.0...1.12.0)
|
275
|
+
|
276
|
+
**Merged pull requests:**
|
277
|
+
|
278
|
+
- \(PA-2336\) Manually import GPG keys for SLES versions \>= 11 [\#87](https://github.com/voxpupuli/beaker-puppet/pull/87) ([ScottGarman](https://github.com/ScottGarman))
|
279
|
+
|
280
|
+
## [1.11.0](https://github.com/voxpupuli/beaker-puppet/tree/1.11.0) (2018-11-28)
|
281
|
+
|
282
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.10.0...1.11.0)
|
283
|
+
|
284
|
+
**Merged pull requests:**
|
285
|
+
|
286
|
+
- Revert "\(maint\) Add AIX yum bootstrap to setup scripts" [\#86](https://github.com/voxpupuli/beaker-puppet/pull/86) ([geoffnichols](https://github.com/geoffnichols))
|
287
|
+
|
288
|
+
## [1.10.0](https://github.com/voxpupuli/beaker-puppet/tree/1.10.0) (2018-11-27)
|
289
|
+
|
290
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.9.0...1.10.0)
|
291
|
+
|
292
|
+
**Merged pull requests:**
|
293
|
+
|
294
|
+
- \(maint\) Set `server` in puppet.conf in ValidateSignCert [\#85](https://github.com/voxpupuli/beaker-puppet/pull/85) ([caseywilliams](https://github.com/caseywilliams))
|
295
|
+
|
296
|
+
## [1.9.0](https://github.com/voxpupuli/beaker-puppet/tree/1.9.0) (2018-11-26)
|
297
|
+
|
298
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.8.0...1.9.0)
|
299
|
+
|
300
|
+
**Merged pull requests:**
|
301
|
+
|
302
|
+
- \(maint\) Add AIX yum bootstrap to setup scripts [\#84](https://github.com/voxpupuli/beaker-puppet/pull/84) ([geoffnichols](https://github.com/geoffnichols))
|
303
|
+
- \(maint\) If iptables doesn't exist, don't fail [\#82](https://github.com/voxpupuli/beaker-puppet/pull/82) ([melissa](https://github.com/melissa))
|
304
|
+
- \(maint\) Add docker specifics to git testing [\#81](https://github.com/voxpupuli/beaker-puppet/pull/81) ([melissa](https://github.com/melissa))
|
305
|
+
|
306
|
+
## [1.8.0](https://github.com/voxpupuli/beaker-puppet/tree/1.8.0) (2018-11-05)
|
307
|
+
|
308
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.7.0...1.8.0)
|
309
|
+
|
310
|
+
**Implemented enhancements:**
|
311
|
+
|
312
|
+
- \(PUP-8305\) Consume the puppet-runtime archive [\#75](https://github.com/voxpupuli/beaker-puppet/pull/75) ([melissa](https://github.com/melissa))
|
313
|
+
|
314
|
+
**Merged pull requests:**
|
315
|
+
|
316
|
+
- \(maint\) Example variables in comments shouldn't be valid syntax so ru… [\#80](https://github.com/voxpupuli/beaker-puppet/pull/80) ([melissa](https://github.com/melissa))
|
317
|
+
|
318
|
+
## [1.7.0](https://github.com/voxpupuli/beaker-puppet/tree/1.7.0) (2018-10-25)
|
319
|
+
|
320
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.6.0...1.7.0)
|
321
|
+
|
322
|
+
**Merged pull requests:**
|
323
|
+
|
324
|
+
- \(PA-2183\) Quote fact name in fact\_on helper [\#79](https://github.com/voxpupuli/beaker-puppet/pull/79) ([ekinanp](https://github.com/ekinanp))
|
325
|
+
- Revert "\(PUP-8305\) Git testing should consume the runtime package" [\#74](https://github.com/voxpupuli/beaker-puppet/pull/74) ([kevpl](https://github.com/kevpl))
|
326
|
+
- \(maint\) Validate `fact_on` `name` parameter [\#73](https://github.com/voxpupuli/beaker-puppet/pull/73) ([alexjfisher](https://github.com/alexjfisher))
|
327
|
+
- \(PUP-9136\) Ensure state is preserved between runs [\#72](https://github.com/voxpupuli/beaker-puppet/pull/72) ([melissa](https://github.com/melissa))
|
328
|
+
- \(PUP-8305\) Git testing should consume the runtime package [\#52](https://github.com/voxpupuli/beaker-puppet/pull/52) ([melissa](https://github.com/melissa))
|
329
|
+
|
330
|
+
## [1.6.0](https://github.com/voxpupuli/beaker-puppet/tree/1.6.0) (2018-09-14)
|
331
|
+
|
332
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.5.0...1.6.0)
|
333
|
+
|
334
|
+
**Merged pull requests:**
|
335
|
+
|
336
|
+
- \(PE-25146\) Check for hostnames when puppetserver signing [\#70](https://github.com/voxpupuli/beaker-puppet/pull/70) ([jpartlow](https://github.com/jpartlow))
|
337
|
+
|
338
|
+
## [1.5.0](https://github.com/voxpupuli/beaker-puppet/tree/1.5.0) (2018-09-13)
|
339
|
+
|
340
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.4.0...1.5.0)
|
341
|
+
|
342
|
+
**Merged pull requests:**
|
343
|
+
|
344
|
+
- \(maint\) Get stdout of calls to `puppet --version` [\#69](https://github.com/voxpupuli/beaker-puppet/pull/69) ([Magisus](https://github.com/Magisus))
|
345
|
+
- \(MAINT\) Updates to support GCE and RHEL [\#27](https://github.com/voxpupuli/beaker-puppet/pull/27) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
346
|
+
|
347
|
+
## [1.4.0](https://github.com/voxpupuli/beaker-puppet/tree/1.4.0) (2018-09-13)
|
348
|
+
|
349
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.3.0...1.4.0)
|
350
|
+
|
351
|
+
**Merged pull requests:**
|
352
|
+
|
353
|
+
- \(MODULES-7793\) Avoid stat name conflicts by renaming stat -\> beaker\_stat [\#68](https://github.com/voxpupuli/beaker-puppet/pull/68) ([justinstoller](https://github.com/justinstoller))
|
354
|
+
- \(maint\) Merge up 0.x [\#67](https://github.com/voxpupuli/beaker-puppet/pull/67) ([justinstoller](https://github.com/justinstoller))
|
355
|
+
- \(BKR-1528\) Use `puppetserver ca` instead of `puppet cert` [\#66](https://github.com/voxpupuli/beaker-puppet/pull/66) ([Magisus](https://github.com/Magisus))
|
356
|
+
|
357
|
+
## [1.3.0](https://github.com/voxpupuli/beaker-puppet/tree/1.3.0) (2018-09-11)
|
358
|
+
|
359
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.2.0...1.3.0)
|
360
|
+
|
361
|
+
**Merged pull requests:**
|
362
|
+
|
363
|
+
- pass hiera\_config argument to puppet\_apply [\#63](https://github.com/voxpupuli/beaker-puppet/pull/63) ([lmayorga1980](https://github.com/lmayorga1980))
|
364
|
+
|
365
|
+
## [1.2.0](https://github.com/voxpupuli/beaker-puppet/tree/1.2.0) (2018-09-11)
|
366
|
+
|
367
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.1.0...1.2.0)
|
368
|
+
|
369
|
+
**Merged pull requests:**
|
370
|
+
|
371
|
+
- \(BKR-1445\) Update Windows agent paths for puppet6 [\#64](https://github.com/voxpupuli/beaker-puppet/pull/64) ([caseywilliams](https://github.com/caseywilliams))
|
372
|
+
- \(BKR-1510\) make fact helpers support structured facts [\#59](https://github.com/voxpupuli/beaker-puppet/pull/59) ([sevendials](https://github.com/sevendials))
|
373
|
+
- \(MAINT\) Adding some generic host helper utility methods [\#54](https://github.com/voxpupuli/beaker-puppet/pull/54) ([jsane](https://github.com/jsane))
|
374
|
+
|
375
|
+
## [1.1.0](https://github.com/voxpupuli/beaker-puppet/tree/1.1.0) (2018-08-13)
|
376
|
+
|
377
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.0.1...1.1.0)
|
378
|
+
|
379
|
+
**Merged pull requests:**
|
380
|
+
|
381
|
+
- PE-24898 Set puppet collection value associated with agent version [\#60](https://github.com/voxpupuli/beaker-puppet/pull/60) ([shaigy](https://github.com/shaigy))
|
382
|
+
|
383
|
+
## [1.0.1](https://github.com/voxpupuli/beaker-puppet/tree/1.0.1) (2018-08-10)
|
384
|
+
|
385
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.0.0...1.0.1)
|
386
|
+
|
387
|
+
**Merged pull requests:**
|
388
|
+
|
389
|
+
- \(BKR-1509\) Beaker 4.0 Compatibility [\#62](https://github.com/voxpupuli/beaker-puppet/pull/62) ([Dakta](https://github.com/Dakta))
|
390
|
+
|
391
|
+
## [1.0.0](https://github.com/voxpupuli/beaker-puppet/tree/1.0.0) (2018-08-06)
|
392
|
+
|
393
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.17.1...1.0.0)
|
394
|
+
|
395
|
+
**Merged pull requests:**
|
396
|
+
|
397
|
+
- Revert "Revert "\(BKR-496\) Move create\_tmpdir\_on from beaker"" [\#58](https://github.com/voxpupuli/beaker-puppet/pull/58) ([Dakta](https://github.com/Dakta))
|
398
|
+
- \(BKR-1500\) Dependency Cleanup [\#55](https://github.com/voxpupuli/beaker-puppet/pull/55) ([Dakta](https://github.com/Dakta))
|
399
|
+
|
400
|
+
## [0.17.1](https://github.com/voxpupuli/beaker-puppet/tree/0.17.1) (2018-07-27)
|
401
|
+
|
402
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.17.0...0.17.1)
|
403
|
+
|
404
|
+
**Merged pull requests:**
|
405
|
+
|
406
|
+
- Revert "\(BKR-496\) Move create\_tmpdir\_on from beaker" [\#57](https://github.com/voxpupuli/beaker-puppet/pull/57) ([kevpl](https://github.com/kevpl))
|
407
|
+
|
408
|
+
## [0.17.0](https://github.com/voxpupuli/beaker-puppet/tree/0.17.0) (2018-07-26)
|
409
|
+
|
410
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.16.0...0.17.0)
|
411
|
+
|
412
|
+
**Merged pull requests:**
|
413
|
+
|
414
|
+
- \(BKR-496\) Move create\_tmpdir\_on from beaker [\#56](https://github.com/voxpupuli/beaker-puppet/pull/56) ([Dakta](https://github.com/Dakta))
|
415
|
+
|
416
|
+
## [0.16.0](https://github.com/voxpupuli/beaker-puppet/tree/0.16.0) (2018-07-05)
|
417
|
+
|
418
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.15.2...0.16.0)
|
419
|
+
|
420
|
+
**Merged pull requests:**
|
421
|
+
|
422
|
+
- \(BKR-1484\) Packaging platform overrides for puppet5 install utils [\#53](https://github.com/voxpupuli/beaker-puppet/pull/53) ([caseywilliams](https://github.com/caseywilliams))
|
423
|
+
- \(MAINT\) pin fakefs to \< 0.14.0 for ruby 2.2 [\#51](https://github.com/voxpupuli/beaker-puppet/pull/51) ([kevpl](https://github.com/kevpl))
|
424
|
+
|
425
|
+
## [0.15.2](https://github.com/voxpupuli/beaker-puppet/tree/0.15.2) (2018-05-07)
|
426
|
+
|
427
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.15.1...0.15.2)
|
428
|
+
|
429
|
+
**Merged pull requests:**
|
430
|
+
|
431
|
+
- BKR-1465 - install\_puppet\_on -"opts" defaults "options" [\#50](https://github.com/voxpupuli/beaker-puppet/pull/50) ([gunzl1ng3r](https://github.com/gunzl1ng3r))
|
432
|
+
- \(RE-10734\) Use nightlies.puppet.com for nightly collections [\#47](https://github.com/voxpupuli/beaker-puppet/pull/47) ([hunner](https://github.com/hunner))
|
433
|
+
|
434
|
+
## [0.15.1](https://github.com/voxpupuli/beaker-puppet/tree/0.15.1) (2018-05-04)
|
435
|
+
|
436
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.15.0...0.15.1)
|
437
|
+
|
438
|
+
**Merged pull requests:**
|
439
|
+
|
440
|
+
- \(BKR-1462\) Another Ubuntu 18.04 check to allow insecure repo use [\#49](https://github.com/voxpupuli/beaker-puppet/pull/49) ([ScottGarman](https://github.com/ScottGarman))
|
441
|
+
|
442
|
+
## [0.15.0](https://github.com/voxpupuli/beaker-puppet/tree/0.15.0) (2018-05-03)
|
443
|
+
|
444
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.14.0...0.15.0)
|
445
|
+
|
446
|
+
**Merged pull requests:**
|
447
|
+
|
448
|
+
- \(BKR-1462\) Allow unsigned apt repositories for Ubuntu 18.04 hosts [\#46](https://github.com/voxpupuli/beaker-puppet/pull/46) ([ScottGarman](https://github.com/ScottGarman))
|
449
|
+
|
450
|
+
## [0.14.0](https://github.com/voxpupuli/beaker-puppet/tree/0.14.0) (2018-05-01)
|
451
|
+
|
452
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.6...0.14.0)
|
453
|
+
|
454
|
+
**Merged pull requests:**
|
455
|
+
|
456
|
+
- \(CPR-570\) Import the gpg signing key on sles 11 [\#45](https://github.com/voxpupuli/beaker-puppet/pull/45) ([melissa](https://github.com/melissa))
|
457
|
+
|
458
|
+
## [0.13.6](https://github.com/voxpupuli/beaker-puppet/tree/0.13.6) (2018-04-26)
|
459
|
+
|
460
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.5...0.13.6)
|
461
|
+
|
462
|
+
**Merged pull requests:**
|
463
|
+
|
464
|
+
- Use puppet-agent specific helper when installing the MSI [\#43](https://github.com/voxpupuli/beaker-puppet/pull/43) ([joshcooper](https://github.com/joshcooper))
|
465
|
+
|
466
|
+
## [0.13.5](https://github.com/voxpupuli/beaker-puppet/tree/0.13.5) (2018-04-25)
|
467
|
+
|
468
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.4...0.13.5)
|
469
|
+
|
470
|
+
**Merged pull requests:**
|
471
|
+
|
472
|
+
- \(maint\) Fix failing puppet5\_spec test due to changes in pr \#39 [\#42](https://github.com/voxpupuli/beaker-puppet/pull/42) ([mchllweeks](https://github.com/mchllweeks))
|
473
|
+
- Use --module-repository for a custom forge [\#40](https://github.com/voxpupuli/beaker-puppet/pull/40) ([ekohl](https://github.com/ekohl))
|
474
|
+
|
475
|
+
## [0.13.4](https://github.com/voxpupuli/beaker-puppet/tree/0.13.4) (2018-04-23)
|
476
|
+
|
477
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.3...0.13.4)
|
478
|
+
|
479
|
+
**Merged pull requests:**
|
480
|
+
|
481
|
+
- \(BKR-1438\) Do not use `puppet master` [\#41](https://github.com/voxpupuli/beaker-puppet/pull/41) ([pcarlisle](https://github.com/pcarlisle))
|
482
|
+
|
483
|
+
## [0.13.3](https://github.com/voxpupuli/beaker-puppet/tree/0.13.3) (2018-04-16)
|
484
|
+
|
485
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.2...0.13.3)
|
486
|
+
|
487
|
+
**Merged pull requests:**
|
488
|
+
|
489
|
+
- Maint/master/small changes [\#39](https://github.com/voxpupuli/beaker-puppet/pull/39) ([melissa](https://github.com/melissa))
|
490
|
+
- \(maint\) Bring additional changes from puppet-agent acceptance [\#36](https://github.com/voxpupuli/beaker-puppet/pull/36) ([melissa](https://github.com/melissa))
|
491
|
+
|
492
|
+
## [0.13.2](https://github.com/voxpupuli/beaker-puppet/tree/0.13.2) (2018-04-11)
|
493
|
+
|
494
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.1...0.13.2)
|
495
|
+
|
496
|
+
**Merged pull requests:**
|
497
|
+
|
498
|
+
- \(BKR-1453\) Ensure no agent lock after stopping puppet service [\#38](https://github.com/voxpupuli/beaker-puppet/pull/38) ([cthorn42](https://github.com/cthorn42))
|
499
|
+
- \(maint\) Add information about additional ENV vars [\#37](https://github.com/voxpupuli/beaker-puppet/pull/37) ([melissa](https://github.com/melissa))
|
500
|
+
|
501
|
+
## [0.13.1](https://github.com/voxpupuli/beaker-puppet/tree/0.13.1) (2018-04-09)
|
502
|
+
|
503
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.13.0...0.13.1)
|
504
|
+
|
505
|
+
**Merged pull requests:**
|
506
|
+
|
507
|
+
- \(BKR-1443\) Ensure we do not destroy hosts if specified [\#35](https://github.com/voxpupuli/beaker-puppet/pull/35) ([melissa](https://github.com/melissa))
|
508
|
+
|
509
|
+
## [0.13.0](https://github.com/voxpupuli/beaker-puppet/tree/0.13.0) (2018-03-30)
|
510
|
+
|
511
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.12.0...0.13.0)
|
512
|
+
|
513
|
+
**Merged pull requests:**
|
514
|
+
|
515
|
+
- Maint/master/skip master tests [\#34](https://github.com/voxpupuli/beaker-puppet/pull/34) ([melissa](https://github.com/melissa))
|
516
|
+
|
517
|
+
## [0.12.0](https://github.com/voxpupuli/beaker-puppet/tree/0.12.0) (2018-03-26)
|
518
|
+
|
519
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.11.1...0.12.0)
|
520
|
+
|
521
|
+
**Merged pull requests:**
|
522
|
+
|
523
|
+
- \(maint\) Add release information to the readme [\#33](https://github.com/voxpupuli/beaker-puppet/pull/33) ([melissa](https://github.com/melissa))
|
524
|
+
- \(PA-1915\) Test components against nightly puppetserver [\#30](https://github.com/voxpupuli/beaker-puppet/pull/30) ([melissa](https://github.com/melissa))
|
525
|
+
|
526
|
+
## [0.11.1](https://github.com/voxpupuli/beaker-puppet/tree/0.11.1) (2018-03-26)
|
527
|
+
|
528
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.11.0...0.11.1)
|
529
|
+
|
530
|
+
**Merged pull requests:**
|
531
|
+
|
532
|
+
- \(maint\) Pre suite paths must be relative [\#32](https://github.com/voxpupuli/beaker-puppet/pull/32) ([melissa](https://github.com/melissa))
|
533
|
+
- \(maint\) Remove references to 'ci:test:quick' [\#29](https://github.com/voxpupuli/beaker-puppet/pull/29) ([melissa](https://github.com/melissa))
|
534
|
+
|
535
|
+
## [0.11.0](https://github.com/voxpupuli/beaker-puppet/tree/0.11.0) (2018-03-20)
|
536
|
+
|
537
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.10.0...0.11.0)
|
538
|
+
|
539
|
+
**Merged pull requests:**
|
540
|
+
|
541
|
+
- \(BKR-1342\) Import ci rake tasks and install utils [\#26](https://github.com/voxpupuli/beaker-puppet/pull/26) ([melissa](https://github.com/melissa))
|
542
|
+
|
543
|
+
## [0.10.0](https://github.com/voxpupuli/beaker-puppet/tree/0.10.0) (2018-01-11)
|
544
|
+
|
545
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.9.0...0.10.0)
|
546
|
+
|
547
|
+
**Merged pull requests:**
|
548
|
+
|
549
|
+
- \(BKR-1385\) Install rpm packages on aix [\#25](https://github.com/voxpupuli/beaker-puppet/pull/25) ([melissa](https://github.com/melissa))
|
550
|
+
- \(maint\) Refactor puppet5 install logic [\#24](https://github.com/voxpupuli/beaker-puppet/pull/24) ([joshcooper](https://github.com/joshcooper))
|
551
|
+
- \(BKR-1343\) Install as an MSI on Windows [\#23](https://github.com/voxpupuli/beaker-puppet/pull/23) ([joshcooper](https://github.com/joshcooper))
|
552
|
+
- \(maint\) Remove unnecessary logger information [\#22](https://github.com/voxpupuli/beaker-puppet/pull/22) ([melissa](https://github.com/melissa))
|
553
|
+
|
554
|
+
## [0.9.0](https://github.com/voxpupuli/beaker-puppet/tree/0.9.0) (2018-01-04)
|
555
|
+
|
556
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.8.0...0.9.0)
|
557
|
+
|
558
|
+
**Merged pull requests:**
|
559
|
+
|
560
|
+
- \(maint\) Add beaker-abs to Gemfile [\#21](https://github.com/voxpupuli/beaker-puppet/pull/21) ([smcelmurry](https://github.com/smcelmurry))
|
561
|
+
|
562
|
+
## [0.8.0](https://github.com/voxpupuli/beaker-puppet/tree/0.8.0) (2017-10-13)
|
563
|
+
|
564
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.7.0...0.8.0)
|
565
|
+
|
566
|
+
**Merged pull requests:**
|
567
|
+
|
568
|
+
- \(MAINT\) add contributing guide to README [\#19](https://github.com/voxpupuli/beaker-puppet/pull/19) ([kevpl](https://github.com/kevpl))
|
569
|
+
- \(maint\) Update beaker to support pupppet5 style installation [\#18](https://github.com/voxpupuli/beaker-puppet/pull/18) ([melissa](https://github.com/melissa))
|
570
|
+
|
571
|
+
## [0.7.0](https://github.com/voxpupuli/beaker-puppet/tree/0.7.0) (2017-09-15)
|
572
|
+
|
573
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.6.0...0.7.0)
|
574
|
+
|
575
|
+
**Merged pull requests:**
|
576
|
+
|
577
|
+
- \(maint\) Allow user to pass in host target [\#16](https://github.com/voxpupuli/beaker-puppet/pull/16) ([melissa](https://github.com/melissa))
|
578
|
+
|
579
|
+
## [0.6.0](https://github.com/voxpupuli/beaker-puppet/tree/0.6.0) (2017-08-21)
|
580
|
+
|
581
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.5.0...0.6.0)
|
582
|
+
|
583
|
+
**Merged pull requests:**
|
584
|
+
|
585
|
+
- \(BKR-1118\) add puppet5 install method [\#6](https://github.com/voxpupuli/beaker-puppet/pull/6) ([kevpl](https://github.com/kevpl))
|
586
|
+
|
587
|
+
## [0.5.0](https://github.com/voxpupuli/beaker-puppet/tree/0.5.0) (2017-08-18)
|
588
|
+
|
589
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.4.0...0.5.0)
|
590
|
+
|
591
|
+
**Merged pull requests:**
|
592
|
+
|
593
|
+
- \(BKR-1185\) Use Oga instead of Nokogiri [\#15](https://github.com/voxpupuli/beaker-puppet/pull/15) ([rishijavia](https://github.com/rishijavia))
|
594
|
+
- \(MAINT\) fix windows spec failures [\#14](https://github.com/voxpupuli/beaker-puppet/pull/14) ([tvpartytonight](https://github.com/tvpartytonight))
|
595
|
+
- \(MAINT\) remove `dev_builds_repos` mentions [\#8](https://github.com/voxpupuli/beaker-puppet/pull/8) ([kevpl](https://github.com/kevpl))
|
596
|
+
|
597
|
+
## [0.4.0](https://github.com/voxpupuli/beaker-puppet/tree/0.4.0) (2017-07-26)
|
598
|
+
|
599
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.3.0...0.4.0)
|
600
|
+
|
601
|
+
**Merged pull requests:**
|
602
|
+
|
603
|
+
- \(BKR-1164\) Add ubuntu to the platform list in remove\_puppet\_on [\#11](https://github.com/voxpupuli/beaker-puppet/pull/11) ([ScottGarman](https://github.com/ScottGarman))
|
604
|
+
|
605
|
+
## [0.3.0](https://github.com/voxpupuli/beaker-puppet/tree/0.3.0) (2017-07-17)
|
606
|
+
|
607
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.2.0...0.3.0)
|
608
|
+
|
609
|
+
**Merged pull requests:**
|
610
|
+
|
611
|
+
- \(BKR-1159\) Reset opts in install\_puppet\_agent\_dev\_repo\_on [\#10](https://github.com/voxpupuli/beaker-puppet/pull/10) ([johnduarte](https://github.com/johnduarte))
|
612
|
+
|
613
|
+
## [0.2.0](https://github.com/voxpupuli/beaker-puppet/tree/0.2.0) (2017-06-28)
|
614
|
+
|
615
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/0.1.0...0.2.0)
|
616
|
+
|
617
|
+
**Merged pull requests:**
|
618
|
+
|
619
|
+
- \(BKR-1147\) Fail to pkg install on ec2 for dev-repo [\#7](https://github.com/voxpupuli/beaker-puppet/pull/7) ([johnduarte](https://github.com/johnduarte))
|
620
|
+
- \(BKR-895\) add missing install\_utils tests [\#5](https://github.com/voxpupuli/beaker-puppet/pull/5) ([kevpl](https://github.com/kevpl))
|
621
|
+
|
622
|
+
## [0.1.0](https://github.com/voxpupuli/beaker-puppet/tree/0.1.0) (2017-06-16)
|
623
|
+
|
624
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/3878c13311bf5ddcda043f5c23cb1354614a997a...0.1.0)
|
625
|
+
|
626
|
+
**Merged pull requests:**
|
627
|
+
|
628
|
+
- \(MAINT\) fix coverage env-var name [\#4](https://github.com/voxpupuli/beaker-puppet/pull/4) ([kevpl](https://github.com/kevpl))
|
629
|
+
- \(MAINT\) improve README description [\#3](https://github.com/voxpupuli/beaker-puppet/pull/3) ([kevpl](https://github.com/kevpl))
|
630
|
+
- \(MAINT\) fix DSL inclusion [\#2](https://github.com/voxpupuli/beaker-puppet/pull/2) ([kevpl](https://github.com/kevpl))
|
631
|
+
|
632
|
+
|
633
|
+
|
634
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|