beaker-puppet 1.22.0 → 1.22.1
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 +10 -2
- data/Rakefile +1 -1
- data/lib/beaker-puppet/helpers/puppet_helpers.rb +1 -1
- data/lib/beaker-puppet/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13f2e03144c47918054b8cb3b3f470df71761a7b06c513f5c0455a541107c0ec
|
|
4
|
+
data.tar.gz: f03a957fb46bce9f5645640e738534f3bef4eddc84d30a722645a2f713378513
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7853cf2cc0836170a6c0642404e647e6adac07ad315bc9199848aa0c6cc86e6dab010dadee890fb4b8d7050fbddac15e68b00c7a06b05ba9861e547043d729e
|
|
7
|
+
data.tar.gz: 0be933ece5a86492d4c348564cf634376ec51b71fe46f318c4c187e91132674f46a33d7637ed4e7626162164fba3c31cb3f61999af6b232e3df0bd39e9cddd39
|
data/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [
|
|
5
|
+
## [1.22.1](https://github.com/voxpupuli/beaker-puppet/tree/1.22.1) (2021-08-19)
|
|
6
6
|
|
|
7
|
-
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.22.0...1.22.1)
|
|
8
|
+
|
|
9
|
+
**Merged pull requests:**
|
|
10
|
+
|
|
11
|
+
- Revert "Use the built-in Resolv::IPv4::Regex" [\#168](https://github.com/voxpupuli/beaker-puppet/pull/168) ([kenyon](https://github.com/kenyon))
|
|
12
|
+
|
|
13
|
+
## [1.22.0](https://github.com/voxpupuli/beaker-puppet/tree/1.22.0) (2021-08-17)
|
|
14
|
+
|
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.21.0...1.22.0)
|
|
8
16
|
|
|
9
17
|
**Implemented enhancements:**
|
|
10
18
|
|
data/Rakefile
CHANGED
|
@@ -306,7 +306,7 @@ begin
|
|
|
306
306
|
config.exclude_labels = %w{duplicate question invalid wontfix wont-fix skip-changelog}
|
|
307
307
|
config.user = 'voxpupuli'
|
|
308
308
|
config.project = 'beaker-puppet'
|
|
309
|
-
config.future_release = "
|
|
309
|
+
config.future_release = "#{Gem::Specification.load("#{config.project}.gemspec").version}"
|
|
310
310
|
end
|
|
311
311
|
rescue LoadError
|
|
312
312
|
end
|
|
@@ -12,7 +12,7 @@ module Beaker
|
|
|
12
12
|
|
|
13
13
|
# Return the regular expression pattern for an IPv4 address
|
|
14
14
|
def ipv4_regex
|
|
15
|
-
|
|
15
|
+
return /(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
# Return the IP address that given hostname returns when resolved on
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-puppet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.22.
|
|
4
|
+
version: 1.22.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-08-
|
|
11
|
+
date: 2021-08-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|