Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-10 | Merge pull request #355 from hunner/release_4.4.0 | Morgan Haskel | |
Release 4.4.0 | |||
2014-11-10 | Release 4.4.0 | Hunter Haugen | |
Summary This release has an overhauled readme, new private manifest function, and fixes many future parser bugs. Features - All new shiny README - New `private()` function for making private manifests (yay!) Bugfixes - Code reuse in `bool2num()` and `zip()` - Fix many functions to handle `generate()` no longer returning a string on new puppets - `concat()` no longer modifies the first argument (whoops) - strict variable support for `getvar()`, `member()`, `values_at`, and `has_interface_with()` - `to_bytes()` handles PB and EB now - Fix `tempfile` ruby requirement for `validate_augeas()` and `validate_cmd()` - Fix `validate_cmd()` for windows - Correct `validate_string()` docs to reflect non-handling of `undef` - Fix `file_line` matching on older rubies | |||
2014-11-10 | Merge pull request #354 from puppetlabs/4.3.x | Morgan Haskel | |
4.3.x | |||
2014-11-07 | Merge pull request #343 from zacharyalexstern/fix_to_bytes | Travis Fields | |
Added correct converstions for PB and EB. | |||
2014-11-04 | Merge pull request #350 from cyberious/modules1413 | Morgan Haskel | |
MODULES-1413 Add ability for member to take numeric objects | |||
2014-11-04 | MODULES-1413 Ability to for future parser to use member with FixNum types | Travis Fields | |
2014-11-04 | Merge branch '4.3.x' | Travis Fields | |
Conflicts: spec/acceptance/ensure_packages_spec.rb spec/acceptance/ensure_resource_spec.rb | |||
2014-11-04 | Merge pull request #353 from cyberious/WindowsTestIsolationFix | Morgan Haskel | |
Fix the unless for test cases on ensure_package and ensure_resource | |||
2014-11-04 | Fix the unless for test cases on ensure_package and ensure_resource | Travis Fields | |
Conflicts: spec/acceptance/ensure_packages_spec.rb spec/acceptance/ensure_resource_spec.rb | |||
2014-10-30 | Merge branch '4.3.x' | Travis Fields | |
2014-10-30 | Merge pull request #349 from cyberious/4.3.x | Morgan Haskel | |
Fix validate_cmd, previous addition of SystemCallError only works for Puppet 3.7, previous version throw different exception. Wrapping in generic Exception catch all | |||
2014-10-29 | Fix validate_cmd, previous addition of SystemCallError only works for Puppet ↵ | Travis Fields | |
3.7, previous version throw different exception. Wrapping in generic Exception catch all | |||
2014-10-29 | Merge remote-tracking branch 'origin/4.3.x' | Travis Fields | |
2014-10-29 | Merge pull request #348 from cyberious/4.3.x | Morgan Haskel | |
Add proper exception catching of Windows errors when CreateProcess does not succeed | |||
2014-10-29 | Add proper exception catching of Windows errors when CreateProcess does not ↵ | Travis Fields | |
succeed | |||
2014-10-28 | Merge pull request #347 from cyberious/master | Colleen Murphy | |
Fix issue with ensure_request | |||
2014-10-28 | Add windows test exclusion to ensure_resource | Travis Fields | |
2014-10-28 | Merge pull request #346 from cyberious/master | Colleen Murphy | |
Spec_helper_acceptance fix provision section | |||
2014-10-28 | Fixed a mistake where we were trying to touch a host file using the default ↵ | Travis Fields | |
which was not relavent to the host we were modifying | |||
2014-10-28 | Merge pull request #345 from cyberious/master | Colleen Murphy | |
Fix logic issue with not including windows for testing ensure_packages as ruby and gem are not on the install path | |||
2014-10-28 | Fix logic issue with not including windows for testing ensure_packages as ↵ | Travis Fields | |
ruby and gem are not on the install path | |||
2014-10-28 | Merge remote-tracking branch 'origin/4.3.x' back to master | Travis Fields | |
2014-10-28 | Merge pull request #344 from cyberious/TestCaseFixes | Colleen Murphy | |
Fix testcases for Future Parser and resolve issue with values_at in assuming that it was dealing with a string | |||
2014-10-28 | Fix testcases for Future Parser and resolve issue with values_at in assuming ↵ | Travis Fields | |
that it was dealing with a string | |||
2014-10-28 | Added correct converstions for PB and EB. | Zachary Alex Stern | |
* We were converting Exabytes to bytes as Petabytes. * Updated tests to cover ever unit. * Added note that we're going by the old, inaccurate definitions of Kilobytes, Megabytes, etc, in that we treat them as powers of 2. | |||
2014-10-24 | Merge branch '4.3.x', add tempfile back for resource validate_cmd and ↵ | Travis Fields | |
validate_augeas | |||
2014-10-24 | Merge pull request #340 from cyberious/4.3.x | John Duarte | |
add require 'tempfile' to resolve a previously autorequired resource | |||
2014-10-24 | add require 'tempfile' to resolve a previously autorequired resource | Travis Fields | |
2014-10-24 | Merge branch '4.3.x' | Travis Fields | |
Conflicts: README.markdown lib/puppet/parser/functions/has_interface_with.rb | |||
2014-10-09 | Merge pull request #262 from tremble/MODULES-707 | Morgan Haskel | |
Modules 707 | |||
2014-10-09 | Merge pull request #335 from jbondpdx/stdlib-readme | Hunter Haugen | |
DOC-248 Revised and updated readme for stdlib module | |||
2014-10-08 | DOC-248 Revised and updated readme for stdlib module | jbondpdx | |
Reorganized and edited stdlib module readme. | |||
2014-10-08 | Merge pull request #334 from cyberious/WindowsHasInterfacesBug | Colleen Murphy | |
ENTERPRISE-281 fixes issue with has_interfaces and case mismatch causing... | |||
2014-10-08 | ENTERPRISE-281 fixes issue with has_interfaces and case mismatch causing us ↵ | Travis Fields | |
not to return some interfaces | |||
2014-09-24 | Merge pull request #303 from bobtfish/fix_strict_variables | Hunter Haugen | |
Fix strict_variables = true | |||
2014-09-22 | Merge pull request #302 from 3flex/update-readme | Hunter Haugen | |
(MODULES-927) Update readme | |||
2014-09-22 | Fix strict_variables = true | Tomas Doran | |
2014-09-22 | Re-use existing str2bool code rather than doing a copy and paste | Mark Chappell | |
2014-09-22 | (MODULES-707) chomp() fails because generate() no longer returns a string | Mark Chappell | |
We need to use unless value.is_a?(String) || value.is_a?(Array) rather than klass = value.class unless [String, Array].include?(klass) because the klass version enforces type checking which is too strict, and does not allow us to accept objects wich have extended String (or Array). For example, generate() function now returns Puppet::Util::Execution::ProcessOutput which is just a very simple extension of String. While this in it's self was not intentional (PUP-2306) it is not unreasonable to cope with objects which extend Strings | |||
2014-09-17 | Merge pull request #320 from JimPanic/patch-2 | Hunter Haugen | |
Update docs of validate_string to reflect bug | |||
2014-09-16 | Merge pull request #321 from cyberious/4.3.x | Hunter Haugen | |
MODULES-1248 Fix issue with not properly counting regex matches with leg... | |||
2014-09-16 | MODULES-1248 Fix issue with not properly counting regex matches with legacy ↵ | Travis Fields | |
versions of ruby | |||
2014-09-16 | Merge pull request #322 from hunner/remove_simplecov | Travis Fields | |
Remove simplecov | |||
2014-09-16 | Remove simplecov | Hunter Haugen | |
simplecov 0.9 dropped ruby 1.8 support, and stdlib is one of the oddball modules that uses it. So we could probably just remove it and be okay. (cherry picked from commit a7c129b22d91fc723a8176c066a3eb96b03a2f56) | |||
2014-09-16 | Note that also future parser does not work | Alexander Pánek | |
2014-09-16 | Updated docs of validate_string to reflect bug | Alexander Pánek | |
See: https://tickets.puppetlabs.com/browse/MODULES-457 | |||
2014-08-28 | Merge pull request #313 from mhaskel/spec_updates | Ashley Penney | |
Update spec_helper for more consistency | |||
2014-08-28 | Update spec_helper for more consistency | Morgan Haskel | |
2014-08-06 | Merge pull request #308 from hunner/remove_cov | Ashley Penney | |
Remove simplecov | |||
2014-08-05 | Remove simplecov | Hunter Haugen | |
simplecov 0.9 dropped ruby 1.8 support, and stdlib is one of the oddball modules that uses it. So we could probably just remove it and be okay. |