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,19 @@ 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.3.1](https://github.com/voxpupuli/puppet-r10k/tree/v6.3.1) (2017-12-07)

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

**Fixed bugs:**

- syntax errors when starting the webhook [\#394](https://github.com/voxpupuli/puppet-r10k/issues/394)
- Fix typo in webhook [\#396](https://github.com/voxpupuli/puppet-r10k/pull/396) ([alexjfisher](https://github.com/alexjfisher))

**Merged pull requests:**

- release 6.3.0 [\#393](https://github.com/voxpupuli/puppet-r10k/pull/393) ([bastelfreak](https://github.com/bastelfreak))

## [v6.3.0](https://github.com/voxpupuli/puppet-r10k/tree/v6.3.0) (2017-11-26)

[Full Changelog](https://github.com/voxpupuli/puppet-r10k/compare/v6.2.0...v6.3.0)
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.3.0",
"version": "6.3.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 @@ -172,7 +172,7 @@ class Server < Sinatra::Base
data['deleted'] rescue false || # Github
data['push']['changes'][0]['closed'] rescue false || # Bitbucket
data['refChanges'][0]['type'] rescue false || # Stash/Bitbucket Server
data['after] rescue false # Gitlab
data['after'] rescue false # Gitlab
)

if [true, 'DELETED', '0000000000000000000000000000000000000000'].include?(branch_deleted)
Expand Down