From f3be3b625a2260d74530b2308ec8409ba810509f Mon Sep 17 00:00:00 2001 From: Hunter Haugen Date: Thu, 8 May 2014 15:18:36 -0700 Subject: Release - 4.2.0 Summary ======== This release adds many new functions and fixes, and continues to be backwards compatible with stdlib 3.x Features ------- - New `base64()` function - New `deep_merge()` function - New `delete_undef_values()` function - New `delete_values()` function - New `difference()` function - New `intersection()` function - New `is_bool()` function - New `pick_default()` function - New `union()` function - New `validate_ipv4_address` function - New `validate_ipv6_address` function - Update `ensure_packages()` to take an option hash as a second parameter. - Update `range()` to take an optional third argument for range step - Update `validate_slength()` to take an optional third argument for minimum length - Update `file_line` resource to take `after` and `multiple` attributes Bugfixes -------- - Correct `is_string`, `is_domain_name`, `is_array`, `is_float`, and `is_function_available` for parsing odd types such as bools and hashes. - Allow facts.d facts to contain `=` in the value - Fix `root_home` fact on darwin systems - Fix `concat()` to work with a second non-array argument - Fix `floor()` to work with integer strings - Fix `is_integer()` to return true if passed integer strings - Fix `is_numeric()` to return true if passed integer strings - Fix `merge()` to work with empty strings - Fix `pick()` to raise the correct error type - Fix `uriescape()` to use the default URI.escape list - Add/update unit & acceptance tests. --- Modulefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modulefile') diff --git a/Modulefile b/Modulefile index 9d2e8c2..a685348 100644 --- a/Modulefile +++ b/Modulefile @@ -1,5 +1,5 @@ name 'puppetlabs-stdlib' -version '4.1.0' +version '4.2.0' source 'git://github.com/puppetlabs/puppetlabs-stdlib.git' author 'puppetlabs' license 'Apache 2.0' -- cgit v1.2.3 From 14c9155745fe4b472e530da6965c0866b6f2640d Mon Sep 17 00:00:00 2001 From: Ashley Penney Date: Fri, 9 May 2014 16:57:32 +0200 Subject: Prepare a 4.2.1 release. --- Modulefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modulefile') diff --git a/Modulefile b/Modulefile index a685348..c5da72d 100644 --- a/Modulefile +++ b/Modulefile @@ -1,5 +1,5 @@ name 'puppetlabs-stdlib' -version '4.2.0' +version '4.2.1' source 'git://github.com/puppetlabs/puppetlabs-stdlib.git' author 'puppetlabs' license 'Apache 2.0' -- cgit v1.2.3 From 1155d66381103e64ecbf2753372f138283fe3b3e Mon Sep 17 00:00:00 2001 From: Ashley Penney Date: Wed, 14 May 2014 16:37:48 -0400 Subject: Prepare a 4.3.0 release. --- Modulefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modulefile') diff --git a/Modulefile b/Modulefile index c5da72d..3375491 100644 --- a/Modulefile +++ b/Modulefile @@ -1,5 +1,5 @@ name 'puppetlabs-stdlib' -version '4.2.1' +version '4.3.0' source 'git://github.com/puppetlabs/puppetlabs-stdlib.git' author 'puppetlabs' license 'Apache 2.0' -- cgit v1.2.3 From e7b27205c4fdc9162f11ee606be93865c1a080ea Mon Sep 17 00:00:00 2001 From: Ashley Penney Date: Wed, 4 Jun 2014 14:15:14 -0400 Subject: Prepare a 4.2.2 release. --- Modulefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modulefile') diff --git a/Modulefile b/Modulefile index 3375491..bf80e3b 100644 --- a/Modulefile +++ b/Modulefile @@ -1,5 +1,5 @@ name 'puppetlabs-stdlib' -version '4.3.0' +version '4.2.2' source 'git://github.com/puppetlabs/puppetlabs-stdlib.git' author 'puppetlabs' license 'Apache 2.0' -- cgit v1.2.3 From cfce787890cffed6889b32267204c97f24905416 Mon Sep 17 00:00:00 2001 From: Hunter Haugen Date: Mon, 23 Jun 2014 16:17:23 -0700 Subject: Remove Modulefile; use metadata.json --- Modulefile | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 Modulefile (limited to 'Modulefile') diff --git a/Modulefile b/Modulefile deleted file mode 100644 index bf80e3b..0000000 --- a/Modulefile +++ /dev/null @@ -1,11 +0,0 @@ -name 'puppetlabs-stdlib' -version '4.2.2' -source 'git://github.com/puppetlabs/puppetlabs-stdlib.git' -author 'puppetlabs' -license 'Apache 2.0' -summary 'Puppet Module Standard Library' -description 'Standard Library for Puppet Modules' -project_page 'https://github.com/puppetlabs/puppetlabs-stdlib' - -## Add dependencies, if any: -# dependency 'username/name', '>= 1.2.0' -- cgit v1.2.3