puppet-syntax 2.6.0 → 2.6.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/.travis.yml +8 -0
- data/CHANGELOG.md +15 -4
- data/Gemfile +2 -1
- data/lib/puppet-syntax/version.rb +1 -1
- data/puppet-syntax.gemspec +1 -0
- metadata +17 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5015bb344c1e58bce99c9eb8c93c6f011c85275c9e0748f34199441c9f965ba0
|
|
4
|
+
data.tar.gz: 1316c65fe87f5adc8bdd2faa7febd073298d2a8401203efbdca2eb3054c477f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b528fdd903665e128d3171b7e40459d37e21907049185b1db37408c5e12548dcd1695391f5343279ddee1aa0e79a2721228faa410edd2b94e8c282b6fb92c04
|
|
7
|
+
data.tar.gz: 06f8d2a184c2fd74349fcb937609a12526558a1cdba1071d6dbf4693b71b428ef913d814862a1c7311f54913e2a240159daebaf1b3b7437d40080e1552f3c3b3
|
data/.travis.yml
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
+
dist: bionic
|
|
2
3
|
language: ruby
|
|
3
4
|
# Workaround https://github.com/bundler/bundler/issues/3558
|
|
4
5
|
before_install: gem install bundler
|
|
@@ -30,3 +31,10 @@ deploy:
|
|
|
30
31
|
tags: true
|
|
31
32
|
all_branches: true
|
|
32
33
|
repo: voxpupuli/puppet-syntax
|
|
34
|
+
notifications:
|
|
35
|
+
email: false
|
|
36
|
+
irc:
|
|
37
|
+
on_success: always
|
|
38
|
+
on_failure: always
|
|
39
|
+
channels:
|
|
40
|
+
- "chat.freenode.org#voxpupuli-notifications"
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [v2.6.1](https://github.com/voxpupuli/puppet-syntax/tree/v2.6.1) (2020-01-11)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/puppet-syntax/compare/v2.6.0...v2.6.1)
|
|
8
|
+
|
|
9
|
+
**Fixed bugs:**
|
|
10
|
+
|
|
11
|
+
- Add `puppet` gem as runtime dependency [\#116](https://github.com/voxpupuli/puppet-syntax/pull/116) ([bastelfreak](https://github.com/bastelfreak))
|
|
12
|
+
|
|
13
|
+
**Merged pull requests:**
|
|
14
|
+
|
|
15
|
+
- traivs: run tests on Ubuntu 18.04 [\#117](https://github.com/voxpupuli/puppet-syntax/pull/117) ([bastelfreak](https://github.com/bastelfreak))
|
|
16
|
+
- travis: enable irc / disable email notifications [\#114](https://github.com/voxpupuli/puppet-syntax/pull/114) ([bastelfreak](https://github.com/bastelfreak))
|
|
17
|
+
|
|
3
18
|
## [v2.6.0](https://github.com/voxpupuli/puppet-syntax/tree/v2.6.0) (2019-10-05)
|
|
4
19
|
|
|
5
20
|
[Full Changelog](https://github.com/voxpupuli/puppet-syntax/compare/v2.5.0...v2.6.0)
|
|
@@ -22,10 +37,6 @@
|
|
|
22
37
|
|
|
23
38
|
- Support puppet 6.5 [\#106](https://github.com/voxpupuli/puppet-syntax/pull/106) ([alexjfisher](https://github.com/alexjfisher))
|
|
24
39
|
|
|
25
|
-
**Fixed bugs:**
|
|
26
|
-
|
|
27
|
-
- search manifests outside of manifests directory [\#104](https://github.com/voxpupuli/puppet-syntax/issues/104)
|
|
28
|
-
|
|
29
40
|
## [v2.4.3](https://github.com/voxpupuli/puppet-syntax/tree/v2.4.3) (2019-02-09)
|
|
30
41
|
|
|
31
42
|
[Full Changelog](https://github.com/voxpupuli/puppet-syntax/compare/v2.4.2...v2.4.3)
|
data/Gemfile
CHANGED
|
@@ -18,7 +18,8 @@ end
|
|
|
18
18
|
gemspec
|
|
19
19
|
|
|
20
20
|
# Override gemspec for CI matrix builds.
|
|
21
|
-
|
|
21
|
+
# But only if the environment variable is set
|
|
22
|
+
gem 'puppet', *location_for(ENV['PUPPET_VERSION'] || '>= 5') if ENV['PUPPET_VERSION']
|
|
22
23
|
|
|
23
24
|
# older version required for ruby 1.9 compat, as it is pulled in as dependency of puppet, this has to be carried by the module
|
|
24
25
|
gem 'json_pure', '<= 2.0.1'
|
data/puppet-syntax.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puppet-syntax
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.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:
|
|
11
|
+
date: 2020-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -24,6 +24,20 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: puppet
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '5'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '5'
|
|
27
41
|
- !ruby/object:Gem::Dependency
|
|
28
42
|
name: pry
|
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -142,8 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
142
156
|
- !ruby/object:Gem::Version
|
|
143
157
|
version: '0'
|
|
144
158
|
requirements: []
|
|
145
|
-
|
|
146
|
-
rubygems_version: 2.7.7
|
|
159
|
+
rubygems_version: 3.0.6
|
|
147
160
|
signing_key:
|
|
148
161
|
specification_version: 4
|
|
149
162
|
summary: Syntax checks for Puppet manifests, templates, and Hiera YAML
|