Skip to content
This repository has been archived by the owner on Jan 4, 2021. It is now read-only.

Commit

Permalink
Merge pull request #621 from ripienaar/0172
Browse files Browse the repository at this point in the history
(misc) Release 0.17.2
  • Loading branch information
ripienaar authored Apr 19, 2020
2 parents 90a3194 + ce0dcb6 commit 7571198
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 18 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
|Date |Issue |Description |
|----------|------|---------------------------------------------------------------------------------------------------------|
|2020/04/19| |Release 0.17.2 |
|2020/01/23|619 |Place the rpcutil DDL in the correct directory |
|2019/12/05|616 |Correctly extract the playbook name from facts |
|2019/12/03|613 |Improve remote request signing support |
|2019/11/27|611 |Fail gracefully when modulepath is unset |
|2019/11/27| |Release 0.17.1 |
|2019/11/27| |Update `choria-mcorpc-support` dependency |
|2019/11/26| |Release 0.17.0 |
Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/bolt_tasks.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ metadata :name => "bolt_tasks",
:description => "Downloads and runs Puppet Tasks",
:author => "R.I.Pienaar <[email protected]>",
:license => "Apache-2.0",
:version => "0.17.1",
:version => "0.17.2",
:url => "https://choria.io",
:timeout => 60

Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/bolt_tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Downloads and runs Puppet Tasks",
"author": "R.I.Pienaar <[email protected]>",
"license": "Apache-2.0",
"version": "0.17.1",
"version": "0.17.2",
"url": "https://choria.io",
"timeout": 60
},
Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/choria_util.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ metadata :name => "choria_util",
:description => "Choria Utilities",
:author => "R.I.Pienaar <[email protected]>",
:license => "Apache-2.0",
:version => "0.17.1",
:version => "0.17.2",
:url => "https://choria.io",
:timeout => 20

Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/choria_util.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Choria Utilities",
"author": "R.I.Pienaar <[email protected]>",
"license": "Apache-2.0",
"version": "0.17.1",
"version": "0.17.2",
"url": "https://choria.io",
"timeout": 20
},
Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/rpcutil.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ metadata :name => "rpcutil",
:description => "General helpful actions that expose stats and internals to SimpleRPC clients",
:author => "R.I.Pienaar <[email protected]>",
:license => "Apache License, Version 2.0",
:version => "0.17.1",
:version => "0.17.2",
:url => "https://docs.puppetlabs.com/mcollective/",
:timeout => 10

Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/rpcutil.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "General helpful actions that expose stats and internals to SimpleRPC clients",
"author": "R.I.Pienaar <[email protected]>",
"license": "Apache License, Version 2.0",
"version": "0.17.1",
"version": "0.17.2",
"url": "https://docs.puppetlabs.com/mcollective/",
"timeout": 10
},
Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/connector/nats.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ metadata :name => "nats",
:description => "Connector plugin for NATS.io middleware",
:author => "R.I.Pienaar <[email protected]>",
:license => "Apache-2.0",
:version => "0.17.1",
:version => "0.17.2",
:url => "https://github.com/choria-io",
:timeout => 60

Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/data/bolt_task_data.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ metadata :name => "bolt_task",
:description => "Information about past Bolt Task",
:author => "R.I.Pienaar <[email protected]>",
:license => "Apache-2.0",
:version => "0.17.1",
:version => "0.17.2",
:url => "https://choria.io",
:timeout => 1

Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/discovery/choria.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ metadata :name => "choria",
:description => "PuppetDB based discovery for the Choria plugin suite",
:author => "R.I.Pienaar <[email protected]>",
:license => "Apache-2.0",
:version => "0.17.1",
:version => "0.17.2",
:url => "https://github.com/choria-io",
:timeout => 0

Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/util/choria.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class UserError < StandardError; end
class Abort < StandardError; end

unless defined?(Choria::VERSION) # rubocop:disable Style/IfUnlessModifier
VERSION = "0.17.1".freeze
VERSION = "0.17.2".freeze
end

attr_writer :ca
Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/validator/bolt_task_name_validator.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ metadata :name => "bolt_task_name",
:description => "Validates that a string matches Bolt Task Name",
:author => "R.I.Pienaar <[email protected]>",
:license => "Apache-2.0",
:version => "0.17.1",
:version => "0.17.2",
:url => "https://choria.io",
:timeout => 1
6 changes: 3 additions & 3 deletions module/choria/metadata.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "choria-mcollective_choria",
"version": "0.17.1",
"version": "0.17.2",
"author": "R.I.Pienaar <[email protected]>",
"summary": "A suite of MCollective Plugins for AIO Puppet",
"license": "Apache-2.0",
"source": "https://github.com/choria-io/mcollective-choria",
"project_page": "https://github.com/choria-io/mcollective-choria/wiki",
"issues_url": "https://github.com/choria-io/mcollective-choria/issues",
"dependencies": [
{ "name": "choria/mcollective","version_requirement":">= 0.10.0 < 2.0.0"},
{ "name": "choria/mcollective","version_requirement":">= 0.10.4 < 2.0.0"},
{ "name": "choria/mcollective_agent_puppet", "version_requirement": ">= 2.3.1" },
{ "name": "choria/mcollective_agent_package", "version_requirement": ">= 5.1.0" },
{ "name": "choria/mcollective_agent_service", "version_requirement": ">= 4.0.1" },
Expand All @@ -18,7 +18,7 @@
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 4.9.0 < 7.0.0"
"version_requirement": ">= 6.0.0 < 7.0.0"
}
]
}
8 changes: 4 additions & 4 deletions module/tasks/metadata.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "choria-mcollective_agent_bolt_tasks",
"version": "0.17.1",
"version": "0.17.2",
"author": "R.I.Pienaar <[email protected]>",
"summary": "Puppet Tasks integration for Choria",
"license": "Apache-2.0",
"source": "https://github.com/choria-io/mcollective-choria",
"project_page": "https://github.com/choria-io/mcollective-choria/wiki",
"issues_url": "https://github.com/choria-io/mcollective-choria/issues",
"dependencies": [
{ "name": "choria/mcollective","version_requirement":">= 0.9.0 < 2.0.0"},
{ "name": "choria/mcollective_choria","version_requirement":"0.17.1"}
{ "name": "choria/mcollective","version_requirement":">= 0.10.4 < 2.0.0"},
{ "name": "choria/mcollective_choria","version_requirement":"0.17.2"}
],
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 5.4.0"
"version_requirement": ">= 6.0.0"
}
]
}

0 comments on commit 7571198

Please sign in to comment.