rspec-puppet 2.12.0 → 3.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/CHANGELOG.md +140 -480
- data/README.md +18 -5
- data/bin/rspec-puppet-init +4 -3
- data/lib/rspec-puppet/adapters.rb +67 -61
- data/lib/rspec-puppet/cache.rb +3 -2
- data/lib/rspec-puppet/consts.rb +16 -14
- data/lib/rspec-puppet/coverage.rb +37 -42
- data/lib/rspec-puppet/errors.rb +6 -6
- data/lib/rspec-puppet/example/application_example_group.rb +3 -1
- data/lib/rspec-puppet/example/class_example_group.rb +3 -1
- data/lib/rspec-puppet/example/define_example_group.rb +3 -1
- data/lib/rspec-puppet/example/function_example_group.rb +28 -23
- data/lib/rspec-puppet/example/host_example_group.rb +3 -1
- data/lib/rspec-puppet/example/provider_example_group.rb +2 -0
- data/lib/rspec-puppet/example/type_alias_example_group.rb +4 -2
- data/lib/rspec-puppet/example/type_example_group.rb +3 -1
- data/lib/rspec-puppet/example.rb +6 -7
- data/lib/rspec-puppet/facter_impl.rb +11 -10
- data/lib/rspec-puppet/matchers/allow_value.rb +10 -10
- data/lib/rspec-puppet/matchers/compile.rb +54 -61
- data/lib/rspec-puppet/matchers/count_generic.rb +18 -18
- data/lib/rspec-puppet/matchers/create_generic.rb +66 -78
- data/lib/rspec-puppet/matchers/dynamic_matchers.rb +13 -2
- data/lib/rspec-puppet/matchers/include_class.rb +5 -4
- data/lib/rspec-puppet/matchers/parameter_matcher.rb +11 -12
- data/lib/rspec-puppet/matchers/raise_error.rb +5 -1
- data/lib/rspec-puppet/matchers/run.rb +41 -44
- data/lib/rspec-puppet/matchers/type_matchers.rb +37 -48
- data/lib/rspec-puppet/matchers.rb +2 -0
- data/lib/rspec-puppet/monkey_patches/win32/registry.rb +7 -5
- data/lib/rspec-puppet/monkey_patches/win32/taskscheduler.rb +3 -1
- data/lib/rspec-puppet/monkey_patches/windows/taskschedulerconstants.rb +208 -205
- data/lib/rspec-puppet/monkey_patches.rb +56 -56
- data/lib/rspec-puppet/rake_task.rb +6 -4
- data/lib/rspec-puppet/raw_string.rb +2 -0
- data/lib/rspec-puppet/sensitive.rb +9 -7
- data/lib/rspec-puppet/setup.rb +43 -48
- data/lib/rspec-puppet/spec_helper.rb +2 -0
- data/lib/rspec-puppet/support.rb +133 -134
- data/lib/rspec-puppet/tasks/release_test.rb +8 -5
- data/lib/rspec-puppet/version.rb +5 -0
- data/lib/rspec-puppet.rb +43 -51
- metadata +9 -7
data/CHANGELOG.md
CHANGED
@@ -1,620 +1,280 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
project adheres to [Semantic Versioning](http://semver.org/).
|
1
|
+
<!-- markdownlint-disable MD024 -->
|
2
|
+
# Changelog
|
4
3
|
|
5
|
-
|
4
|
+
All notable changes to this project will be documented in this file.
|
6
5
|
|
7
|
-
|
8
|
-
* Handle nil autorequire results ([#22](https://github.com/puppetlabs/rspec-puppet/pull/22))
|
9
|
-
* Add the ability to use kind_of matchers ([#24](https://github.com/puppetlabs/rspec-puppet/pull/24))
|
10
|
-
|
11
|
-
## [2.11.1]
|
6
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
|
12
7
|
|
13
|
-
|
14
|
-
* Ensure FacterImpl consistency between example groups ([#19](https://github.com/puppetlabs/rspec-puppet/pull/19))
|
8
|
+
## [v3.0.0](https://github.com/puppetlabs/rspec-puppet/tree/v3.0.0) - 2023-04-25
|
15
9
|
|
16
|
-
|
10
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v3.0.0.rc.1...v3.0.0)
|
17
11
|
|
18
|
-
|
19
|
-
* Add setting to use custom Facter implementation ([GH-16](https://github.com/puppetlabs/rspec-puppet/pull/16))
|
12
|
+
## [v3.0.0.rc.1](https://github.com/puppetlabs/rspec-puppet/tree/v3.0.0.rc.1) - 2023-04-12
|
20
13
|
|
21
|
-
|
22
|
-
The release sees rspec-puppet move into the puppetlabs namespace
|
14
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.12.0...v3.0.0.rc.1)
|
23
15
|
|
24
16
|
### Added
|
25
|
-
* Add ruby 3 support ([GH-11](https://github.com/puppetlabs/rspec-puppet/pull/11))
|
26
17
|
|
27
|
-
|
18
|
+
- Support dot-notation when retrieving facts in facter_impl [#46](https://github.com/puppetlabs/rspec-puppet/pull/46) ([alexjfisher](https://github.com/alexjfisher))
|
28
19
|
|
29
|
-
###
|
30
|
-
|
31
|
-
* Added support for regexp arguments to Sensitive
|
32
|
-
* Handle all auto*, not just autorequire
|
33
|
-
* Set up loaders so that 4.x functions resolve properly
|
20
|
+
### Changed
|
21
|
+
- (CONT-808) Ruby 3 / Puppet 8 Support [#48](https://github.com/puppetlabs/rspec-puppet/pull/48) ([chelnak](https://github.com/chelnak))
|
34
22
|
|
35
|
-
|
23
|
+
### Fixed
|
36
24
|
|
37
|
-
|
38
|
-
|
39
|
-
with Puppet 2.x or 3.x (running under Ruby 1.8.7) or Puppet 4.x (running under Ruby 1.9.3).
|
40
|
-
* This release adds support for the [`Sensitive`](https://puppet.com/docs/puppet/latest/lang_data_sensitive.html)
|
41
|
-
data type, however existing tests that were expecting `String` content may need to be updated
|
42
|
-
to wrap the expected value in the new `sensitive` helper:
|
25
|
+
- Default to current versions of Puppet and Facter [#36](https://github.com/puppetlabs/rspec-puppet/pull/36) ([ekohl](https://github.com/ekohl))
|
26
|
+
- fixed plugins link [#30](https://github.com/puppetlabs/rspec-puppet/pull/30) ([binford2k](https://github.com/binford2k))
|
43
27
|
|
44
|
-
|
45
|
-
# Old
|
46
|
-
it { is_expected.to contain_file('/etc/mysecret.conf').with_content("top secret\n") }
|
28
|
+
## [v2.12.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.12.0) - 2022-07-21
|
47
29
|
|
48
|
-
|
49
|
-
it { is_expected.to contain_file('/etc/mysecret.conf').with_content(sensitive("top secret\n")) }
|
50
|
-
```
|
30
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.11.1...v2.12.0)
|
51
31
|
|
52
32
|
### Added
|
53
|
-
* Added support for [trusted external fact data](https://github.com/puppetlabs/rspec-puppet#specifying-trusted-external-data).
|
54
|
-
* Added the ability to exclude resources from the coverage report calculations using a regular expression.
|
55
|
-
(See [documentation](https://rspec-puppet.com/documentation/coverage/#excluded-resources) for an example.
|
56
|
-
* Added `have_unique_values_for_all` matcher to assert a specific resource parameter value is unique across
|
57
|
-
the entire catalogue.
|
58
|
-
(See [documentation](https://rspec-puppet.com/documentation/classes/#test-resource-parameter-values-for-uniqueness).)
|
59
|
-
* Added ability to customize module-layer Hiera configuration via new settings. See
|
60
|
-
[documentation](https://rspec-puppet.com/documentation/configuration/#disable_module_hiera) for details.
|
61
|
-
|
62
|
-
### Changed
|
63
|
-
* `RSpec::Puppet::Cache` now evicts least recently used entries when it reaches max size.
|
64
|
-
* `rspec-puppet`'s implementation of `match_manifests` will no longer look in `init.pp` for class
|
65
|
-
declarations if a manifest file exactly matching the class name exists.
|
66
|
-
|
67
|
-
### Fixed
|
68
|
-
* Resolved compatibility issues with Ruby 2.7.x and added Ruby 2.7.x to the test matrix.
|
69
|
-
* Resolved issues calculating coverage and reporting results when there are 0 tested resources.
|
70
|
-
* Resolved compatibility issue with `rspec-expectations` 3.10.0.
|
71
33
|
|
72
|
-
|
34
|
+
- Add the ability to use `kind_of` matchers [#24](https://github.com/puppetlabs/rspec-puppet/pull/24) ([binford2k](https://github.com/binford2k))
|
73
35
|
|
74
36
|
### Fixed
|
75
|
-
* Fix issues with removal of `default_env` method in Puppet 6.17.0.
|
76
37
|
|
77
|
-
|
38
|
+
- Handle nil autorequire results [#22](https://github.com/puppetlabs/rspec-puppet/pull/22) ([seanmil](https://github.com/seanmil))
|
78
39
|
|
79
|
-
|
40
|
+
## [v2.11.1](https://github.com/puppetlabs/rspec-puppet/tree/v2.11.1) - 2021-12-10
|
80
41
|
|
81
|
-
|
42
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.11.0...v2.11.1)
|
82
43
|
|
83
44
|
### Fixed
|
84
|
-
* Fix cross-platform testing for Puppet >= 6.9.0 when there is no `ipaddress6`
|
85
|
-
fact defined.
|
86
45
|
|
87
|
-
|
46
|
+
- Ensure FacterImpl consistency between example groups [#19](https://github.com/puppetlabs/rspec-puppet/pull/19) ([GabrielNagy](https://github.com/GabrielNagy))
|
88
47
|
|
89
|
-
|
90
|
-
* Fix the support for rspec-expectations >= 3.8.5.
|
48
|
+
## [v2.11.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.11.0) - 2021-11-10
|
91
49
|
|
92
|
-
|
93
|
-
* Remove the rspec-expectations dependency limit introduced in 2.7.6.
|
50
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.10.0...v2.11.0)
|
94
51
|
|
95
|
-
|
52
|
+
### Added
|
96
53
|
|
97
|
-
|
98
|
-
* Limit rspec-expectations dependency to < 3.8.5 due to an incompatible
|
99
|
-
change.
|
54
|
+
- Add setting to use custom Facter implementation [#16](https://github.com/puppetlabs/rspec-puppet/pull/16) ([GabrielNagy](https://github.com/GabrielNagy))
|
100
55
|
|
101
|
-
## [
|
56
|
+
## [v2.10.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.10.0) - 2021-08-02
|
102
57
|
|
103
|
-
|
104
|
-
* Minor refactor to prevent the fix introduced in 2.7.4 from raising
|
105
|
-
a deprecation warning on latest RSpec.
|
58
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.9.0...v2.10.0)
|
106
59
|
|
107
|
-
|
60
|
+
### Added
|
108
61
|
|
109
|
-
|
110
|
-
* Fix the resource coverage test so that rspec will exit non-zero if the
|
111
|
-
desired coverage is not met.
|
62
|
+
- Add Ruby 3 support [#11](https://github.com/puppetlabs/rspec-puppet/pull/11) ([bastelfreak](https://github.com/bastelfreak))
|
112
63
|
|
113
|
-
## [
|
64
|
+
## [v2.9.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.9.0) - 2021-05-20
|
114
65
|
|
115
|
-
|
116
|
-
* Puppet 6 deferred functions are now evaluated and resolved as part of the
|
117
|
-
catalogue compilation process.
|
118
|
-
* If running with parallel\_tests, the resources that are filtered out of the
|
119
|
-
resource coverage report are now taken into account when merging the final
|
120
|
-
report, fixing false negative results that can occur.
|
66
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.8.0...v2.9.0)
|
121
67
|
|
122
|
-
## [
|
68
|
+
## [v2.8.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.8.0) - 2020-11-05
|
123
69
|
|
124
|
-
|
125
|
-
* Reverted the change introduced in 2.7.0 that reencoded resource parameter
|
126
|
-
values to modify their line endings.
|
70
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.9...v2.8.0)
|
127
71
|
|
128
|
-
## [
|
72
|
+
## [v2.7.9](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.9) - 2020-07-14
|
129
73
|
|
130
|
-
|
131
|
-
* Fixed a bug that prevented the platform pretending/stubbing logic from being
|
132
|
-
temporarily disabled when loading Ruby code.
|
74
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.8...v2.7.9)
|
133
75
|
|
134
|
-
## [
|
76
|
+
## [v2.7.8](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.8) - 2019-10-31
|
135
77
|
|
136
|
-
|
137
|
-
* Official Puppet 6 support added.
|
138
|
-
* When testing resource parameter values, the values received from Puppet are
|
139
|
-
now reencoded before testing to ensure that the line endings (if present)
|
140
|
-
match the platform being tested.
|
141
|
-
* `vendormoduledir` and `basemodulepath` settings (introduced in Puppet 6) are
|
142
|
-
now configurable in rspec-puppet.
|
78
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.7...v2.7.8)
|
143
79
|
|
144
|
-
## [
|
80
|
+
## [v2.7.7](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.7) - 2019-10-07
|
145
81
|
|
146
|
-
|
82
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.6...v2.7.7)
|
147
83
|
|
148
|
-
|
149
|
-
Puppet settings (specifically `trusted_server_facts`) when running tests
|
150
|
-
against the upcoming Puppet 6.0.0 release.
|
84
|
+
## [v2.7.6](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.6) - 2019-10-04
|
151
85
|
|
152
|
-
|
86
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.5...v2.7.6)
|
153
87
|
|
154
|
-
|
88
|
+
## [v2.7.5](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.5) - 2019-06-06
|
155
89
|
|
156
|
-
|
157
|
-
junction on Windows as the builtin `File` module does not have complete
|
158
|
-
support for directory junctions on Ruby <= 2.1.
|
90
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.4...v2.7.5)
|
159
91
|
|
160
|
-
|
92
|
+
## [v2.7.4](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.4) - 2019-06-06
|
161
93
|
|
162
|
-
|
163
|
-
rather than only being printed to STDOUT.
|
164
|
-
* If running with parallel\_tests, resource coverage data is stored in
|
165
|
-
per-process temp files and merged at the end of the final rspec process,
|
166
|
-
allowing for a complete coverage report to be generated when splitting
|
167
|
-
a test suite across multiple rspec processes.
|
94
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.3...v2.7.4)
|
168
95
|
|
169
|
-
## [
|
96
|
+
## [v2.7.3](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.3) - 2019-02-15
|
170
97
|
|
171
|
-
|
98
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.2...v2.7.3)
|
172
99
|
|
173
|
-
|
174
|
-
setting on Puppet 4.0.0, as the setting was only introduced in Puppet 4.1.0.
|
175
|
-
* Automatic `Selinux` stubbing introduced in 2.6.12 no longer assumes the use
|
176
|
-
of rspec-mocks. If rspec-mocks is not available, it will fall back to mocha
|
177
|
-
and finally fall back to doing nothing if neither is available.
|
100
|
+
## [v2.7.2](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.2) - 2018-11-20
|
178
101
|
|
179
|
-
|
102
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.1...v2.7.2)
|
180
103
|
|
181
|
-
|
104
|
+
## [v2.7.1](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.1) - 2018-10-04
|
182
105
|
|
183
|
-
|
184
|
-
`win32-taskscheduler`.
|
185
|
-
* The `os` structured fact is now correctly treated as a Hash when determining
|
186
|
-
the platform that rspec-puppet pretends to be.
|
187
|
-
* The default resources that Puppet adds to the catalogue (`Class[main]`,
|
188
|
-
`Class[Settings]`, etc) are now filtered out of the catalogue when using the
|
189
|
-
`have_resource_count` matcher, rather than simply subtracted from the
|
190
|
-
resource count. This allows the `have_resource_count` matcher to be used on
|
191
|
-
subsects of the catalogue (`exported_resources` for example).
|
192
|
-
* When running on Windows, rspec-puppet will now convert Puppet configuration
|
193
|
-
settings from `/dev/null` to `NUL`, preventing Puppet from automatically
|
194
|
-
creating directories like `C:\dev` when running tests on Windows as an
|
195
|
-
Administrator.
|
196
|
-
* When overriding fact values, rspec-puppet will now assign the stub facts
|
197
|
-
a weight of 1000 to ensure that they override the generated fact values from
|
198
|
-
Facter 3.x.
|
199
|
-
* `Selinux.is_selinux_enabled` is now automatically stubbed to return 0 to
|
200
|
-
disable any SELinux related apply-time validation of resources.
|
201
|
-
* When testing against Puppet 3.x, rspec-puppet will now honour the
|
202
|
-
`RSpec.configuration.parser` value when determining the module name to set
|
203
|
-
up the fixture symlink.
|
204
|
-
* When testing for the absence of a parameter using `only_with(:parameter_name
|
205
|
-
=> nil`), this will no longer incorrectly affect the expected parameter
|
206
|
-
count.
|
207
|
-
|
208
|
-
## [2.6.11]
|
106
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.7.0...v2.7.1)
|
209
107
|
|
210
|
-
|
108
|
+
## [v2.7.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.7.0) - 2018-10-02
|
211
109
|
|
212
|
-
|
213
|
-
`RSpec.configuration.trusted_server_facts` is `true`. Previously, this was
|
214
|
-
always built but only used when enabled.
|
110
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.15...v2.7.0)
|
215
111
|
|
216
|
-
## [
|
112
|
+
## [v2.6.15](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.15) - 2018-08-13
|
217
113
|
|
218
|
-
|
114
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.14...v2.6.15)
|
219
115
|
|
220
|
-
|
221
|
-
`File.exist?`, which behaves much more reliably in respect to symlinks.
|
222
|
-
* Stubbed out `Puppet::Util::Windows::Security.supports_acl?` when compiling
|
223
|
-
the catalogue as this check only make sense when applying the resources to
|
224
|
-
a host and prevents testing Windows File resources on non-Windows hosts.
|
225
|
-
* The cached default provider for native types is now reset before compiling
|
226
|
-
a new catalogue.
|
227
|
-
* Resource titles that contain single quotes are now rendered correctly,
|
228
|
-
allowing them to be tested.
|
229
|
-
* When pretending to be a different platform, the methods in
|
230
|
-
`Puppet::Util::Platform` are now stubbed after the catalogue has been
|
231
|
-
compiled, allowing path related logic in custom facts to behave as expected.
|
232
|
-
* A mock version of `Win32::TaskScheduler` has been added to rspec-puppet.
|
233
|
-
This will be loaded when running rspec-puppet on a non-Windows host in order
|
234
|
-
to allow testing of catalogues containing Scheduled\_task resources.
|
235
|
-
* Stubbed out the `manages_symlinks` feature on
|
236
|
-
`Puppet::Type::File::ProviderWindows` as this can only be evaluated at apply
|
237
|
-
time and prevents testing Windows File resources that manage symlinks on
|
238
|
-
non-Windows hosts.
|
239
|
-
* Fixed unhandled exception when testing resource parameters where the
|
240
|
-
expected value is an Array or a Hash and the actual value is a different
|
241
|
-
data type.
|
242
|
-
* A mock version of `Win32::Registry` has been added to rspec-puppet. This
|
243
|
-
will be loaded when running rspec-puppet on a non-Windows host in order to
|
244
|
-
allow testing of catalogues that contain Exec resources that use the
|
245
|
-
`powershell` provider from the `puppetlabs/puppetlabs-powershell` module.
|
246
|
-
* Fixed a case where the order in which tests are run can cause a resource
|
247
|
-
that is being tested to be falsely reported as untested in the coverage
|
248
|
-
report.
|
116
|
+
## [v2.6.14](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.14) - 2018-07-06
|
249
117
|
|
250
|
-
|
118
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.13...v2.6.14)
|
251
119
|
|
252
|
-
|
253
|
-
error message format introduced in Puppet 5.3.4.
|
254
|
-
* The builtin `$server_facts` hash is now populated on versions of Puppet that
|
255
|
-
support it (Puppet >= 4.3). This is not currently enabled by default, but
|
256
|
-
can be enabled by setting `RSpec.configuration.trusted_server_facts` to
|
257
|
-
`true`.
|
258
|
-
* `$facts['os']['family']` and `$facts['os']['name']` are now checked when
|
259
|
-
determining if rspec-puppet needs to pretend to be running on a different
|
260
|
-
platform (previously only `$facts['operatingsystem']` and
|
261
|
-
`$facts['osfamily']` were used).
|
120
|
+
## [v2.6.13](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.13) - 2018-06-21
|
262
121
|
|
263
|
-
|
122
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.12...v2.6.13)
|
264
123
|
|
265
|
-
|
124
|
+
## [v2.6.12](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.12) - 2018-06-15
|
266
125
|
|
267
|
-
|
268
|
-
correct code is loaded for the actual platform running the tests.
|
126
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.11...v2.6.12)
|
269
127
|
|
270
|
-
## [
|
128
|
+
## [v2.6.11](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.11) - 2018-03-08
|
271
129
|
|
272
|
-
|
130
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.10...v2.6.11)
|
273
131
|
|
274
|
-
|
275
|
-
invalidation.
|
276
|
-
* Clarified rspec-puppet-init output when run inside a directory that does not
|
277
|
-
contain a `metadata.json` file.
|
132
|
+
## [v2.6.10](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.10) - 2018-03-06
|
278
133
|
|
279
|
-
|
134
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.9...v2.6.10)
|
280
135
|
|
281
|
-
|
136
|
+
## [v2.6.9](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.9) - 2017-09-12
|
282
137
|
|
283
|
-
|
284
|
-
exception when the coverage wasn't 100%.
|
138
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.8...v2.6.9)
|
285
139
|
|
286
|
-
## [
|
140
|
+
## [v2.6.8](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.8) - 2017-08-17
|
287
141
|
|
288
|
-
|
142
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.7...v2.6.8)
|
289
143
|
|
290
|
-
|
291
|
-
Windows host.
|
144
|
+
## [v2.6.7](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.7) - 2017-08-08
|
292
145
|
|
293
|
-
|
146
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.6...v2.6.7)
|
294
147
|
|
295
|
-
|
148
|
+
## [v2.6.6](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.6) - 2017-08-07
|
296
149
|
|
297
|
-
|
298
|
-
`fqdn`, `hostname`, and `domain` facts with values derived from the node
|
299
|
-
name specified with `let(:node)`.
|
150
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.5...v2.6.6)
|
300
151
|
|
301
|
-
|
152
|
+
## [v2.6.5](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.5) - 2017-08-04
|
302
153
|
|
303
|
-
|
304
|
-
the `facts` hash.
|
305
|
-
* The modifications made to Puppet internals are now contained to rspec-puppet
|
306
|
-
examples, preventing them from bleeding out into other examples in the same
|
307
|
-
RSpec process (like Ruby unit tests).
|
308
|
-
* rspec-puppet no longer attempts to configure settings for Puppet 3.x
|
309
|
-
releases that they do not support.
|
154
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.4...v2.6.5)
|
310
155
|
|
311
|
-
## [
|
156
|
+
## [v2.6.4](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.4) - 2017-07-08
|
312
157
|
|
313
|
-
|
158
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.3...v2.6.4)
|
314
159
|
|
315
|
-
|
316
|
-
* A regression that prevented the `environmentpath` setting from taking
|
317
|
-
effect.
|
318
|
-
* Stubbed out the automatic confines created by resource providers on their
|
319
|
-
specified commands, which was preventing the correct provider from being
|
320
|
-
assigned to a resource when performing cross-platform testing.
|
160
|
+
## [v2.6.3](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.3) - 2017-07-04
|
321
161
|
|
322
|
-
|
162
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.2...v2.6.3)
|
323
163
|
|
324
|
-
|
164
|
+
## [v2.6.2](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.2) - 2017-07-03
|
325
165
|
|
326
|
-
|
327
|
-
specified by `RSpec.configuration.default_facts` and `let(:facts)` if the
|
328
|
-
node name has been manually specified with `let(:node)`.
|
166
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.1...v2.6.2)
|
329
167
|
|
330
|
-
## [
|
168
|
+
## [v2.6.1](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.1) - 2017-07-02
|
331
169
|
|
332
|
-
|
170
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.6.0...v2.6.1)
|
333
171
|
|
334
|
-
|
335
|
-
* The automatic setup code now checks for the presence of `metadata.json` in
|
336
|
-
the working directory. If not present, it assumes that rspec-puppet is
|
337
|
-
running from inside a control repo instead of a module and skips creating
|
338
|
-
the `spec/fixtures` directory structure and link.
|
172
|
+
## [v2.6.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.6.0) - 2017-07-02
|
339
173
|
|
340
|
-
|
174
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.5.0...v2.6.0)
|
341
175
|
|
342
|
-
|
343
|
-
(`RSpec.configuration.setup_fixtures`) that controls whether rspec-puppet
|
344
|
-
will manage the `spec/fixtures` link.
|
176
|
+
## [v2.5.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.5.0) - 2016-10-25
|
345
177
|
|
346
|
-
|
178
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.4.0...v2.5.0)
|
347
179
|
|
348
|
-
|
349
|
-
errors when creating the `spec/fixtures` link.
|
350
|
-
* The contents of the `networking` fact hash is no longer cleared when merging
|
351
|
-
in the facts derived from the node name.
|
180
|
+
## [v2.4.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.4.0) - 2016-03-24
|
352
181
|
|
353
|
-
|
182
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.3.2...v2.4.0)
|
354
183
|
|
355
|
-
|
184
|
+
## [v2.3.2](https://github.com/puppetlabs/rspec-puppet/tree/v2.3.2) - 2016-01-26
|
356
185
|
|
357
|
-
|
358
|
-
manifest which caused them to get rendered as double quoted strings. This
|
359
|
-
caused a failure for tests of defined types that contained `$` characters
|
360
|
-
as Puppet would try and interpolate the values in the title as variable(s).
|
186
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.3.1...v2.3.2)
|
361
187
|
|
362
|
-
## [
|
188
|
+
## [v2.3.1](https://github.com/puppetlabs/rspec-puppet/tree/v2.3.1) - 2016-01-25
|
363
189
|
|
364
|
-
|
365
|
-
of work has been put in to support cross-platform tests, so that you can now
|
366
|
-
test your Windows manifests on \*nix, and your \*nix manifests on Windows.
|
190
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.3.0...v2.3.1)
|
367
191
|
|
368
|
-
|
192
|
+
## [v2.3.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.3.0) - 2015-12-15
|
369
193
|
|
370
|
-
|
371
|
-
call `Puppet.settings` directly to make changes to settings without them
|
372
|
-
getting clobbered by rspec-puppet.
|
373
|
-
* Improved support for setting up the `spec/fixtures/modules` link on Windows
|
374
|
-
by using directory junctions instead of symlinks, removing the need for
|
375
|
-
Administrator access.
|
376
|
-
* When testing for the absence of a parameter on a resource, the error message
|
377
|
-
now contains the value(s) of the parameter(s) that should be undefined.
|
378
|
-
* When testing a defined type, the defined type being tested is no longer part
|
379
|
-
of the coverage report.
|
380
|
-
* The cached catalogue will now be invalidated when hiera-puppet-helper users
|
381
|
-
change their `hiera_data` value.
|
382
|
-
* Multiple instances of a defined type can now be tested at once by providing
|
383
|
-
an array of strings with `let(:title)`.
|
384
|
-
* Explicitly specifying the type of an example group (`:type => :class`) now
|
385
|
-
takes precedence over the type inferred from the spec file's location.
|
386
|
-
* The manifest specified in `RSpec.configuration.manifest` (path to `site.pp`
|
387
|
-
for Puppet < 4.x) is now imported if specified on Puppet >= 4.x.
|
388
|
-
* Puppet functions called when testing a Puppet function now get executed in
|
389
|
-
the same scope as parent function.
|
194
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.2.0...v2.3.0)
|
390
195
|
|
391
|
-
|
196
|
+
## [v2.2.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.2.0) - 2015-05-28
|
392
197
|
|
393
|
-
|
394
|
-
start of the rspec-puppet run.
|
395
|
-
* CI testing of PRs on Windows via Appveyor.
|
396
|
-
* Support for setting node parameters (mocking the behaviour of an ENC or
|
397
|
-
Puppet Enterprise Console) using `let(:node_params)`.
|
398
|
-
* Support for injecting Puppet code at the end of the test code using
|
399
|
-
`let(:post_condition)`.
|
400
|
-
* Resource coverage reports for `host` specs.
|
401
|
-
* Puppet functions that take a lambda as a parameter can now be tested by
|
402
|
-
chaining `with_lambda` to the `run` matcher.
|
403
|
-
* Facts and trusted facts are now available when testing Puppet functions.
|
404
|
-
* Hiera configuration can now be specified when testing Puppet functions using
|
405
|
-
`let(:hiera_config)`.
|
406
|
-
* Trusted facts (`$trusted[]`) can now be specified in
|
407
|
-
`RSpec.configuration.default_trusted_facts` or by `let(:trusted_facts)`.
|
408
|
-
* `:default` is now a supported parameter value when passed in by
|
409
|
-
`let(:params)`.
|
410
|
-
* Support for testing Puppet data type aliases.
|
198
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.1.0...v2.2.0)
|
411
199
|
|
412
|
-
|
200
|
+
## [v2.1.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.1.0) - 2015-04-22
|
413
201
|
|
414
|
-
|
415
|
-
precedence over the values specified in `RSpec.configuration.default_facts`
|
416
|
-
or by `let(:facts)`.
|
417
|
-
* Only fact names will now be converted to lowercase, not the fact values.
|
418
|
-
* Matchers now support resources where the namevar has a different value to
|
419
|
-
the title.
|
420
|
-
* Resources created outside of the module being tested by functions like
|
421
|
-
`create_resources` or `ensure_package` are no longer present in the coverage
|
422
|
-
report from Puppet 4.6 onwards.
|
423
|
-
* Guards have been put in place to prevent the possibility of rspec-puppet
|
424
|
-
getting stuck in an infinite recursion when testing the relationships
|
425
|
-
between resources.
|
426
|
-
* A full `spec/spec_helper.rb` file is now written out by `rspec-puppet-init`
|
427
|
-
to fix the `fixture_path` issue on new modules.
|
428
|
-
* The namevar of a resources is no longer taken into account when testing the
|
429
|
-
exact parameters of the resource with `only_with`.
|
430
|
-
* Minimum resource coverage check for RSpec <= 3.2.
|
431
|
-
* Resource parameters that take a hash as their value will no longer have that
|
432
|
-
hash converted into an array.
|
433
|
-
* Testing the value of a parameter with a Proc that returns `nil` now works as
|
434
|
-
expected.
|
435
|
-
* When testing Puppet functions, the function name is no longer automatically
|
436
|
-
coverted to lowercase.
|
437
|
-
* The value of `$::environment` is now forced to be a string as expected for
|
438
|
-
Puppet 4.0 - 4.3.
|
439
|
-
* app\_management is no longer enabled by rspec-puppet for Puppet >= 5.0 as it
|
440
|
-
is already enabled by default.
|
441
|
-
* Failing to provide parameters when testing an application now raises the
|
442
|
-
correct exception (`ArgumentError`).
|
443
|
-
* Ruby symbols in nested hashes or arrays are now converted into strings when
|
444
|
-
passed in by `let(:params)`.
|
445
|
-
* Namespaced resources are now correctly capitalised when being added to the
|
446
|
-
resource coverage filter.
|
447
|
-
|
448
|
-
## [2.5.0]
|
449
|
-
|
450
|
-
Headline features are app management, nested hashes in params, and testing for "internal" functions.
|
451
|
-
|
452
|
-
Thanks to everyone who contributed: Leo Arnold, Matt Schuchard, and Si Wilkins
|
202
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.0.1...v2.1.0)
|
453
203
|
|
454
|
-
|
204
|
+
## [v2.0.1](https://github.com/puppetlabs/rspec-puppet/tree/v2.0.1) - 2015-03-12
|
455
205
|
|
456
|
-
|
457
|
-
* Improve Gemfile to work with older rubies
|
206
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v2.0.0...v2.0.1)
|
458
207
|
|
459
|
-
|
208
|
+
## [v2.0.0](https://github.com/puppetlabs/rspec-puppet/tree/v2.0.0) - 2014-12-02
|
460
209
|
|
461
|
-
|
462
|
-
* Enable nested hashes in params
|
463
|
-
* After refactoring the function test code, puppet 4 "internal" functions can now be tested too
|
464
|
-
* Link functions and types on setup
|
465
|
-
* Increased test coverage
|
210
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v1.0.1...v2.0.0)
|
466
211
|
|
467
|
-
## [
|
212
|
+
## [v1.0.1](https://github.com/puppetlabs/rspec-puppet/tree/v1.0.1) - 2013-12-06
|
468
213
|
|
469
|
-
|
214
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v1.0.0...v1.0.1)
|
470
215
|
|
471
|
-
|
216
|
+
## [v1.0.0](https://github.com/puppetlabs/rspec-puppet/tree/v1.0.0) - 2013-12-06
|
472
217
|
|
473
|
-
|
218
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.1.6...v1.0.0)
|
474
219
|
|
475
|
-
|
220
|
+
## [v0.1.6](https://github.com/puppetlabs/rspec-puppet/tree/v0.1.6) - 2013-01-24
|
476
221
|
|
477
|
-
|
478
|
-
* Support a threshold for the code coverage test, that can fail the whole run.
|
479
|
-
* Ensure a consistent environment for all examples by adding a forced initialization of puppet before each.
|
222
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.1.5...v0.1.6)
|
480
223
|
|
481
|
-
|
224
|
+
## [v0.1.5](https://github.com/puppetlabs/rspec-puppet/tree/v0.1.5) - 2012-10-03
|
482
225
|
|
483
|
-
|
226
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.1.4...v0.1.5)
|
484
227
|
|
228
|
+
## [v0.1.4](https://github.com/puppetlabs/rspec-puppet/tree/v0.1.4) - 2012-08-09
|
485
229
|
|
486
|
-
|
230
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.1.3...v0.1.4)
|
487
231
|
|
488
|
-
|
232
|
+
## [v0.1.3](https://github.com/puppetlabs/rspec-puppet/tree/v0.1.3) - 2012-04-07
|
489
233
|
|
490
|
-
|
234
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.1.1...v0.1.3)
|
491
235
|
|
492
|
-
|
236
|
+
## [v0.1.1](https://github.com/puppetlabs/rspec-puppet/tree/v0.1.1) - 2012-01-20
|
493
237
|
|
494
|
-
|
238
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.1.0...v0.1.1)
|
495
239
|
|
496
|
-
|
240
|
+
## [v0.1.0](https://github.com/puppetlabs/rspec-puppet/tree/v0.1.0) - 2011-11-04
|
497
241
|
|
498
|
-
|
242
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.0.9...v0.1.0)
|
499
243
|
|
500
|
-
|
244
|
+
## [v0.0.9](https://github.com/puppetlabs/rspec-puppet/tree/v0.0.9) - 2011-09-17
|
501
245
|
|
502
|
-
|
246
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.0.8...v0.0.9)
|
503
247
|
|
504
|
-
|
505
|
-
- Limit the catalogue cache to 16 entries. Significant memory savings and reduced runtime were observed in testing this.
|
506
|
-
- Prevent Puppet 3's \_timestamp fact from invalidating cache.
|
507
|
-
- Extracted catalog cache from RSpec::Puppet::Support.
|
508
|
-
- Updated README to use the rspec 3 syntax, and additional explanations.
|
509
|
-
- `contain_file(...).with_content(...)` will now only show the diff and not the full contents of the file.
|
248
|
+
## [v0.0.8](https://github.com/puppetlabs/rspec-puppet/tree/v0.0.8) - 2011-08-29
|
510
249
|
|
511
|
-
|
512
|
-
- Custom type testing example group and matcher.
|
513
|
-
- before/require/subscribe/notify checking now searches recursively through all dependencies. `File[a] -> File[b] -> File[c]` is now matched by `contain_file('a').that_comes_before('File[c]')`, whereas earlier versions would have missed that.
|
514
|
-
- `let(:params)` now allows `:undef` to pass a literal undef value through to the subject.
|
515
|
-
- Support structured facts with keys as symbols or strings (\#295).
|
516
|
-
- rspec-puppet-init now creates smaller files, using rspec-puppet helpers, instead of pasting code into the module.
|
517
|
-
- Added a list of related projects to the README.
|
250
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.0.7...v0.0.8)
|
518
251
|
|
519
|
-
|
520
|
-
- Fix #276: `compile.and_raise_error` now correctly considers successful compilation an error
|
521
|
-
- Puppet's `modulepath` can now contain multiple entries and rspec-puppet will configure puppet to load code from all of them
|
522
|
-
- Support running with rspec 2.99 again
|
523
|
-
- non-class resources are now covered by the coverage code
|
524
|
-
- Fix #323/MODULES-2374: autorequires checking doesn't abort on "undefined method \`[]' for nil:NilClass"
|
525
|
-
- improved documentation for hiera integration, added example spec
|
526
|
-
- document the `scope` property
|
252
|
+
## [v0.0.7](https://github.com/puppetlabs/rspec-puppet/tree/v0.0.7) - 2011-08-29
|
527
253
|
|
528
|
-
|
254
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.0.6...v0.0.7)
|
529
255
|
|
530
|
-
|
256
|
+
## [v0.0.6](https://github.com/puppetlabs/rspec-puppet/tree/v0.0.6) - 2011-08-10
|
531
257
|
|
532
|
-
|
258
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.0.5...v0.0.6)
|
533
259
|
|
534
|
-
## [
|
535
|
-
### Added
|
536
|
-
- Settings for ordering, strict_variables, stringify_facts, and trusted_node_data
|
537
|
-
- Expose the scope in function example groups
|
260
|
+
## [v0.0.5](https://github.com/puppetlabs/rspec-puppet/tree/v0.0.5) - 2011-08-07
|
538
261
|
|
539
|
-
|
540
|
-
- rspec-puppet-init now works with Puppet 4
|
541
|
-
- Several fixes and enhancements for the `run` matcher
|
542
|
-
- Recompile the catalog when the hiera config changes
|
262
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.0.4...v0.0.5)
|
543
263
|
|
544
|
-
## [
|
545
|
-
### Added
|
546
|
-
- Puppet 4 support
|
547
|
-
- Ability to set `environment` in a let block
|
548
|
-
- Better function failure messages
|
264
|
+
## [v0.0.4](https://github.com/puppetlabs/rspec-puppet/tree/v0.0.4) - 2011-08-07
|
549
265
|
|
550
|
-
|
551
|
-
- Filter fixtures from coverage reports
|
552
|
-
- Fix functions accidentally modifying rspec function arguments
|
553
|
-
- Restructured TravisCI matrix (NB: Puppet 2.6 is no longer tested)
|
266
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.0.3...v0.0.4)
|
554
267
|
|
555
|
-
## [2.0.1] - 2015-03-12
|
556
268
|
### Fixed
|
557
|
-
- Allow RSpec 2 to still be used
|
558
269
|
|
559
|
-
|
560
|
-
|
561
|
-
-
|
270
|
+
- Issue/master/remove faces call [#4](https://github.com/puppetlabs/rspec-puppet/pull/4) ([bodepd](https://github.com/bodepd))
|
271
|
+
- Added support.rb to rspec-puppet.gemspec. [#3](https://github.com/puppetlabs/rspec-puppet/pull/3) ([haus](https://github.com/haus))
|
272
|
+
- Resource exists check [#2](https://github.com/puppetlabs/rspec-puppet/pull/2) ([bodepd](https://github.com/bodepd))
|
562
273
|
|
563
|
-
|
564
|
-
- Ability to use RSpec 3
|
565
|
-
- Hiera integration
|
566
|
-
- Coverage reports
|
567
|
-
- Ability to test on the future parser
|
568
|
-
- Function tests now have a catalogue
|
569
|
-
- Add array of references support to Relationship matchers `that_requires`,
|
570
|
-
`that_comes_before`, `that_notifies`, and `that_subscribes_to`
|
274
|
+
## [v0.0.3](https://github.com/puppetlabs/rspec-puppet/tree/v0.0.3) - 2011-07-21
|
571
275
|
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
For changelog of versions 1.0.1 and earlier, see http://rspec-puppet.com/changelog/
|
578
|
-
|
579
|
-
[2.x]: https://github.com/puppetlabs/rspec-puppet/compare/v2.11.1...master
|
580
|
-
[2.11.1]: https://github.com/puppetlabs/rspec-puppet/compare/v2.11.0..v2.11.1
|
581
|
-
[2.11.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.10.0...v2.11.0
|
582
|
-
[2.10.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.9.0...v2.10.0
|
583
|
-
[2.9.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.8.0...v2.9.0
|
584
|
-
[2.8.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.10...v2.8.0
|
585
|
-
[2.7.10]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.9...v2.7.10
|
586
|
-
[2.7.9]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.8...v2.7.9
|
587
|
-
[2.7.8]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.7...v2.7.8
|
588
|
-
[2.7.7]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.6...v2.7.7
|
589
|
-
[2.7.6]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.5...v2.7.6
|
590
|
-
[2.7.5]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.4...v2.7.5
|
591
|
-
[2.7.4]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.3...v2.7.4
|
592
|
-
[2.7.3]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.2...v2.7.3
|
593
|
-
[2.7.2]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.1...v2.7.2
|
594
|
-
[2.7.1]: https://github.com/puppetlabs/rspec-puppet/compare/v2.7.0...v2.7.1
|
595
|
-
[2.7.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.15...v2.7.0
|
596
|
-
[2.6.15]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.14...v2.6.15
|
597
|
-
[2.6.14]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.13...v2.6.14
|
598
|
-
[2.6.13]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.12...v2.6.13
|
599
|
-
[2.6.12]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.11...v2.6.12
|
600
|
-
[2.6.11]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.10...v2.6.11
|
601
|
-
[2.6.10]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.9...v2.6.10
|
602
|
-
[2.6.9]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.8...v2.6.9
|
603
|
-
[2.6.8]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.7...v2.6.8
|
604
|
-
[2.6.7]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.6...v2.6.7
|
605
|
-
[2.6.6]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.5...v2.6.6
|
606
|
-
[2.6.5]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.4...v2.6.5
|
607
|
-
[2.6.4]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.3...v2.6.4
|
608
|
-
[2.6.3]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.2...v2.6.3
|
609
|
-
[2.6.2]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.1...v2.6.2
|
610
|
-
[2.6.1]: https://github.com/puppetlabs/rspec-puppet/compare/v2.6.0...v2.6.1
|
611
|
-
[2.6.0]: https://github.com/puppetlabs/rspec-puppet/compare/2.5.0...v2.6.0
|
612
|
-
[2.5.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.4.0...v2.5.0
|
613
|
-
[2.4.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.3.2...v2.4.0
|
614
|
-
[2.3.2]: https://github.com/puppetlabs/rspec-puppet/compare/v2.3.1...v2.3.2
|
615
|
-
[2.3.1]: https://github.com/puppetlabs/rspec-puppet/compare/v2.3.0...v2.3.1
|
616
|
-
[2.3.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.2.0...v2.3.0
|
617
|
-
[2.2.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.1.0...v2.2.0
|
618
|
-
[2.1.0]: https://github.com/puppetlabs/rspec-puppet/compare/v2.0.1...v2.1.0
|
619
|
-
[2.0.1]: https://github.com/puppetlabs/rspec-puppet/compare/v2.0.0...v2.0.1
|
620
|
-
[2.0.0]: https://github.com/puppetlabs/rspec-puppet/compare/v1.0.1...v2.0.0
|
276
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/v0.0.2...v0.0.3)
|
277
|
+
|
278
|
+
## [v0.0.2](https://github.com/puppetlabs/rspec-puppet/tree/v0.0.2) - 2011-07-19
|
279
|
+
|
280
|
+
[Full Changelog](https://github.com/puppetlabs/rspec-puppet/compare/3bbb83dc27e2b1621a5966f9d84722fdc3c4ba0a...v0.0.2)
|