Showing with 170 additions and 150 deletions.
  1. +12 −0 .github/PULL_REQUEST_TEMPLATE.md
  2. +1 −1 .msync.yml
  3. +1 −1 .rubocop.yml
  4. +8 −10 .travis.yml
  5. +12 −82 CHANGELOG.md
  6. +2 −2 Gemfile
  7. +52 −50 README.md
  8. +27 −0 Rakefile
  9. +2 −2 lib/puppet/type/windows_env.rb
  10. +2 −2 metadata.json
  11. +16 −0 spec/acceptance/nodesets/fedora-26-x64.yml
  12. +18 −0 spec/acceptance/nodesets/fedora-27-x64.yml
  13. +17 −0 spec/unit/puppet/type/windows_env_type_spec.rb
12 changes: 12 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,15 @@ Thank you for contributing to this project!
- Our vulnerabilities reporting process is at https://voxpupuli.org/security/
-->
#### Pull Request (PR) description
<!--
Replace this comment with a description of your pull request.
-->

#### This Pull Request (PR) fixes the following issues
<!--
Replace this comment with the list of issues or n/a.
Use format:
Fixes #123
Fixes #124
-->
2 changes: 1 addition & 1 deletion .msync.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
modulesync_config_version: '1.5.0'
modulesync_config_version: '1.9.0'
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Style/HashSyntax:
Style/RedundantReturn:
Enabled: True

Style/EndOfLine:
Layout/EndOfLine:
Enabled: False

Lint/AmbiguousOperator:
Expand Down
18 changes: 8 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,25 @@ dist: trusty
language: ruby
cache: bundler
before_install:
- bundle -v
- rm Gemfile.lock || true
- gem update --system
- gem update bundler
- gem --version
- bundle -v
- rm -f Gemfile.lock
script:
- 'bundle exec rake $CHECK'
matrix:
fast_finish: true
include:
- rvm: 2.1.9
bundler_args: --without system_tests development release
env: PUPPET_VERSION="~> 4.0" CHECK=test PARALLEL_TEST_PROCESSORS=16
- rvm: 2.4.2
env: PUPPET_VERSION="~> 4.0" CHECK=test PARALLEL_TEST_PROCESSORS=12
- rvm: 2.4.3
bundler_args: --without system_tests development release
env: PUPPET_VERSION="~> 5.0" CHECK=test_with_coveralls
- rvm: 2.4.2
- rvm: 2.5.0
bundler_args: --without system_tests development release
env: PUPPET_VERSION="~> 5.0" CHECK=test_with_coveralls
- rvm: 2.4.3
bundler_args: --without system_tests development release
env: PUPPET_VERSION="~> 5.0" CHECK=rubocop
- rvm: 2.4.2
- rvm: 2.4.3
bundler_args: --without system_tests development release
env: PUPPET_VERSION="~> 5.0" CHECK=build DEPLOY_TO_FORGE=yes
branches:
Expand Down
94 changes: 12 additions & 82 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
Each new release typically also includes the latest modulesync defaults.
These should not affect the functionality of the module.

## [v3.1.0](https://github.com/voxpupuli/puppet-windows_env/tree/v3.1.0) (2018-03-28)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v3.0.0...v3.1.0)

**Merged pull requests:**

- bump puppet to latest supported version 4.10.0 [\#46](https://github.com/voxpupuli/puppet-windows_env/pull/46) ([bastelfreak](https://github.com/bastelfreak))
- rework README.md [\#45](https://github.com/voxpupuli/puppet-windows_env/pull/45) ([bastelfreak](https://github.com/bastelfreak))
- Fix title patterns to not use unsupported proc [\#43](https://github.com/voxpupuli/puppet-windows_env/pull/43) ([treydock](https://github.com/treydock))
- release 3.0.0 [\#41](https://github.com/voxpupuli/puppet-windows_env/pull/41) ([bastelfreak](https://github.com/bastelfreak))

## [v3.0.0](https://github.com/voxpupuli/puppet-windows_env/tree/v3.0.0) (2017-11-17)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v2.3.0...v3.0.0)
Expand All @@ -20,87 +31,6 @@ These should not affect the functionality of the module.

## [v2.3.0](https://github.com/voxpupuli/puppet-windows_env/tree/v2.3.0) (2017-02-12)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v2.2.2...v2.3.0)

**Fixed bugs:**

- Check for clobber issues within a single catalog [\#27](https://github.com/voxpupuli/puppet-windows_env/pull/27) ([igalic](https://github.com/igalic))

**Closed issues:**

- License - What type is it? [\#19](https://github.com/voxpupuli/puppet-windows_env/issues/19)
- Values with trailing slash do not include trailing slash [\#15](https://github.com/voxpupuli/puppet-windows_env/issues/15)
- Prepend, type REG\_EXPAND\_SZ seems to constantly add to PATH [\#13](https://github.com/voxpupuli/puppet-windows_env/issues/13)
- Upcoming Puppet 4 / Ruby 2.1.5 Registry compatibility changes [\#8](https://github.com/voxpupuli/puppet-windows_env/issues/8)

**Merged pull requests:**

- release 2.3.0 [\#26](https://github.com/voxpupuli/puppet-windows_env/pull/26) ([bastelfreak](https://github.com/bastelfreak))
- Set min Puppet version\_requirement, namespace fix [\#23](https://github.com/voxpupuli/puppet-windows_env/pull/23) ([juniorsysadmin](https://github.com/juniorsysadmin))
- Adds some basic type testing [\#18](https://github.com/voxpupuli/puppet-windows_env/pull/18) ([petems](https://github.com/petems))

## [v2.2.2](https://github.com/voxpupuli/puppet-windows_env/tree/v2.2.2) (2015-08-08)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v2.2.1...v2.2.2)

**Closed issues:**

- How to avoid duplicates? [\#10](https://github.com/voxpupuli/puppet-windows_env/issues/10)
- "Fixes to prevent autoloading on master from failing" don't work [\#9](https://github.com/voxpupuli/puppet-windows_env/issues/9)
- Could not autoload puppet/type/windows\_env [\#7](https://github.com/voxpupuli/puppet-windows_env/issues/7)

## [v2.2.1](https://github.com/voxpupuli/puppet-windows_env/tree/v2.2.1) (2014-11-07)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v2.2.0...v2.2.1)

**Closed issues:**

- Upcoming Puppet 3.7 / PE 3.4 x64 compatibility changes [\#6](https://github.com/voxpupuli/puppet-windows_env/issues/6)

## [v2.2.0](https://github.com/voxpupuli/puppet-windows_env/tree/v2.2.0) (2014-08-30)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v2.1.0...v2.2.0)

## [v2.1.0](https://github.com/voxpupuli/puppet-windows_env/tree/v2.1.0) (2014-05-28)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v2.0.2...v2.1.0)

**Closed issues:**

- PE 3.2 Error: Downloaded release for badgerious-windows\_env did not match expected checksum [\#4](https://github.com/voxpupuli/puppet-windows_env/issues/4)

## [v2.0.2](https://github.com/voxpupuli/puppet-windows_env/tree/v2.0.2) (2013-07-20)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v2.0.1...v2.0.2)

## [v2.0.1](https://github.com/voxpupuli/puppet-windows_env/tree/v2.0.1) (2013-07-20)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v2.0.0...v2.0.1)

**Implemented enhancements:**

- User variables [\#3](https://github.com/voxpupuli/puppet-windows_env/issues/3)

## [v2.0.0](https://github.com/voxpupuli/puppet-windows_env/tree/v2.0.0) (2013-07-20)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v1.0.0...v2.0.0)

**Implemented enhancements:**

- Allow REG\_EXPAND\_SZ variables to be created [\#1](https://github.com/voxpupuli/puppet-windows_env/issues/1)

## [v1.0.0](https://github.com/voxpupuli/puppet-windows_env/tree/v1.0.0) (2013-06-08)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/a91a72527f915eae4633da87e898fd99b632cd52...v1.0.0)

**Fixed bugs:**

- Ensure relative ordering when 'mergemode =\> insert' [\#2](https://github.com/voxpupuli/puppet-windows_env/issues/2)

# Changelog

## 2017-02-12 Release 2.3.0

This is the last release with Puppet3 support!
* Fix: Check for clobber issues within a single catalog
* Add some basic type testing
Expand Down Expand Up @@ -150,4 +80,4 @@ This is the last release with Puppet3 support!
- New parameter added, 'type'. Allows selection between REG_SZ or REG_EXPAND_SZ registry keys.


\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def location_for(place, fake_version = nil)
end

group :test do
gem 'puppetlabs_spec_helper', '~> 2.5.0', :require => false
gem 'puppetlabs_spec_helper', '~> 2.6.0', :require => false
gem 'rspec-puppet', '~> 2.5', :require => false
gem 'rspec-puppet-facts', :require => false
gem 'rspec-puppet-utils', :require => false
Expand Down Expand Up @@ -57,7 +57,7 @@ group :system_tests do
end

group :release do
gem 'github_changelog_generator', :require => false if RUBY_VERSION >= '2.2.2'
gem 'github_changelog_generator', :require => false, :git => 'https://github.com/skywinder/github-changelog-generator' if RUBY_VERSION >= '2.2.2'
gem 'puppet-blacksmith', :require => false
gem 'voxpupuli-release', :require => false, :git => 'https://github.com/voxpupuli/voxpupuli-release-gem'
gem 'puppet-strings', '~> 1.0', :require => false
Expand Down
Loading