Skip to content

Mergeback 4.12.x #603

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
May 3, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## Supported Release 4.12.0
###Summary

This release provides several new functions, bugfixes, modulesync changes, and some documentation updates.

####Features
- Adds `clamp`. This function keeps values within a specified range.
- Adds `validate_x509_rsa_key_pair`. This function validates an x509 RSA certificate and key pair.
- Adds `dig`. This function performs a deep lookup in nested hashes or arrays.
- Extends the `base64` support to fit `rfc2045` and `rfc4648`.
- Adds `is_ipv6_address` and `is_ipv4_address`. These functions validate the specified ipv4 or ipv6 addresses.
- Adds `enclose_ipv6`. This function encloses IPv6 addresses in square brackets.
- Adds `ensure_resources`. This function takes a list of resources and creates them if they do not exist.
- Extends `suffix` to support applying a suffix to keys in a hash.
- Apply modulesync changes.
- Add validate_email_address function.

####Bugfixes
- Fixes `fqdn_rand_string` tests, since Puppet 4.4.0 and later have a higher `fqdn_rand` ceiling.
- (MODULES-3152) Adds a check to `package_provider` to prevent failures if Gem is not installed.
- Fixes to README.md.
- Fixes catch StandardError rather than the gratuitous Exception
- Fixes file_line attribute validation.
- Fixes concat with Hash arguments.

## Supported Release 4.11.0
###Summary

Expand Down
11 changes: 4 additions & 7 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,9 @@ Converts any object to an array containing that object. Empty argument lists are

#### `base64`

Converts a string to and from base64 encoding.
Requires an `action` ('encode', 'decode') and either a plain or base64-encoded `string`,
and an optional `method` ('default', 'strict', 'urlsafe')
Converts a string to and from base64 encoding. Requires an `action` ('encode', 'decode') and either a plain or base64-encoded `string`, and an optional `method` ('default', 'strict', 'urlsafe')

for backward compatibility, `metohd` will be set as `default` if not specified.
For backward compatibility, `method` will be set as `default` if not specified.

*Examples:*
~~~
Expand Down Expand Up @@ -265,7 +263,7 @@ Takes a resource reference and an optional hash of attributes. Returns 'true' if

#### `delete`

Deletes all instances of a given element from an array, substring from a string, or key from a hash. Arrays and hashes may also match on regular expressions. For example, `delete(['a','b','c','b'], 'b')` returns ['a','c']; `delete('abracadabra', 'bra')` returns 'acada'. `delete({'a' => 1,'b' => 2,'c' => 3},['b','c'])` returns {'a'=> 1}, `delete(['abf', 'ab', 'ac'], '^ab.*')` returns ['ac']. *Type*: rvalue.
Deletes all instances of a given element from an array, substring from a string, or key from a hash. For example, `delete(['a','b','c','b'], 'b')` returns ['a','c']; `delete('abracadabra', 'bra')` returns 'acada'. `delete({'a' => 1,'b' => 2,'c' => 3},['b','c'])` returns {'a'=> 1}. *Type*: rvalue.

#### `delete_at`

Expand Down Expand Up @@ -346,8 +344,7 @@ Returns true if the argument is an array or hash that contains no elements, or a

#### `enclose_ipv6`

Takes an array of ip addresses and encloses the ipv6 addresses with square
brackets. *Type*: rvalue.
Takes an array of ip addresses and encloses the ipv6 addresses with square brackets. *Type*: rvalue.

#### `ensure_packages`

Expand Down
4 changes: 3 additions & 1 deletion lib/puppet/parser/functions/delete.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# delete.rb
#

# TODO(Krzysztof Wilczynski): We need to add support for regular expression ...

module Puppet::Parser::Functions
newfunction(:delete, :type => :rvalue, :doc => <<-EOS
Deletes all instances of a given element from an array, substring from a
Expand Down Expand Up @@ -32,7 +34,7 @@ module Puppet::Parser::Functions
Array(arguments[1]).each do |item|
case collection
when Array, Hash
collection.delete_if { |coll_item| coll_item =~ %r{#{item}} }
collection.delete item
when String
collection.gsub! item, ''
else
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/parser/functions/is_email_address.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

module Puppet::Parser::Functions
newfunction(:is_email_address, type: :rvalue, doc: <<-EOS
newfunction(:is_email_address, :type => :rvalue, :doc => <<-EOS
Returns true if the string passed to this function is a valid email address.
EOS
) do |arguments|
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-stdlib",
"version": "4.11.0",
"version": "4.12.0",
"author": "puppetlabs",
"summary": "Standard library of resources for Puppet modules.",
"license": "Apache-2.0",
Expand Down
8 changes: 2 additions & 6 deletions spec/functions/delete_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
it { is_expected.to run.with_params([], 'two').and_return([]) }
it { is_expected.to run.with_params(['two'], 'two').and_return([]) }
it { is_expected.to run.with_params(['two', 'two'], 'two').and_return([]) }
it { is_expected.to run.with_params(['one', 'two', 'three'], '^t.*').and_return(['one']) }
it { is_expected.to run.with_params(['one', 'two', 'three'], 'four').and_return(['one', 'two', 'three']) }
it { is_expected.to run.with_params(['one', 'two', 'three'], 'e').and_return(['one', 'two', 'three']) }
it { is_expected.to run.with_params(['one', 'two', 'three'], 'two').and_return(['one', 'three']) }
it { is_expected.to run.with_params(['two', 'one', 'two', 'three', 'two'], 'two').and_return(['one', 'three']) }
it { is_expected.to run.with_params(['one', 'two', 'three', 'two'], ['one', 'two']).and_return(['three']) }
Expand All @@ -33,7 +33,7 @@
it { is_expected.to run.with_params('barfoobar', ['foo', 'barbar']).and_return('') }
end

describe 'deleting from a hash' do
describe 'deleting from an array' do
it { is_expected.to run.with_params({}, '').and_return({}) }
it { is_expected.to run.with_params({}, 'key').and_return({}) }
it { is_expected.to run.with_params({'key' => 'value'}, 'key').and_return({}) }
Expand All @@ -45,10 +45,6 @@
.with_params({'key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3'}, ['key1', 'key2']) \
.and_return( {'key3' => 'value3'})
}
it { is_expected.to run \
.with_params({'key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3'}, ['^key\d']) \
.and_return({})
}
end

it "should leave the original array intact" do
Expand Down