puppet-syntax 2.6.0 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed40e0315c9f5a3ae3f761b1d2af9779b1ab913e19057af9415bc88791a67d39
4
- data.tar.gz: d4a7e69e7c1e57afe6d0d393469de33cb6c38fd683d985e1cdd9a1daa35317c6
3
+ metadata.gz: 5015bb344c1e58bce99c9eb8c93c6f011c85275c9e0748f34199441c9f965ba0
4
+ data.tar.gz: 1316c65fe87f5adc8bdd2faa7febd073298d2a8401203efbdca2eb3054c477f1
5
5
  SHA512:
6
- metadata.gz: eddfdba6008c885abfefd649165d8aafa31fb920274f8a2cc5221a277bc3b789d637e998516618d066ee039d41032711da910524e39f39e233fd2eeb617b7ff6
7
- data.tar.gz: baeedf5b248d065b73db5365ea11b31db5cab27a953a2158e7d09839e8e96230c26b8a652659bc33bc86f6be31fbf01a4ebd121c230d9d050064c9c4bffc9a33
6
+ metadata.gz: 3b528fdd903665e128d3171b7e40459d37e21907049185b1db37408c5e12548dcd1695391f5343279ddee1aa0e79a2721228faa410edd2b94e8c282b6fb92c04
7
+ data.tar.gz: 06f8d2a184c2fd74349fcb937609a12526558a1cdba1071d6dbf4693b71b428ef913d814862a1c7311f54913e2a240159daebaf1b3b7437d40080e1552f3c3b3
@@ -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"
@@ -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
- gem 'puppet', *location_for(ENV['PUPPET_VERSION'] || '>2.7.0')
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'
@@ -1,3 +1,3 @@
1
1
  module PuppetSyntax
2
- VERSION = '2.6.0'
2
+ VERSION = '2.6.1'
3
3
  end
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  spec.add_dependency "rake"
22
+ spec.add_dependency "puppet", ">= 5"
22
23
 
23
24
  spec.add_development_dependency "pry"
24
25
  spec.add_development_dependency "rb-readline"
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.0
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: 2019-10-05 00:00:00.000000000 Z
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
- rubyforge_project:
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