puppet-lint-unquoted_string-check 4.0.0 → 4.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6de7242b30fb58458758423cfc9ce0f551353908db26985be0a9e7fa6719f031
4
- data.tar.gz: 9595e4afeb664986ea5bc086dfcc2d783fc66b449786807ea44ce9c8393cfd0e
3
+ metadata.gz: 80bfaa2e06beb1eab0d2c4573b13025d6a95ebebf4fad499f80432cd9b644768
4
+ data.tar.gz: 700cc406f9df5dfa17bacc6d2112aed54566378ce296b35527572032033dfb0a
5
5
  SHA512:
6
- metadata.gz: ed3ef64c7ba18ee429b29bc78a325a3913df5d1b492ba87908b411a2a1d5d5d0101c80e445e2acdb3c74e7f1a6b55a4dae5a55b31e0755ba68d741b7a10ab34e
7
- data.tar.gz: 201a193756c171fc922dce4e8d7b8d3fa11e50b0867ff6703541f7f65358a4549009e419405f60447f0822be9df7925b98296a359ec8647d18256db731cceb6a
6
+ metadata.gz: 84ef8d85b8946a67f07c54644a3d41e01442c11266c92998ae49c0b9222531df3fab2300edb38f71ac72e705d0d94a381d202b5ad1520f84ef70b34fd9142e6d
7
+ data.tar.gz: b39eaf9b2d3b5f2ba50c75a822a534719ec926ba6e0ff8fc4dae326da01832fc91fc1ebb35bc5f4167525f35c5e8661d82df3f2e1efea01b07ca39fde30a91df
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [4.1.0](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/tree/4.1.0) (2025-09-25)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/compare/4.0.0...4.1.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Add `SemVerRange` to `:TYPE in case` test [\#28](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/pull/28) ([kenyon](https://github.com/kenyon))
12
+
5
13
  ## [4.0.0](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/tree/4.0.0) (2025-09-25)
6
14
 
7
15
  [Full Changelog](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/compare/3.0.0...4.0.0)
@@ -58,6 +58,7 @@ describe 'unquoted_string_in_selector' do
58
58
  $listen_socket = $service_bind ? {
59
59
  Undef => undef,
60
60
  Stdlib::IP::Address::V6 => "[${service_bind}]:${service_port}",
61
+ SemVerRange('>1.0.0') => 'xyz',
61
62
  default => "${service_bind}:${service_port}",
62
63
  }
63
64
  PUPPET
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puppet-lint-unquoted_string-check
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli