Skip to content

Commit

Permalink
(misc) Release 2.23.1
Browse files Browse the repository at this point in the history
Signed-off-by: R.I.Pienaar <[email protected]>
  • Loading branch information
ripienaar committed Jan 12, 2021
1 parent 93c5de2 commit fa63bfc
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 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/01/12| |Release 2.23.1 |
|2020/01/10|114 |Support `expr` filters and retire old filter logic |
|2020/01/05|83 |Restore `mco ping` to being ruby based as a tool for low level testing of the client |
|2020/12/29| |Allow tasks to be run as another user |
|2020/12/30|92 |Remove the ability to enroll Puppet CA, use `choria enroll` |
|2020/12/29| |Release 2.23.0 |
|2020/12/27|85 |update `mco choria` to `choria rpc` |
|2020/12/26|83 |Update `mco ping` to call `choria ping` |
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require "rubygems"
require "rubygems/package_task"

PROJ_VERSION = "2.23.0"
PROJ_VERSION = "2.23.1"

spec = Gem::Specification.new do |s|
s.name = "choria-mcorpc-support"
Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module MCollective
require "mcollective/util"
require "mcollective/validator"

VERSION = "2.23.0".freeze
VERSION = "2.23.1".freeze

def self.version
VERSION
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 @@ -362,4 +362,4 @@
]
}
]
}
}
4 changes: 2 additions & 2 deletions lib/mcollective/agent/rpcutil.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ action "get_fact", :description => "Retrieve a single fact from the fact store"
:prompt => "The name of the fact",
:description => "The fact to retrieve",
:type => :string,
:validation => '^[\w\-\.]+$',
:validation => '.+',
:optional => false,
:maxlength => 256
:maxlength => 512

output :fact,
:description => "The name of the fact being returned",
Expand Down
4 changes: 2 additions & 2 deletions lib/mcollective/agent/rpcutil.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@
"type": "string",
"default": null,
"optional": false,
"validation": "^[\\w\\-\\.]+$",
"maxlength": 256
"validation": ".+",
"maxlength": 512
}
},
"output": {
Expand Down

0 comments on commit fa63bfc

Please sign in to comment.