Showing with 15 additions and 2 deletions.
  1. +13 −0 CHANGELOG.md
  2. +1 −1 metadata.json
  3. +1 −1 templates/webhook.bin.erb
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ 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.

## [v6.5.1](https://github.com/voxpupuli/puppet-r10k/tree/v6.5.1) (2018-05-01)

[Full Changelog](https://github.com/voxpupuli/puppet-r10k/compare/v6.5.0...v6.5.1)

**Closed issues:**

- Syntax Error in voxpupuli/puppet-r10k/templates/webhook.bin.erb, line 119 [\#427](https://github.com/voxpupuli/puppet-r10k/issues/427)

**Merged pull requests:**

- Update webhook.bin.erb [\#428](https://github.com/voxpupuli/puppet-r10k/pull/428) ([rnelson0](https://github.com/rnelson0))

## [v6.5.0](https://github.com/voxpupuli/puppet-r10k/tree/v6.5.0) (2018-04-25)

[Full Changelog](https://github.com/voxpupuli/puppet-r10k/compare/v6.4.0...v6.5.0)
Expand All @@ -18,6 +30,7 @@ These should not affect the functionality of the module.

**Merged pull requests:**

- Release 6.5.0 [\#426](https://github.com/voxpupuli/puppet-r10k/pull/426) ([dhollinger](https://github.com/dhollinger))
- Remove Open3 and move process forks [\#425](https://github.com/voxpupuli/puppet-r10k/pull/425) ([dhollinger](https://github.com/dhollinger))
- Fixing compatibility with puppetserver/jruby. [\#424](https://github.com/voxpupuli/puppet-r10k/pull/424) ([dforste](https://github.com/dforste))
- Minor syntax update for deploying individual environment. [\#423](https://github.com/voxpupuli/puppet-r10k/pull/423) ([bschonec](https://github.com/bschonec))
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Vox Pupuli",
"license": "Apache-2.0",
"name": "puppet-r10k",
"version": "6.5.0",
"version": "6.5.1",
"operatingsystem_support": [
{
"operatingsystem": "RedHat",
Expand Down
2 changes: 1 addition & 1 deletion templates/webhook.bin.erb
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class Server < Sinatra::Base
end

module_name = sanitize_input(module_name)
$logger.info("Deploying module #{module_name}" in the background.)
$logger.info("Deploying module #{module_name} in the background.")
Process.detach(fork { deploy_module(module_name) })
end

Expand Down