onceover 3.22.0 → 5.0.0
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 +4 -4
- data/.github/dependabot.yml +17 -0
- data/.github/workflows/release.yaml +98 -16
- data/.github/workflows/tests.yaml +31 -7
- data/.gitignore +2 -1
- data/.rubocop.yml +10 -702
- data/.rubocop_todo.yml +777 -0
- data/CHANGELOG.md +1057 -0
- data/Gemfile +8 -4
- data/LICENSE +202 -0
- data/README.md +83 -37
- data/Rakefile +26 -14
- data/features/auto_vendored.feature +27 -0
- data/features/step_definitions/common.rb +5 -5
- data/features/support/cache_helper.rb +0 -1
- data/features/support/command_helper.rb +0 -2
- data/features/support/controlrepo_helper.rb +0 -2
- data/features/zzz_run.feature +1 -1
- data/lib/onceover/beaker/spec_helper.rb +7 -7
- data/lib/onceover/beaker.rb +9 -12
- data/lib/onceover/cli/run.rb +1 -0
- data/lib/onceover/controlrepo.rb +19 -24
- data/lib/onceover/deploy.rb +29 -2
- data/lib/onceover/group.rb +1 -3
- data/lib/onceover/logger.rb +3 -3
- data/lib/onceover/node.rb +0 -2
- data/lib/onceover/rake_tasks.rb +10 -4
- data/lib/onceover/rspec/formatters.rb +6 -5
- data/lib/onceover/runner.rb +3 -3
- data/lib/onceover/test.rb +1 -2
- data/lib/onceover/testconfig.rb +2 -2
- data/lib/onceover/vendored_modules.rb +186 -0
- data/onceover.gemspec +23 -21
- data/spec/fixtures/controlrepos/caching/spec/factsets/README.md +1 -1
- data/spec/fixtures/controlrepos/caching/spec/pre_conditions/README.md +1 -1
- data/spec/fixtures/controlrepos/factsets/spec/factsets/README.md +1 -1
- data/spec/fixtures/controlrepos/puppet_controlrepo/Gemfile +2 -2
- data/spec/fixtures/controlrepos/puppet_controlrepo/Rakefile +1 -1
- data/spec/fixtures/controlrepos/vendored/Puppetfile +3 -0
- data/spec/fixtures/controlrepos/vendored/Puppetfile.cron +5 -0
- data/spec/fixtures/controlrepos/vendored/environment.conf +1 -0
- data/spec/fixtures/controlrepos/vendored/site-modules/role/manifests/cron.pp +9 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/augeas_core-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/augeas_core-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/cron_core-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/cron_core-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/host_core-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/host_core-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/mount_core-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/mount_core-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/repo_tree-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/repo_tree-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/scheduled_task-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/scheduled_task-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/selinux_core-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/selinux_core-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/sshkeys_core-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/sshkeys_core-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/yumrepo_core-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/yumrepo_core-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/zfs_core-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/zfs_core-puppet_agent-8.6.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/zone_core-puppet_agent-7.30.0.json +1 -0
- data/spec/fixtures/controlrepos/vendored/spec/vendored_modules/zone_core-puppet_agent-8.6.0.json +1 -0
- data/spec/onceover/controlrepo_spec.rb +1 -1
- data/templates/factsets_README.md.erb +5 -2
- data/templates/pre_conditions_README.md.erb +1 -1
- data/templates/spec_helper.rb.erb +0 -1
- data/templates/testconfig_Rakefile.erb +2 -2
- metadata +111 -81
data/CHANGELOG.md
ADDED
@@ -0,0 +1,1057 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v5.0.0](https://github.com/voxpupuli/onceover/tree/v5.0.0) (2025-06-27)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v4.0.0...v5.0.0)
|
6
|
+
|
7
|
+
**Breaking changes:**
|
8
|
+
|
9
|
+
- Update: switch to openvox gem, remove puppetlabs\_spec\_helper gem, update gem dependencies, require Ruby 3.2+ [\#354](https://github.com/voxpupuli/onceover/pull/354) ([rwaffen](https://github.com/rwaffen))
|
10
|
+
|
11
|
+
**Implemented enhancements:**
|
12
|
+
|
13
|
+
- Add ARM runner to CI [\#347](https://github.com/voxpupuli/onceover/pull/347) ([bastelfreak](https://github.com/bastelfreak))
|
14
|
+
|
15
|
+
**Closed issues:**
|
16
|
+
|
17
|
+
- be more clear where/how to generate factssets [\#351](https://github.com/voxpupuli/onceover/issues/351)
|
18
|
+
|
19
|
+
**Merged pull requests:**
|
20
|
+
|
21
|
+
- docs: add info about trusted facts/data to README.md of factsets dir [\#352](https://github.com/voxpupuli/onceover/pull/352) ([rwaffen](https://github.com/rwaffen))
|
22
|
+
- Fix example on how to pull facts from puppetdb [\#345](https://github.com/voxpupuli/onceover/pull/345) ([tuxmea](https://github.com/tuxmea))
|
23
|
+
|
24
|
+
## [v4.0.0](https://github.com/voxpupuli/onceover/tree/v4.0.0) (2024-11-21)
|
25
|
+
|
26
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.22.0...v4.0.0)
|
27
|
+
|
28
|
+
**Breaking changes:**
|
29
|
+
|
30
|
+
- Require Ruby 2.7 & rubocop: Use voxpupuli-rubocop [\#342](https://github.com/voxpupuli/onceover/pull/342) ([bastelfreak](https://github.com/bastelfreak))
|
31
|
+
|
32
|
+
**Implemented enhancements:**
|
33
|
+
|
34
|
+
- rubocop: autofix [\#343](https://github.com/voxpupuli/onceover/pull/343) ([bastelfreak](https://github.com/bastelfreak))
|
35
|
+
- Add support to create symlinks [\#337](https://github.com/voxpupuli/onceover/pull/337) ([pkazi](https://github.com/pkazi))
|
36
|
+
- Add support for downloading \*\_core modules [\#335](https://github.com/voxpupuli/onceover/pull/335) ([garrettrowell](https://github.com/garrettrowell))
|
37
|
+
|
38
|
+
**Fixed bugs:**
|
39
|
+
|
40
|
+
- add rexml gem to fix chocolatey tests [\#339](https://github.com/voxpupuli/onceover/pull/339) ([bastelfreak](https://github.com/bastelfreak))
|
41
|
+
|
42
|
+
**Merged pull requests:**
|
43
|
+
|
44
|
+
- CI: Apply Vox Pupuli best practices [\#341](https://github.com/voxpupuli/onceover/pull/341) ([bastelfreak](https://github.com/bastelfreak))
|
45
|
+
- dependabot: check for github actions and bundler [\#338](https://github.com/voxpupuli/onceover/pull/338) ([bastelfreak](https://github.com/bastelfreak))
|
46
|
+
- Adapt to Voxpupuli [\#336](https://github.com/voxpupuli/onceover/pull/336) ([rwaffen](https://github.com/rwaffen))
|
47
|
+
- \(maint\) - fix rubocop [\#334](https://github.com/voxpupuli/onceover/pull/334) ([garrettrowell](https://github.com/garrettrowell))
|
48
|
+
|
49
|
+
## [v3.22.0](https://github.com/voxpupuli/onceover/tree/v3.22.0) (2024-03-16)
|
50
|
+
|
51
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.21.0...v3.22.0)
|
52
|
+
|
53
|
+
**Closed issues:**
|
54
|
+
|
55
|
+
- Trusted certname uses local trusted certname [\#289](https://github.com/voxpupuli/onceover/issues/289)
|
56
|
+
|
57
|
+
**Merged pull requests:**
|
58
|
+
|
59
|
+
- Ruby updates [\#332](https://github.com/voxpupuli/onceover/pull/332) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
60
|
+
- Allow resolution of trusted\[certname\] from factset rather than localhost [\#327](https://github.com/voxpupuli/onceover/pull/327) ([chambersmp](https://github.com/chambersmp))
|
61
|
+
|
62
|
+
## [v3.21.0](https://github.com/voxpupuli/onceover/tree/v3.21.0) (2023-06-17)
|
63
|
+
|
64
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.20.0...v3.21.0)
|
65
|
+
|
66
|
+
**Closed issues:**
|
67
|
+
|
68
|
+
- Onceover generated spec directory copies empty files [\#320](https://github.com/voxpupuli/onceover/issues/320)
|
69
|
+
- Support Ruby 3 [\#316](https://github.com/voxpupuli/onceover/issues/316)
|
70
|
+
- does node\_groups key accept regular expressions [\#312](https://github.com/voxpupuli/onceover/issues/312)
|
71
|
+
- Error uninitialized constant RSpec::Puppet::Win32::Registry::Error running on linux env [\#287](https://github.com/voxpupuli/onceover/issues/287)
|
72
|
+
|
73
|
+
**Merged pull requests:**
|
74
|
+
|
75
|
+
- Onceover show Puppetfile - Add versionomy support for DSC module version format [\#328](https://github.com/voxpupuli/onceover/pull/328) ([chambersmp](https://github.com/chambersmp))
|
76
|
+
- Fix onceover with modern Ruby [\#326](https://github.com/voxpupuli/onceover/pull/326) ([smortex](https://github.com/smortex))
|
77
|
+
- Add `onceover run spec --fail_fast` option [\#318](https://github.com/voxpupuli/onceover/pull/318) ([neomilium](https://github.com/neomilium))
|
78
|
+
- Fixed naming [\#314](https://github.com/voxpupuli/onceover/pull/314) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
79
|
+
- Fix typo [\#313](https://github.com/voxpupuli/onceover/pull/313) ([DavidS](https://github.com/DavidS))
|
80
|
+
|
81
|
+
## [v3.20.0](https://github.com/voxpupuli/onceover/tree/v3.20.0) (2021-04-07)
|
82
|
+
|
83
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.19.2...v3.20.0)
|
84
|
+
|
85
|
+
**Merged pull requests:**
|
86
|
+
|
87
|
+
- Improve handling of trusted fact hash [\#309](https://github.com/voxpupuli/onceover/pull/309) ([garrettrowell](https://github.com/garrettrowell))
|
88
|
+
|
89
|
+
## [v3.19.2](https://github.com/voxpupuli/onceover/tree/v3.19.2) (2021-03-17)
|
90
|
+
|
91
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.19.1...v3.19.2)
|
92
|
+
|
93
|
+
**Fixed bugs:**
|
94
|
+
|
95
|
+
- Facter changes break Onceover [\#307](https://github.com/voxpupuli/onceover/issues/307)
|
96
|
+
|
97
|
+
**Closed issues:**
|
98
|
+
|
99
|
+
- According to README, default value for `manifest` option is nil [\#292](https://github.com/voxpupuli/onceover/issues/292)
|
100
|
+
|
101
|
+
**Merged pull requests:**
|
102
|
+
|
103
|
+
- Adapted for Facter 4 factsets [\#308](https://github.com/voxpupuli/onceover/pull/308) ([genebean](https://github.com/genebean))
|
104
|
+
|
105
|
+
## [v3.19.1](https://github.com/voxpupuli/onceover/tree/v3.19.1) (2021-01-26)
|
106
|
+
|
107
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.19.0...v3.19.1)
|
108
|
+
|
109
|
+
**Closed issues:**
|
110
|
+
|
111
|
+
- Could not autoload puppet/provider/acl/windows: cannot load such file -- win32/security [\#300](https://github.com/voxpupuli/onceover/issues/300)
|
112
|
+
- No such file or directory error when running on Windows [\#299](https://github.com/voxpupuli/onceover/issues/299)
|
113
|
+
- Facter 4 gem breaks things [\#258](https://github.com/voxpupuli/onceover/issues/258)
|
114
|
+
|
115
|
+
**Merged pull requests:**
|
116
|
+
|
117
|
+
- Gem and testing cleanup [\#303](https://github.com/voxpupuli/onceover/pull/303) ([genebean](https://github.com/genebean))
|
118
|
+
- Revert manifest setting default to nil [\#302](https://github.com/voxpupuli/onceover/pull/302) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
119
|
+
- Fix windows tests [\#301](https://github.com/voxpupuli/onceover/pull/301) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
120
|
+
- Add factsets for recent CentOS, Debian, & Ubuntu [\#297](https://github.com/voxpupuli/onceover/pull/297) ([djschaap](https://github.com/djschaap))
|
121
|
+
- Move to GitHub Actions for testing [\#296](https://github.com/voxpupuli/onceover/pull/296) ([genebean](https://github.com/genebean))
|
122
|
+
- Allow Facter 4 [\#294](https://github.com/voxpupuli/onceover/pull/294) ([genebean](https://github.com/genebean))
|
123
|
+
|
124
|
+
## [v3.19.0](https://github.com/voxpupuli/onceover/tree/v3.19.0) (2020-11-10)
|
125
|
+
|
126
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.18.1...v3.19.0)
|
127
|
+
|
128
|
+
**Fixed bugs:**
|
129
|
+
|
130
|
+
- control\_branch support broken [\#282](https://github.com/voxpupuli/onceover/issues/282)
|
131
|
+
|
132
|
+
**Closed issues:**
|
133
|
+
|
134
|
+
- is there a way to execute only r10k step when running onceover [\#286](https://github.com/voxpupuli/onceover/issues/286)
|
135
|
+
|
136
|
+
**Merged pull requests:**
|
137
|
+
|
138
|
+
- Fix and document :manifest opt [\#290](https://github.com/voxpupuli/onceover/pull/290) ([op-ct](https://github.com/op-ct))
|
139
|
+
- Added chocolatey tests [\#288](https://github.com/voxpupuli/onceover/pull/288) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
140
|
+
- Fix `:control_branch` support [\#283](https://github.com/voxpupuli/onceover/pull/283) ([alexjfisher](https://github.com/alexjfisher))
|
141
|
+
- Add missing `require 'io/console'` [\#280](https://github.com/voxpupuli/onceover/pull/280) ([alexjfisher](https://github.com/alexjfisher))
|
142
|
+
- Readme improvements [\#275](https://github.com/voxpupuli/onceover/pull/275) ([neomilium](https://github.com/neomilium))
|
143
|
+
|
144
|
+
## [v3.18.1](https://github.com/voxpupuli/onceover/tree/v3.18.1) (2020-09-23)
|
145
|
+
|
146
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.18.0...v3.18.1)
|
147
|
+
|
148
|
+
**Merged pull requests:**
|
149
|
+
|
150
|
+
- StandardError-patch-chrisl [\#281](https://github.com/voxpupuli/onceover/pull/281) ([chrislorro](https://github.com/chrislorro))
|
151
|
+
|
152
|
+
## [v3.18.0](https://github.com/voxpupuli/onceover/tree/v3.18.0) (2020-07-29)
|
153
|
+
|
154
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.17.3...v3.18.0)
|
155
|
+
|
156
|
+
**Merged pull requests:**
|
157
|
+
|
158
|
+
- Support spec files selection before running tests [\#262](https://github.com/voxpupuli/onceover/pull/262) ([neomilium](https://github.com/neomilium))
|
159
|
+
|
160
|
+
## [v3.17.3](https://github.com/voxpupuli/onceover/tree/v3.17.3) (2020-07-17)
|
161
|
+
|
162
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.17.2...v3.17.3)
|
163
|
+
|
164
|
+
**Merged pull requests:**
|
165
|
+
|
166
|
+
- Add choco\_install\_path fact to Windows factsets. [\#274](https://github.com/voxpupuli/onceover/pull/274) ([16c7x](https://github.com/16c7x))
|
167
|
+
|
168
|
+
## [v3.17.2](https://github.com/voxpupuli/onceover/tree/v3.17.2) (2020-07-08)
|
169
|
+
|
170
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.17.1...v3.17.2)
|
171
|
+
|
172
|
+
**Fixed bugs:**
|
173
|
+
|
174
|
+
- show puppetfile subcommand table formatting is not aligned [\#182](https://github.com/voxpupuli/onceover/issues/182)
|
175
|
+
|
176
|
+
**Merged pull requests:**
|
177
|
+
|
178
|
+
- Improve show puppetfile [\#273](https://github.com/voxpupuli/onceover/pull/273) ([smortex](https://github.com/smortex))
|
179
|
+
|
180
|
+
## [v3.17.1](https://github.com/voxpupuli/onceover/tree/v3.17.1) (2020-07-01)
|
181
|
+
|
182
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.17.0...v3.17.1)
|
183
|
+
|
184
|
+
**Fixed bugs:**
|
185
|
+
|
186
|
+
- undefined method name\_to\_principal when using DSC [\#269](https://github.com/voxpupuli/onceover/issues/269)
|
187
|
+
|
188
|
+
**Merged pull requests:**
|
189
|
+
|
190
|
+
- More Windows mocking!!! [\#272](https://github.com/voxpupuli/onceover/pull/272) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
191
|
+
- Renamed role [\#271](https://github.com/voxpupuli/onceover/pull/271) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
192
|
+
- Acl [\#268](https://github.com/voxpupuli/onceover/pull/268) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
193
|
+
|
194
|
+
## [v3.17.0](https://github.com/voxpupuli/onceover/tree/v3.17.0) (2020-05-04)
|
195
|
+
|
196
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.16.0...v3.17.0)
|
197
|
+
|
198
|
+
**Closed issues:**
|
199
|
+
|
200
|
+
- FYI - speedup `r10k puppetfile install` with g10k [\#234](https://github.com/voxpupuli/onceover/issues/234)
|
201
|
+
|
202
|
+
**Merged pull requests:**
|
203
|
+
|
204
|
+
- new factset: ubuntu 18.04 64 bit [\#264](https://github.com/voxpupuli/onceover/pull/264) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
205
|
+
- \[docs\] Document r10k and git [\#263](https://github.com/voxpupuli/onceover/pull/263) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
206
|
+
- Fixed controlrepo reference \(Fixes \#244\) [\#253](https://github.com/voxpupuli/onceover/pull/253) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
207
|
+
|
208
|
+
## [v3.16.0](https://github.com/voxpupuli/onceover/tree/v3.16.0) (2020-04-21)
|
209
|
+
|
210
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.15.2...v3.16.0)
|
211
|
+
|
212
|
+
**Closed issues:**
|
213
|
+
|
214
|
+
- How to only run onceover tests but not other rspec tests? [\#261](https://github.com/voxpupuli/onceover/issues/261)
|
215
|
+
- "Unknown resource type" for some puppet built-in resources [\#260](https://github.com/voxpupuli/onceover/issues/260)
|
216
|
+
|
217
|
+
**Merged pull requests:**
|
218
|
+
|
219
|
+
- Added support for r10k config files [\#226](https://github.com/voxpupuli/onceover/pull/226) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
220
|
+
|
221
|
+
## [v3.15.2](https://github.com/voxpupuli/onceover/tree/v3.15.2) (2020-03-20)
|
222
|
+
|
223
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.15.1...v3.15.2)
|
224
|
+
|
225
|
+
**Merged pull requests:**
|
226
|
+
|
227
|
+
- Pin to pre-facter 4 [\#259](https://github.com/voxpupuli/onceover/pull/259) ([genebean](https://github.com/genebean))
|
228
|
+
|
229
|
+
## [v3.15.1](https://github.com/voxpupuli/onceover/tree/v3.15.1) (2020-03-10)
|
230
|
+
|
231
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.15.0...v3.15.1)
|
232
|
+
|
233
|
+
**Closed issues:**
|
234
|
+
|
235
|
+
- NoMethodError: undefined method `each' for :defaults:Symbol [\#255](https://github.com/voxpupuli/onceover/issues/255)
|
236
|
+
- \[DOC\] errant reference to controlrepo gem [\#244](https://github.com/voxpupuli/onceover/issues/244)
|
237
|
+
|
238
|
+
**Merged pull requests:**
|
239
|
+
|
240
|
+
- Fix compatibility with newer versions of `cri` [\#256](https://github.com/voxpupuli/onceover/pull/256) ([alexjfisher](https://github.com/alexjfisher))
|
241
|
+
|
242
|
+
## [v3.15.0](https://github.com/voxpupuli/onceover/tree/v3.15.0) (2019-10-19)
|
243
|
+
|
244
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.14.1...v3.15.0)
|
245
|
+
|
246
|
+
**Closed issues:**
|
247
|
+
|
248
|
+
- Remove Litmus and use Bolt directly [\#239](https://github.com/voxpupuli/onceover/issues/239)
|
249
|
+
- Allow creation/destruction of litmus nodes [\#237](https://github.com/voxpupuli/onceover/issues/237)
|
250
|
+
- Implement less-than-MVP acceptance testing functionality [\#220](https://github.com/voxpupuli/onceover/issues/220)
|
251
|
+
- Move from mocha to rspec-mocks [\#210](https://github.com/voxpupuli/onceover/issues/210)
|
252
|
+
|
253
|
+
**Merged pull requests:**
|
254
|
+
|
255
|
+
- Move from mocha to rspec-mocks [\#252](https://github.com/voxpupuli/onceover/pull/252) ([op-ct](https://github.com/op-ct))
|
256
|
+
|
257
|
+
## [v3.14.1](https://github.com/voxpupuli/onceover/tree/v3.14.1) (2019-06-19)
|
258
|
+
|
259
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.14.0...v3.14.1)
|
260
|
+
|
261
|
+
**Merged pull requests:**
|
262
|
+
|
263
|
+
- Added handling of bad execs [\#236](https://github.com/voxpupuli/onceover/pull/236) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
264
|
+
|
265
|
+
## [v3.14.0](https://github.com/voxpupuli/onceover/tree/v3.14.0) (2019-06-19)
|
266
|
+
|
267
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.13.4...v3.14.0)
|
268
|
+
|
269
|
+
**Implemented enhancements:**
|
270
|
+
|
271
|
+
- Properly test on windows [\#46](https://github.com/voxpupuli/onceover/issues/46)
|
272
|
+
|
273
|
+
**Merged pull requests:**
|
274
|
+
|
275
|
+
- Moved from 'json' to 'multi\_json' [\#235](https://github.com/voxpupuli/onceover/pull/235) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
276
|
+
|
277
|
+
## [v3.13.4](https://github.com/voxpupuli/onceover/tree/v3.13.4) (2019-06-12)
|
278
|
+
|
279
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.13.3...v3.13.4)
|
280
|
+
|
281
|
+
**Fixed bugs:**
|
282
|
+
|
283
|
+
- New formatting doesn't expose factset [\#231](https://github.com/voxpupuli/onceover/issues/231)
|
284
|
+
|
285
|
+
**Merged pull requests:**
|
286
|
+
|
287
|
+
- Formatter factset [\#232](https://github.com/voxpupuli/onceover/pull/232) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
288
|
+
|
289
|
+
## [v3.13.3](https://github.com/voxpupuli/onceover/tree/v3.13.3) (2019-06-11)
|
290
|
+
|
291
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.13.2...v3.13.3)
|
292
|
+
|
293
|
+
**Fixed bugs:**
|
294
|
+
|
295
|
+
- precondition pp files not escaped correctly when put into rspec-puppet precondition heredoc [\#224](https://github.com/voxpupuli/onceover/issues/224)
|
296
|
+
- A Puppetfile should not be a requirement [\#223](https://github.com/voxpupuli/onceover/issues/223)
|
297
|
+
|
298
|
+
**Closed issues:**
|
299
|
+
|
300
|
+
- environment set in factset causes problems [\#227](https://github.com/voxpupuli/onceover/issues/227)
|
301
|
+
|
302
|
+
**Merged pull requests:**
|
303
|
+
|
304
|
+
- Fixed escaping in pre\_conditions [\#230](https://github.com/voxpupuli/onceover/pull/230) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
305
|
+
- Added handling for environment fact [\#229](https://github.com/voxpupuli/onceover/pull/229) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
306
|
+
- Added the ability to handle missing Puppetfile [\#228](https://github.com/voxpupuli/onceover/pull/228) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
307
|
+
- Add `vendor` to `excluded_dirs` [\#225](https://github.com/voxpupuli/onceover/pull/225) ([alexjfisher](https://github.com/alexjfisher))
|
308
|
+
|
309
|
+
## [v3.13.2](https://github.com/voxpupuli/onceover/tree/v3.13.2) (2019-06-04)
|
310
|
+
|
311
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.13.1...v3.13.2)
|
312
|
+
|
313
|
+
## [v3.13.1](https://github.com/voxpupuli/onceover/tree/v3.13.1) (2019-06-04)
|
314
|
+
|
315
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.13.0...v3.13.1)
|
316
|
+
|
317
|
+
**Merged pull requests:**
|
318
|
+
|
319
|
+
- Added ability to hand `=` in environment.conf and worked around CRI issue [\#222](https://github.com/voxpupuli/onceover/pull/222) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
320
|
+
|
321
|
+
## [v3.13.0](https://github.com/voxpupuli/onceover/tree/v3.13.0) (2019-05-08)
|
322
|
+
|
323
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.12.5...v3.13.0)
|
324
|
+
|
325
|
+
**Implemented enhancements:**
|
326
|
+
|
327
|
+
- Create appveyor tests [\#195](https://github.com/voxpupuli/onceover/issues/195)
|
328
|
+
|
329
|
+
**Merged pull requests:**
|
330
|
+
|
331
|
+
- New factsets [\#219](https://github.com/voxpupuli/onceover/pull/219) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
332
|
+
|
333
|
+
## [v3.12.5](https://github.com/voxpupuli/onceover/tree/v3.12.5) (2019-04-09)
|
334
|
+
|
335
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.12.4...v3.12.5)
|
336
|
+
|
337
|
+
**Merged pull requests:**
|
338
|
+
|
339
|
+
- \(\#215\) Simplfy and speed up cache building [\#216](https://github.com/voxpupuli/onceover/pull/216) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
340
|
+
- Added appveyor config [\#214](https://github.com/voxpupuli/onceover/pull/214) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
341
|
+
|
342
|
+
## [v3.12.4](https://github.com/voxpupuli/onceover/tree/v3.12.4) (2019-04-03)
|
343
|
+
|
344
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.12.3...v3.12.4)
|
345
|
+
|
346
|
+
**Closed issues:**
|
347
|
+
|
348
|
+
- Bundler errors when running bundler \>2 [\#212](https://github.com/voxpupuli/onceover/issues/212)
|
349
|
+
- Unable to install onceover gem on windows due to symlink in r10k [\#204](https://github.com/voxpupuli/onceover/issues/204)
|
350
|
+
|
351
|
+
**Merged pull requests:**
|
352
|
+
|
353
|
+
- Fixed bundler error [\#213](https://github.com/voxpupuli/onceover/pull/213) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
354
|
+
|
355
|
+
## [v3.12.3](https://github.com/voxpupuli/onceover/tree/v3.12.3) (2019-03-27)
|
356
|
+
|
357
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.12.2...v3.12.3)
|
358
|
+
|
359
|
+
**Merged pull requests:**
|
360
|
+
|
361
|
+
- Added handling of ruby errors [\#209](https://github.com/voxpupuli/onceover/pull/209) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
362
|
+
|
363
|
+
## [v3.12.2](https://github.com/voxpupuli/onceover/tree/v3.12.2) (2019-03-21)
|
364
|
+
|
365
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.12.1...v3.12.2)
|
366
|
+
|
367
|
+
**Closed issues:**
|
368
|
+
|
369
|
+
- \#\<ArgumentError: invalid byte sequence in US-ASCII\> [\#207](https://github.com/voxpupuli/onceover/issues/207)
|
370
|
+
|
371
|
+
**Merged pull requests:**
|
372
|
+
|
373
|
+
- Skip over invalid character errors parsing some puppet code [\#208](https://github.com/voxpupuli/onceover/pull/208) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
374
|
+
|
375
|
+
## [v3.12.1](https://github.com/voxpupuli/onceover/tree/v3.12.1) (2019-03-17)
|
376
|
+
|
377
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.12.0...v3.12.1)
|
378
|
+
|
379
|
+
**Merged pull requests:**
|
380
|
+
|
381
|
+
- Parallel formatting [\#206](https://github.com/voxpupuli/onceover/pull/206) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
382
|
+
|
383
|
+
## [v3.12.0](https://github.com/voxpupuli/onceover/tree/v3.12.0) (2019-03-16)
|
384
|
+
|
385
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.11.1...v3.12.0)
|
386
|
+
|
387
|
+
**Merged pull requests:**
|
388
|
+
|
389
|
+
- Improved Formatting [\#205](https://github.com/voxpupuli/onceover/pull/205) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
390
|
+
- Do not strip newline at the end of the Puppetfile [\#203](https://github.com/voxpupuli/onceover/pull/203) ([smortex](https://github.com/smortex))
|
391
|
+
|
392
|
+
## [v3.11.1](https://github.com/voxpupuli/onceover/tree/v3.11.1) (2019-02-26)
|
393
|
+
|
394
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.11.0...v3.11.1)
|
395
|
+
|
396
|
+
**Merged pull requests:**
|
397
|
+
|
398
|
+
- Fix exit code [\#202](https://github.com/voxpupuli/onceover/pull/202) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
399
|
+
|
400
|
+
## [v3.11.0](https://github.com/voxpupuli/onceover/tree/v3.11.0) (2019-02-26)
|
401
|
+
|
402
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.10.2...v3.11.0)
|
403
|
+
|
404
|
+
**Merged pull requests:**
|
405
|
+
|
406
|
+
- Adding summarized output of failures [\#200](https://github.com/voxpupuli/onceover/pull/200) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
407
|
+
|
408
|
+
## [v3.10.2](https://github.com/voxpupuli/onceover/tree/v3.10.2) (2019-02-05)
|
409
|
+
|
410
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.10.1...v3.10.2)
|
411
|
+
|
412
|
+
## [v3.10.1](https://github.com/voxpupuli/onceover/tree/v3.10.1) (2019-02-05)
|
413
|
+
|
414
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.10.0...v3.10.1)
|
415
|
+
|
416
|
+
**Fixed bugs:**
|
417
|
+
|
418
|
+
- Doubled up results in output of 'run spec' [\#180](https://github.com/voxpupuli/onceover/issues/180)
|
419
|
+
|
420
|
+
## [v3.10.0](https://github.com/voxpupuli/onceover/tree/v3.10.0) (2019-02-05)
|
421
|
+
|
422
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.9.0...v3.10.0)
|
423
|
+
|
424
|
+
**Implemented enhancements:**
|
425
|
+
|
426
|
+
- `mock_with` deprecation warnings [\#174](https://github.com/voxpupuli/onceover/issues/174)
|
427
|
+
- .onceover directory sync problems [\#113](https://github.com/voxpupuli/onceover/issues/113)
|
428
|
+
|
429
|
+
**Fixed bugs:**
|
430
|
+
|
431
|
+
- Onceover seems to fail mocking functions that include `::` [\#197](https://github.com/voxpupuli/onceover/issues/197)
|
432
|
+
|
433
|
+
**Closed issues:**
|
434
|
+
|
435
|
+
- Onceover 3.9.0 character type issue [\#196](https://github.com/voxpupuli/onceover/issues/196)
|
436
|
+
- Remove acceptance testing from README [\#186](https://github.com/voxpupuli/onceover/issues/186)
|
437
|
+
- Code Coverage Reports [\#184](https://github.com/voxpupuli/onceover/issues/184)
|
438
|
+
|
439
|
+
**Merged pull requests:**
|
440
|
+
|
441
|
+
- Modify how function mocking works [\#198](https://github.com/voxpupuli/onceover/pull/198) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
442
|
+
|
443
|
+
## [v3.9.0](https://github.com/voxpupuli/onceover/tree/v3.9.0) (2018-12-24)
|
444
|
+
|
445
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.8.0...v3.9.0)
|
446
|
+
|
447
|
+
**Implemented enhancements:**
|
448
|
+
|
449
|
+
- \[feature\] hiera debugging/puppet lookup support [\#114](https://github.com/voxpupuli/onceover/issues/114)
|
450
|
+
- \[feature\] support for regenerating/updating tests [\#61](https://github.com/voxpupuli/onceover/issues/61)
|
451
|
+
|
452
|
+
**Fixed bugs:**
|
453
|
+
|
454
|
+
- File resource on Windows "File paths must be fully qualified, not 'c:/foo/bar' at ... " [\#59](https://github.com/voxpupuli/onceover/issues/59)
|
455
|
+
|
456
|
+
**Closed issues:**
|
457
|
+
|
458
|
+
- Run tests against puppet 5? [\#188](https://github.com/voxpupuli/onceover/issues/188)
|
459
|
+
- undefined method `on_supported_os` [\#175](https://github.com/voxpupuli/onceover/issues/175)
|
460
|
+
- Onceover run spec ignores node names in factsets [\#168](https://github.com/voxpupuli/onceover/issues/168)
|
461
|
+
- Onceover.yaml support for r10k credentials? [\#166](https://github.com/voxpupuli/onceover/issues/166)
|
462
|
+
|
463
|
+
**Merged pull requests:**
|
464
|
+
|
465
|
+
- Updated ruby versions and controlrepo [\#194](https://github.com/voxpupuli/onceover/pull/194) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
466
|
+
- remove all mention of acceptance testing/beaker [\#193](https://github.com/voxpupuli/onceover/pull/193) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
467
|
+
- \(\#86\) Support regex in R10K downloaded modules [\#192](https://github.com/voxpupuli/onceover/pull/192) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
468
|
+
- factset for windows 10 [\#191](https://github.com/voxpupuli/onceover/pull/191) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
469
|
+
- fix spelling: weather vs. whether [\#179](https://github.com/voxpupuli/onceover/pull/179) ([tequeter](https://github.com/tequeter))
|
470
|
+
|
471
|
+
## [v3.8.0](https://github.com/voxpupuli/onceover/tree/v3.8.0) (2018-09-05)
|
472
|
+
|
473
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.7.0...v3.8.0)
|
474
|
+
|
475
|
+
**Implemented enhancements:**
|
476
|
+
|
477
|
+
- Update README.md [\#177](https://github.com/voxpupuli/onceover/pull/177) ([beergeek](https://github.com/beergeek))
|
478
|
+
|
479
|
+
**Closed issues:**
|
480
|
+
|
481
|
+
- Difficulty with Hiera-eyaml, Factsets, and Automatic Class Parameters [\#171](https://github.com/voxpupuli/onceover/issues/171)
|
482
|
+
|
483
|
+
**Merged pull requests:**
|
484
|
+
|
485
|
+
- show puppetfile: Add endorsement and superseded\_by [\#178](https://github.com/voxpupuli/onceover/pull/178) ([raphink](https://github.com/raphink))
|
486
|
+
|
487
|
+
## [v3.7.0](https://github.com/voxpupuli/onceover/tree/v3.7.0) (2018-05-15)
|
488
|
+
|
489
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.6.2...v3.7.0)
|
490
|
+
|
491
|
+
**Merged pull requests:**
|
492
|
+
|
493
|
+
- Enabled trusted\_server\_facts [\#173](https://github.com/voxpupuli/onceover/pull/173) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
494
|
+
|
495
|
+
## [v3.6.2](https://github.com/voxpupuli/onceover/tree/v3.6.2) (2018-05-13)
|
496
|
+
|
497
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.6.1...v3.6.2)
|
498
|
+
|
499
|
+
**Merged pull requests:**
|
500
|
+
|
501
|
+
- Check Node/Classes hashes [\#172](https://github.com/voxpupuli/onceover/pull/172) ([beergeek](https://github.com/beergeek))
|
502
|
+
- \(GH-46\) Enable tests to be run on Windows [\#170](https://github.com/voxpupuli/onceover/pull/170) ([glennsarti](https://github.com/glennsarti))
|
503
|
+
|
504
|
+
## [v3.6.1](https://github.com/voxpupuli/onceover/tree/v3.6.1) (2018-04-05)
|
505
|
+
|
506
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.6.0...v3.6.1)
|
507
|
+
|
508
|
+
**Fixed bugs:**
|
509
|
+
|
510
|
+
- Path error on run spec [\#97](https://github.com/voxpupuli/onceover/issues/97)
|
511
|
+
|
512
|
+
**Merged pull requests:**
|
513
|
+
|
514
|
+
- Allow loading of symbols [\#169](https://github.com/voxpupuli/onceover/pull/169) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
515
|
+
- fix fixtures\_symlinks on Windows default tempdir [\#167](https://github.com/voxpupuli/onceover/pull/167) ([tabakhase](https://github.com/tabakhase))
|
516
|
+
|
517
|
+
## [v3.6.0](https://github.com/voxpupuli/onceover/tree/v3.6.0) (2018-03-27)
|
518
|
+
|
519
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.5.2...v3.6.0)
|
520
|
+
|
521
|
+
**Implemented enhancements:**
|
522
|
+
|
523
|
+
- Add trusted facts support [\#151](https://github.com/voxpupuli/onceover/issues/151)
|
524
|
+
|
525
|
+
**Merged pull requests:**
|
526
|
+
|
527
|
+
- Add trusted facts support [\#163](https://github.com/voxpupuli/onceover/pull/163) ([LMacchi](https://github.com/LMacchi))
|
528
|
+
|
529
|
+
## [v3.5.2](https://github.com/voxpupuli/onceover/tree/v3.5.2) (2018-03-15)
|
530
|
+
|
531
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.5.1...v3.5.2)
|
532
|
+
|
533
|
+
**Merged pull requests:**
|
534
|
+
|
535
|
+
- Skip copy of r10k modules directory. [\#162](https://github.com/voxpupuli/onceover/pull/162) ([mikkergimenez](https://github.com/mikkergimenez))
|
536
|
+
|
537
|
+
## [v3.5.1](https://github.com/voxpupuli/onceover/tree/v3.5.1) (2018-03-08)
|
538
|
+
|
539
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.5.0...v3.5.1)
|
540
|
+
|
541
|
+
**Fixed bugs:**
|
542
|
+
|
543
|
+
- Mocked functions that return strings can cause errors [\#159](https://github.com/voxpupuli/onceover/issues/159)
|
544
|
+
|
545
|
+
**Closed issues:**
|
546
|
+
|
547
|
+
- Puppet gem v5.3.4 breaks spec tests [\#152](https://github.com/voxpupuli/onceover/issues/152)
|
548
|
+
|
549
|
+
**Merged pull requests:**
|
550
|
+
|
551
|
+
- Fix function mocking [\#160](https://github.com/voxpupuli/onceover/pull/160) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
552
|
+
|
553
|
+
## [v3.5.0](https://github.com/voxpupuli/onceover/tree/v3.5.0) (2018-03-06)
|
554
|
+
|
555
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.4.0...v3.5.0)
|
556
|
+
|
557
|
+
**Merged pull requests:**
|
558
|
+
|
559
|
+
- Added new force param [\#158](https://github.com/voxpupuli/onceover/pull/158) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
560
|
+
- Add functionality to allow custom templates in control repo, this all… [\#157](https://github.com/voxpupuli/onceover/pull/157) ([mikkergimenez](https://github.com/mikkergimenez))
|
561
|
+
|
562
|
+
## [v3.4.0](https://github.com/voxpupuli/onceover/tree/v3.4.0) (2018-02-27)
|
563
|
+
|
564
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.3.3...v3.4.0)
|
565
|
+
|
566
|
+
**Merged pull requests:**
|
567
|
+
|
568
|
+
- Add before and after :each blocks [\#155](https://github.com/voxpupuli/onceover/pull/155) ([LMacchi](https://github.com/LMacchi))
|
569
|
+
|
570
|
+
## [v3.3.3](https://github.com/voxpupuli/onceover/tree/v3.3.3) (2018-02-26)
|
571
|
+
|
572
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.3.2...v3.3.3)
|
573
|
+
|
574
|
+
**Implemented enhancements:**
|
575
|
+
|
576
|
+
- Tags should be implemented in native Rspec [\#83](https://github.com/voxpupuli/onceover/issues/83)
|
577
|
+
|
578
|
+
**Fixed bugs:**
|
579
|
+
|
580
|
+
- On non-initial spec runs, temporary control repo copied inside existing control repo rather than replacing it. [\#154](https://github.com/voxpupuli/onceover/issues/154)
|
581
|
+
- Autogenerated spec tests don't work for certain factsets [\#105](https://github.com/voxpupuli/onceover/issues/105)
|
582
|
+
- Trouble using traditional Rspec tests with factsets [\#81](https://github.com/voxpupuli/onceover/issues/81)
|
583
|
+
|
584
|
+
**Closed issues:**
|
585
|
+
|
586
|
+
- Puppet conflicts with semantic\_puppet [\#153](https://github.com/voxpupuli/onceover/issues/153)
|
587
|
+
- Puppet fails to validate valid Windows paths running on Linux [\#109](https://github.com/voxpupuli/onceover/issues/109)
|
588
|
+
- Version 3.2.2 does not work out of the box with puppet version \< 5.0 [\#108](https://github.com/voxpupuli/onceover/issues/108)
|
589
|
+
- Onceover::Controlrepo.facts.each do processing too many files [\#103](https://github.com/voxpupuli/onceover/issues/103)
|
590
|
+
- Puppet not reading hiera correctly when running with onceover [\#98](https://github.com/voxpupuli/onceover/issues/98)
|
591
|
+
- Permission denied when running on server where r10k has run as root [\#96](https://github.com/voxpupuli/onceover/issues/96)
|
592
|
+
- \[question\] Are you plan to implement support for Librarian Puppet? [\#80](https://github.com/voxpupuli/onceover/issues/80)
|
593
|
+
- Permission denied error on file [\#67](https://github.com/voxpupuli/onceover/issues/67)
|
594
|
+
|
595
|
+
**Merged pull requests:**
|
596
|
+
|
597
|
+
- Fixed caching regression [\#156](https://github.com/voxpupuli/onceover/pull/156) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
598
|
+
- Made the hiera section more readable [\#149](https://github.com/voxpupuli/onceover/pull/149) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
599
|
+
|
600
|
+
## [v3.3.2](https://github.com/voxpupuli/onceover/tree/v3.3.2) (2018-01-15)
|
601
|
+
|
602
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.3.1...v3.3.2)
|
603
|
+
|
604
|
+
**Fixed bugs:**
|
605
|
+
|
606
|
+
- Templated .file removed at some point [\#115](https://github.com/voxpupuli/onceover/issues/115)
|
607
|
+
|
608
|
+
**Closed issues:**
|
609
|
+
|
610
|
+
- Doesn't work out-of-the-box with Puppet's ruby [\#147](https://github.com/voxpupuli/onceover/issues/147)
|
611
|
+
|
612
|
+
**Merged pull requests:**
|
613
|
+
|
614
|
+
- Improve cache handling [\#148](https://github.com/voxpupuli/onceover/pull/148) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
615
|
+
|
616
|
+
## [v3.3.1](https://github.com/voxpupuli/onceover/tree/v3.3.1) (2018-01-05)
|
617
|
+
|
618
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.3.0...v3.3.1)
|
619
|
+
|
620
|
+
**Closed issues:**
|
621
|
+
|
622
|
+
- Issue Running onceover on Windows 10 [\#143](https://github.com/voxpupuli/onceover/issues/143)
|
623
|
+
- --skip\_r10k causes tests to run against stale copy of control-repo [\#95](https://github.com/voxpupuli/onceover/issues/95)
|
624
|
+
|
625
|
+
**Merged pull requests:**
|
626
|
+
|
627
|
+
- Added workaround for windows delimiter [\#146](https://github.com/voxpupuli/onceover/pull/146) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
628
|
+
|
629
|
+
## [v3.3.0](https://github.com/voxpupuli/onceover/tree/v3.3.0) (2018-01-05)
|
630
|
+
|
631
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.2.8...v3.3.0)
|
632
|
+
|
633
|
+
**Merged pull requests:**
|
634
|
+
|
635
|
+
- Improve testing [\#145](https://github.com/voxpupuli/onceover/pull/145) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
636
|
+
- Add support for :control\_branch [\#144](https://github.com/voxpupuli/onceover/pull/144) ([Nekototori](https://github.com/Nekototori))
|
637
|
+
|
638
|
+
## [v3.2.8](https://github.com/voxpupuli/onceover/tree/v3.2.8) (2017-12-11)
|
639
|
+
|
640
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.2.7...v3.2.8)
|
641
|
+
|
642
|
+
**Merged pull requests:**
|
643
|
+
|
644
|
+
- Acceptance tests \(ready to merge\) [\#139](https://github.com/voxpupuli/onceover/pull/139) ([mandos](https://github.com/mandos))
|
645
|
+
- Plugin documentation update [\#137](https://github.com/voxpupuli/onceover/pull/137) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
646
|
+
|
647
|
+
## [v3.2.7](https://github.com/voxpupuli/onceover/tree/v3.2.7) (2017-10-04)
|
648
|
+
|
649
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.2.6...v3.2.7)
|
650
|
+
|
651
|
+
**Closed issues:**
|
652
|
+
|
653
|
+
- --puppetfile option ignored in latest version [\#140](https://github.com/voxpupuli/onceover/issues/140)
|
654
|
+
- run spec should stop if all modules cannot be retrieved [\#54](https://github.com/voxpupuli/onceover/issues/54)
|
655
|
+
|
656
|
+
**Merged pull requests:**
|
657
|
+
|
658
|
+
- restore the --puppetfile option [\#141](https://github.com/voxpupuli/onceover/pull/141) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
659
|
+
- Add acceptance tests for simple init scenario [\#138](https://github.com/voxpupuli/onceover/pull/138) ([mandos](https://github.com/mandos))
|
660
|
+
- Split rspec test to acceptance and unit tests [\#136](https://github.com/voxpupuli/onceover/pull/136) ([mandos](https://github.com/mandos))
|
661
|
+
|
662
|
+
## [v3.2.6](https://github.com/voxpupuli/onceover/tree/v3.2.6) (2017-09-12)
|
663
|
+
|
664
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.2.5...v3.2.6)
|
665
|
+
|
666
|
+
**Closed issues:**
|
667
|
+
|
668
|
+
- Revert change to hiera load order [\#131](https://github.com/voxpupuli/onceover/issues/131)
|
669
|
+
- Onceover needs its own acceptance tests [\#116](https://github.com/voxpupuli/onceover/issues/116)
|
670
|
+
|
671
|
+
**Merged pull requests:**
|
672
|
+
|
673
|
+
- Add simple cucumber tests to check help command [\#134](https://github.com/voxpupuli/onceover/pull/134) ([mandos](https://github.com/mandos))
|
674
|
+
- Reverted order for hiera loading [\#132](https://github.com/voxpupuli/onceover/pull/132) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
675
|
+
- only skip r10k when using --skip\_r10k [\#126](https://github.com/voxpupuli/onceover/pull/126) ([jessereynolds](https://github.com/jessereynolds))
|
676
|
+
- minimal refactor to aid readability [\#125](https://github.com/voxpupuli/onceover/pull/125) ([jessereynolds](https://github.com/jessereynolds))
|
677
|
+
- add submodule instructions [\#124](https://github.com/voxpupuli/onceover/pull/124) ([jessereynolds](https://github.com/jessereynolds))
|
678
|
+
- include ruby 2.4.0 in travis tests [\#123](https://github.com/voxpupuli/onceover/pull/123) ([jessereynolds](https://github.com/jessereynolds))
|
679
|
+
|
680
|
+
## [v3.2.5](https://github.com/voxpupuli/onceover/tree/v3.2.5) (2017-08-29)
|
681
|
+
|
682
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.2.4...v3.2.5)
|
683
|
+
|
684
|
+
**Closed issues:**
|
685
|
+
|
686
|
+
- private method `local_variables` [\#121](https://github.com/voxpupuli/onceover/issues/121)
|
687
|
+
- Onceover does not generate nodesets [\#120](https://github.com/voxpupuli/onceover/issues/120)
|
688
|
+
|
689
|
+
**Merged pull requests:**
|
690
|
+
|
691
|
+
- Fix Issue 121 [\#122](https://github.com/voxpupuli/onceover/pull/122) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
692
|
+
|
693
|
+
## [v3.2.4](https://github.com/voxpupuli/onceover/tree/v3.2.4) (2017-08-28)
|
694
|
+
|
695
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.2.3...v3.2.4)
|
696
|
+
|
697
|
+
**Implemented enhancements:**
|
698
|
+
|
699
|
+
- \[feature\] run syntax checks on control repo files [\#62](https://github.com/voxpupuli/onceover/issues/62)
|
700
|
+
|
701
|
+
**Closed issues:**
|
702
|
+
|
703
|
+
- Deprecation warnings for hiera functions are breaking all tests when hiera functions used [\#107](https://github.com/voxpupuli/onceover/issues/107)
|
704
|
+
- Uninformative error when hiera.yaml is missing [\#104](https://github.com/voxpupuli/onceover/issues/104)
|
705
|
+
|
706
|
+
**Merged pull requests:**
|
707
|
+
|
708
|
+
- Merge mandos pr [\#119](https://github.com/voxpupuli/onceover/pull/119) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
709
|
+
- Add travis [\#118](https://github.com/voxpupuli/onceover/pull/118) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
710
|
+
- Syntax and style tests [\#117](https://github.com/voxpupuli/onceover/pull/117) ([jessereynolds](https://github.com/jessereynolds))
|
711
|
+
|
712
|
+
## [v3.2.3](https://github.com/voxpupuli/onceover/tree/v3.2.3) (2017-08-07)
|
713
|
+
|
714
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.2.2...v3.2.3)
|
715
|
+
|
716
|
+
**Closed issues:**
|
717
|
+
|
718
|
+
- Error if hiera file is not present [\#111](https://github.com/voxpupuli/onceover/issues/111)
|
719
|
+
- fact "hostname" already has the maximum number of resolutions allowed [\#106](https://github.com/voxpupuli/onceover/issues/106)
|
720
|
+
|
721
|
+
**Merged pull requests:**
|
722
|
+
|
723
|
+
- Control `opts` from `onceover.yaml` [\#110](https://github.com/voxpupuli/onceover/pull/110) ([op-ct](https://github.com/op-ct))
|
724
|
+
|
725
|
+
## [v3.2.2](https://github.com/voxpupuli/onceover/tree/v3.2.2) (2017-07-13)
|
726
|
+
|
727
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.2.1...v3.2.2)
|
728
|
+
|
729
|
+
**Merged pull requests:**
|
730
|
+
|
731
|
+
- Added correct solution for \#100 [\#102](https://github.com/voxpupuli/onceover/pull/102) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
732
|
+
|
733
|
+
## [v3.2.1](https://github.com/voxpupuli/onceover/tree/v3.2.1) (2017-07-13)
|
734
|
+
|
735
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.2.0...v3.2.1)
|
736
|
+
|
737
|
+
**Implemented enhancements:**
|
738
|
+
|
739
|
+
- \[enhancemant\] built-in docker support [\#8](https://github.com/voxpupuli/onceover/issues/8)
|
740
|
+
|
741
|
+
**Closed issues:**
|
742
|
+
|
743
|
+
- Hiera 5 Support is bad [\#100](https://github.com/voxpupuli/onceover/issues/100)
|
744
|
+
- Onceover dies with a Hiera 5 [\#92](https://github.com/voxpupuli/onceover/issues/92)
|
745
|
+
|
746
|
+
**Merged pull requests:**
|
747
|
+
|
748
|
+
- \(\#100\) Changed hiera.yaml hierarchy [\#101](https://github.com/voxpupuli/onceover/pull/101) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
749
|
+
- Show puppet output [\#89](https://github.com/voxpupuli/onceover/pull/89) ([jessereynolds](https://github.com/jessereynolds))
|
750
|
+
|
751
|
+
## [v3.2.0](https://github.com/voxpupuli/onceover/tree/v3.2.0) (2017-03-13)
|
752
|
+
|
753
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.1.1...v3.2.0)
|
754
|
+
|
755
|
+
**Implemented enhancements:**
|
756
|
+
|
757
|
+
- \[enhancement\] consider making a build without beaker [\#71](https://github.com/voxpupuli/onceover/issues/71)
|
758
|
+
|
759
|
+
**Merged pull requests:**
|
760
|
+
|
761
|
+
- Added plugin framework [\#88](https://github.com/voxpupuli/onceover/pull/88) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
762
|
+
- Deprecated Beaker and removed dependency [\#87](https://github.com/voxpupuli/onceover/pull/87) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
763
|
+
- Support for SLES 11/12 [\#85](https://github.com/voxpupuli/onceover/pull/85) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
764
|
+
|
765
|
+
## [v3.1.1](https://github.com/voxpupuli/onceover/tree/v3.1.1) (2017-03-04)
|
766
|
+
|
767
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.1.0...v3.1.1)
|
768
|
+
|
769
|
+
**Implemented enhancements:**
|
770
|
+
|
771
|
+
- Add `onceover show puppetfile` to README [\#66](https://github.com/voxpupuli/onceover/issues/66)
|
772
|
+
- Runs before the final run should discount outcome [\#51](https://github.com/voxpupuli/onceover/issues/51)
|
773
|
+
|
774
|
+
**Merged pull requests:**
|
775
|
+
|
776
|
+
- Feature/performance [\#82](https://github.com/voxpupuli/onceover/pull/82) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
777
|
+
- Fixed \#66 [\#79](https://github.com/voxpupuli/onceover/pull/79) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
778
|
+
|
779
|
+
## [v3.1.0](https://github.com/voxpupuli/onceover/tree/v3.1.0) (2017-02-21)
|
780
|
+
|
781
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.11...v3.1.0)
|
782
|
+
|
783
|
+
**Merged pull requests:**
|
784
|
+
|
785
|
+
- Feature/regex support [\#78](https://github.com/voxpupuli/onceover/pull/78) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
786
|
+
- support for AIX 6.1 and 7.1 [\#76](https://github.com/voxpupuli/onceover/pull/76) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
787
|
+
- Further Doco [\#74](https://github.com/voxpupuli/onceover/pull/74) ([beergeek](https://github.com/beergeek))
|
788
|
+
|
789
|
+
## [v3.0.11](https://github.com/voxpupuli/onceover/tree/v3.0.11) (2017-01-19)
|
790
|
+
|
791
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.10...v3.0.11)
|
792
|
+
|
793
|
+
**Closed issues:**
|
794
|
+
|
795
|
+
- \[feature\] Puppetfile module substitution [\#72](https://github.com/voxpupuli/onceover/issues/72)
|
796
|
+
- test [\#70](https://github.com/voxpupuli/onceover/issues/70)
|
797
|
+
|
798
|
+
**Merged pull requests:**
|
799
|
+
|
800
|
+
- Fix small things [\#73](https://github.com/voxpupuli/onceover/pull/73) ([op-ct](https://github.com/op-ct))
|
801
|
+
|
802
|
+
## [v3.0.10](https://github.com/voxpupuli/onceover/tree/v3.0.10) (2016-12-14)
|
803
|
+
|
804
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.9...v3.0.10)
|
805
|
+
|
806
|
+
**Merged pull requests:**
|
807
|
+
|
808
|
+
- Added the ability to toggle strict\_variables [\#69](https://github.com/voxpupuli/onceover/pull/69) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
809
|
+
|
810
|
+
## [v3.0.9](https://github.com/voxpupuli/onceover/tree/v3.0.9) (2016-12-13)
|
811
|
+
|
812
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.8...v3.0.9)
|
813
|
+
|
814
|
+
**Implemented enhancements:**
|
815
|
+
|
816
|
+
- Allow for integration of custom tests [\#12](https://github.com/voxpupuli/onceover/issues/12)
|
817
|
+
|
818
|
+
**Merged pull requests:**
|
819
|
+
|
820
|
+
- \[WIP\] Change HTTP requests to support http\(s\)\_proxy environment variables. [\#68](https://github.com/voxpupuli/onceover/pull/68) ([jairojunior](https://github.com/jairojunior))
|
821
|
+
|
822
|
+
## [v3.0.8](https://github.com/voxpupuli/onceover/tree/v3.0.8) (2016-10-15)
|
823
|
+
|
824
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.7...v3.0.8)
|
825
|
+
|
826
|
+
**Closed issues:**
|
827
|
+
|
828
|
+
- groups should be able to be empty [\#55](https://github.com/voxpupuli/onceover/issues/55)
|
829
|
+
|
830
|
+
**Merged pull requests:**
|
831
|
+
|
832
|
+
- Fix a grammar issue [\#60](https://github.com/voxpupuli/onceover/pull/60) ([natemccurdy](https://github.com/natemccurdy))
|
833
|
+
- 54 skip r10k [\#57](https://github.com/voxpupuli/onceover/pull/57) ([jessereynolds](https://github.com/jessereynolds))
|
834
|
+
- 55 support empty groups [\#56](https://github.com/voxpupuli/onceover/pull/56) ([jessereynolds](https://github.com/jessereynolds))
|
835
|
+
|
836
|
+
## [v3.0.7](https://github.com/voxpupuli/onceover/tree/v3.0.7) (2016-05-30)
|
837
|
+
|
838
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.6...v3.0.7)
|
839
|
+
|
840
|
+
**Implemented enhancements:**
|
841
|
+
|
842
|
+
- Should have the classname and factset name available [\#52](https://github.com/voxpupuli/onceover/issues/52)
|
843
|
+
|
844
|
+
**Closed issues:**
|
845
|
+
|
846
|
+
- Test Puppet 3/4 migration [\#47](https://github.com/voxpupuli/onceover/issues/47)
|
847
|
+
|
848
|
+
**Merged pull requests:**
|
849
|
+
|
850
|
+
- Issue 52 [\#53](https://github.com/voxpupuli/onceover/pull/53) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
851
|
+
|
852
|
+
## [v3.0.6](https://github.com/voxpupuli/onceover/tree/v3.0.6) (2016-05-24)
|
853
|
+
|
854
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.5...v3.0.6)
|
855
|
+
|
856
|
+
**Fixed bugs:**
|
857
|
+
|
858
|
+
- Copying bundler files results in error [\#49](https://github.com/voxpupuli/onceover/issues/49)
|
859
|
+
|
860
|
+
**Closed issues:**
|
861
|
+
|
862
|
+
- When manually calling controlrepo it is hard to respect config [\#44](https://github.com/voxpupuli/onceover/issues/44)
|
863
|
+
|
864
|
+
**Merged pull requests:**
|
865
|
+
|
866
|
+
- Issue 49 [\#50](https://github.com/voxpupuli/onceover/pull/50) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
867
|
+
|
868
|
+
## [v3.0.5](https://github.com/voxpupuli/onceover/tree/v3.0.5) (2016-05-16)
|
869
|
+
|
870
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.4...v3.0.5)
|
871
|
+
|
872
|
+
**Merged pull requests:**
|
873
|
+
|
874
|
+
- Issue 44 [\#45](https://github.com/voxpupuli/onceover/pull/45) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
875
|
+
|
876
|
+
## [v3.0.4](https://github.com/voxpupuli/onceover/tree/v3.0.4) (2016-05-14)
|
877
|
+
|
878
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.3...v3.0.4)
|
879
|
+
|
880
|
+
**Implemented enhancements:**
|
881
|
+
|
882
|
+
- unable to remove windows [\#41](https://github.com/voxpupuli/onceover/issues/41)
|
883
|
+
|
884
|
+
**Fixed bugs:**
|
885
|
+
|
886
|
+
- Change :: to \_\_ [\#40](https://github.com/voxpupuli/onceover/issues/40)
|
887
|
+
- specifying an alternate Puppetfile with --puppetfile doesn't seem to work [\#39](https://github.com/voxpupuli/onceover/issues/39)
|
888
|
+
|
889
|
+
## [v3.0.3](https://github.com/voxpupuli/onceover/tree/v3.0.3) (2016-05-06)
|
890
|
+
|
891
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.2...v3.0.3)
|
892
|
+
|
893
|
+
**Merged pull requests:**
|
894
|
+
|
895
|
+
- Issue 40 [\#43](https://github.com/voxpupuli/onceover/pull/43) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
896
|
+
- Solaris factsets [\#42](https://github.com/voxpupuli/onceover/pull/42) ([jessereynolds](https://github.com/jessereynolds))
|
897
|
+
|
898
|
+
## [v3.0.2](https://github.com/voxpupuli/onceover/tree/v3.0.2) (2016-04-30)
|
899
|
+
|
900
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.1...v3.0.2)
|
901
|
+
|
902
|
+
**Closed issues:**
|
903
|
+
|
904
|
+
- Code copying is broken [\#37](https://github.com/voxpupuli/onceover/issues/37)
|
905
|
+
|
906
|
+
**Merged pull requests:**
|
907
|
+
|
908
|
+
- Fixed \#37 [\#38](https://github.com/voxpupuli/onceover/pull/38) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
909
|
+
- Bundler hotfix [\#36](https://github.com/voxpupuli/onceover/pull/36) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
910
|
+
|
911
|
+
## [v3.0.1](https://github.com/voxpupuli/onceover/tree/v3.0.1) (2016-04-28)
|
912
|
+
|
913
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v3.0.0...v3.0.1)
|
914
|
+
|
915
|
+
## [v3.0.0](https://github.com/voxpupuli/onceover/tree/v3.0.0) (2016-04-28)
|
916
|
+
|
917
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.10...v3.0.0)
|
918
|
+
|
919
|
+
**Implemented enhancements:**
|
920
|
+
|
921
|
+
- Change the name! [\#34](https://github.com/voxpupuli/onceover/issues/34)
|
922
|
+
- Add the ability to update Puppetfiles [\#30](https://github.com/voxpupuli/onceover/issues/30)
|
923
|
+
- Move Beaker ugliness from templates to gem [\#26](https://github.com/voxpupuli/onceover/issues/26)
|
924
|
+
- Allow filtering on nodes and classes too [\#25](https://github.com/voxpupuli/onceover/issues/25)
|
925
|
+
- Properly implement tags [\#24](https://github.com/voxpupuli/onceover/issues/24)
|
926
|
+
- Add function mocking [\#22](https://github.com/voxpupuli/onceover/issues/22)
|
927
|
+
- Add debugging [\#19](https://github.com/voxpupuli/onceover/issues/19)
|
928
|
+
- Fully test new CLI parameters [\#18](https://github.com/voxpupuli/onceover/issues/18)
|
929
|
+
- Create `controlrepo init` [\#17](https://github.com/voxpupuli/onceover/issues/17)
|
930
|
+
- Change temp dir to .controlrepo [\#16](https://github.com/voxpupuli/onceover/issues/16)
|
931
|
+
- Improve r10k deploy to remove re-download of modules [\#15](https://github.com/voxpupuli/onceover/issues/15)
|
932
|
+
- Create a CLI [\#14](https://github.com/voxpupuli/onceover/issues/14)
|
933
|
+
- Remove workaround for line prefix [\#13](https://github.com/voxpupuli/onceover/issues/13)
|
934
|
+
|
935
|
+
**Merged pull requests:**
|
936
|
+
|
937
|
+
- Issue 34 [\#35](https://github.com/voxpupuli/onceover/pull/35) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
938
|
+
- Fixed \#30 [\#33](https://github.com/voxpupuli/onceover/pull/33) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
939
|
+
- Fixed \#18 [\#32](https://github.com/voxpupuli/onceover/pull/32) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
940
|
+
- Issue 26 [\#31](https://github.com/voxpupuli/onceover/pull/31) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
941
|
+
- Added function mocking, fixes \#22 [\#29](https://github.com/voxpupuli/onceover/pull/29) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
942
|
+
- Added class and node filters, fixes \#25 [\#28](https://github.com/voxpupuli/onceover/pull/28) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
943
|
+
- Properly implemented tags. Fixes \#24 [\#27](https://github.com/voxpupuli/onceover/pull/27) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
944
|
+
- Added debugging, fixes \#19 [\#23](https://github.com/voxpupuli/onceover/pull/23) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
945
|
+
- \(\#17\) Added modification of .gitignore to init [\#21](https://github.com/voxpupuli/onceover/pull/21) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
946
|
+
- Create a CLI [\#20](https://github.com/voxpupuli/onceover/pull/20) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
947
|
+
|
948
|
+
## [v2.0.10](https://github.com/voxpupuli/onceover/tree/v2.0.10) (2016-03-21)
|
949
|
+
|
950
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.9...v2.0.10)
|
951
|
+
|
952
|
+
## [v2.0.9](https://github.com/voxpupuli/onceover/tree/v2.0.9) (2016-03-21)
|
953
|
+
|
954
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.8...v2.0.9)
|
955
|
+
|
956
|
+
**Merged pull requests:**
|
957
|
+
|
958
|
+
- \(METHOD-570\) Added ability to add your own spec tests [\#11](https://github.com/voxpupuli/onceover/pull/11) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
959
|
+
|
960
|
+
## [v2.0.8](https://github.com/voxpupuli/onceover/tree/v2.0.8) (2016-02-11)
|
961
|
+
|
962
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.7...v2.0.8)
|
963
|
+
|
964
|
+
## [v2.0.7](https://github.com/voxpupuli/onceover/tree/v2.0.7) (2016-02-11)
|
965
|
+
|
966
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.6...v2.0.7)
|
967
|
+
|
968
|
+
## [v2.0.6](https://github.com/voxpupuli/onceover/tree/v2.0.6) (2016-02-11)
|
969
|
+
|
970
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.5...v2.0.6)
|
971
|
+
|
972
|
+
**Merged pull requests:**
|
973
|
+
|
974
|
+
- Method 569 [\#10](https://github.com/voxpupuli/onceover/pull/10) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
975
|
+
|
976
|
+
## [v2.0.5](https://github.com/voxpupuli/onceover/tree/v2.0.5) (2016-02-08)
|
977
|
+
|
978
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.4...v2.0.5)
|
979
|
+
|
980
|
+
## [v2.0.4](https://github.com/voxpupuli/onceover/tree/v2.0.4) (2016-02-08)
|
981
|
+
|
982
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.3...v2.0.4)
|
983
|
+
|
984
|
+
**Implemented enhancements:**
|
985
|
+
|
986
|
+
- Phych::ParserError if controlrepo.yaml is missing [\#1](https://github.com/voxpupuli/onceover/issues/1)
|
987
|
+
|
988
|
+
**Closed issues:**
|
989
|
+
|
990
|
+
- \[bug\] ruby error if hiera.yaml is missing [\#7](https://github.com/voxpupuli/onceover/issues/7)
|
991
|
+
- \[enhancement\] ship a default nodeset [\#4](https://github.com/voxpupuli/onceover/issues/4)
|
992
|
+
- \[enhancement\] quickstart guide for the lazy/impatient \(me\) [\#3](https://github.com/voxpupuli/onceover/issues/3)
|
993
|
+
- \[enhancement\] ship with a default sets of facts [\#2](https://github.com/voxpupuli/onceover/issues/2)
|
994
|
+
|
995
|
+
**Merged pull requests:**
|
996
|
+
|
997
|
+
- Added support of the manifest setting [\#9](https://github.com/voxpupuli/onceover/pull/9) ([dylanratcliffe](https://github.com/dylanratcliffe))
|
998
|
+
|
999
|
+
## [v2.0.3](https://github.com/voxpupuli/onceover/tree/v2.0.3) (2015-11-20)
|
1000
|
+
|
1001
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.2...v2.0.3)
|
1002
|
+
|
1003
|
+
## [v2.0.2](https://github.com/voxpupuli/onceover/tree/v2.0.2) (2015-11-20)
|
1004
|
+
|
1005
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.1...v2.0.2)
|
1006
|
+
|
1007
|
+
**Closed issues:**
|
1008
|
+
|
1009
|
+
- \[bug\] ruby error when running controlrepo\_spec [\#5](https://github.com/voxpupuli/onceover/issues/5)
|
1010
|
+
|
1011
|
+
**Merged pull requests:**
|
1012
|
+
|
1013
|
+
- work without an r10k.yaml file [\#6](https://github.com/voxpupuli/onceover/pull/6) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
1014
|
+
|
1015
|
+
## [v2.0.1](https://github.com/voxpupuli/onceover/tree/v2.0.1) (2015-11-16)
|
1016
|
+
|
1017
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v2.0.0...v2.0.1)
|
1018
|
+
|
1019
|
+
## [v2.0.0](https://github.com/voxpupuli/onceover/tree/v2.0.0) (2015-11-11)
|
1020
|
+
|
1021
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/2.0.0...v2.0.0)
|
1022
|
+
|
1023
|
+
## [2.0.0](https://github.com/voxpupuli/onceover/tree/2.0.0) (2015-11-11)
|
1024
|
+
|
1025
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/1.1.1...2.0.0)
|
1026
|
+
|
1027
|
+
## [1.1.1](https://github.com/voxpupuli/onceover/tree/1.1.1) (2015-11-10)
|
1028
|
+
|
1029
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v1.1.0...1.1.1)
|
1030
|
+
|
1031
|
+
## [v1.1.0](https://github.com/voxpupuli/onceover/tree/v1.1.0) (2015-11-06)
|
1032
|
+
|
1033
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/1.1.0...v1.1.0)
|
1034
|
+
|
1035
|
+
## [1.1.0](https://github.com/voxpupuli/onceover/tree/1.1.0) (2015-10-28)
|
1036
|
+
|
1037
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/1.0.0...1.1.0)
|
1038
|
+
|
1039
|
+
## [1.0.0](https://github.com/voxpupuli/onceover/tree/1.0.0) (2015-10-19)
|
1040
|
+
|
1041
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/0.2.0...1.0.0)
|
1042
|
+
|
1043
|
+
## [0.2.0](https://github.com/voxpupuli/onceover/tree/0.2.0) (2015-09-29)
|
1044
|
+
|
1045
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/0.1.1...0.2.0)
|
1046
|
+
|
1047
|
+
## [0.1.1](https://github.com/voxpupuli/onceover/tree/0.1.1) (2015-09-28)
|
1048
|
+
|
1049
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/0.0.1...0.1.1)
|
1050
|
+
|
1051
|
+
## [0.0.1](https://github.com/voxpupuli/onceover/tree/0.0.1) (2015-09-24)
|
1052
|
+
|
1053
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/192099961f3ffe616b5811815a9df013f1284e54...0.0.1)
|
1054
|
+
|
1055
|
+
|
1056
|
+
|
1057
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|