Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-10 | MODULES-5440 fix upper bound for puppet | tphoney | |
2017-08-09 | Merge pull request #802 from eputnam/release_prep | Hailee Kenney | |
(MODULES-5436) release prep for 4.17.2 | |||
2017-08-09 | (MODULES-5436) release prep for 4.17.2 | Eric Putnam | |
2017-08-09 | (maint) adjust puppet version requirement | Eric Putnam | |
2017-06-15 | Merge pull request #781 from HelenCampbell/rpreppo | Paula McMaw | |
Release prep for 4.17.1 | |||
2017-06-15 | Release prep for 4.17.1 | Helen Campbell | |
2017-06-14 | Merge pull request #780 from thallgren/issue/modules-5095/workaround-pup-7650 | Helen | |
(MODULES-5095) Workaround for PUP-7650 | |||
2017-06-14 | (MODULES-5095) Workaround for PUP-7650 | Thomas Hallgren | |
This commit adds a simple workaround for the problem described in PUP-7650. The workaround is harmless and can remain in place regardless of if the fix for PUP-7650 is in place or not. | |||
2017-05-30 | Merge pull request #778 from marsmensch/master | Eric Putnam | |
MODULES-4821 puppetlabs-stdlib: Update the version compatibility to >= 4.7.0 < 5.0.0 | |||
2017-05-24 | Merge pull request #779 from jbondpdx/master | Eric Putnam | |
(FM-6197) formatting fixes for file_line resource | |||
2017-05-24 | (FM-6197) formatting fixes for file_line resource | jbondpdx | |
2017-05-23 | MODULES-4821 puppetlabs-stdlib: Update the version compatibility to >= 4.7.0 ↵ | Florian Maier | |
< 5.0.0 | |||
2017-05-10 | Merge pull request #776 from puppetlabs/release | Paula McMaw | |
Merge back 4.17.0 | |||
2017-05-09 | add tests | Hunter Haugen | |
2017-05-09 | Fix issue where the following causes obscure catalog compilation errors: | Alex Dacre | |
``` file { '/tmp/somefile': ensure => 'file', } File['/tmp/somefile'] -> Package <| |> ensure_packages($somearray) ``` If $somearray is undefined or one of the elements contains an empty string, an error like the following is thrown: Could not find resource 'Package[]' for relationship from 'File[/tmp/somefile]' on node $::fqdn | |||
2017-05-09 | (MODULES-4706) release prep 4.17.0 | tphoney | |
2017-05-09 | Release prep 4.17.0 | Hunter Haugen | |
2017-05-09 | (PE-20308) Also fix defined type strings & references | Hunter Haugen | |
2017-05-09 | Test for defined_with_params() returning false for defined types | Dominic Cleal | |
defined_with_params() now returns false for defined types, causing duplicate resources when using ensure_resources(). Introduced by 4f19c27 in PE-20308. | |||
2017-05-09 | (maint) rename main readme (#772) | Eric Putnam | |
Transifex, our translation service, only works with .md files, so this renames from .markdown to .md | |||
2017-05-08 | Merge pull request #771 from eputnam/master | Jean B | |
(MODULES-4706) prerelease fixes | |||
2017-05-08 | (MODULES-4706) prerelease fixes | jbondpdx | |
2017-05-05 | Updating translations for readmes/README_ja_JP.md | transifex-bot | |
2017-05-05 | Merge pull request #768 from pmcmaw/removeitalics | Jean B | |
Removing italics for 'undef' value | |||
2017-05-05 | Removing italics for 'undef' value | Paula McMaw | |
This causes issues with displaying a Japanese translation. It struggles rendering the `) therefore removing italics. | |||
2017-05-05 | Updating translations for readmes/README_ja_JP.md | transifex-bot | |
2017-05-05 | Updating translations for readmes/README_ja_JP.md | transifex-bot | |
2017-05-05 | Updating translations for readmes/README_ja_JP.md | transifex-bot | |
2017-05-05 | Updating translations for readmes/README_ja_JP.md | transifex-bot | |
2017-05-05 | Updating translations for readmes/README_ja_JP.md | transifex-bot | |
2017-05-04 | Updating translations for readmes/README_ja_JP.md | transifex-bot | |
2017-05-04 | Updating translations for locales/ja/puppetlabs-stdlib.po | transifex-bot | |
2017-04-26 | Merge pull request #763 from hunner/fix_type_loading | Helen | |
(PE-20308) Correct boundary for 4.5 vs 4.6 | |||
2017-04-26 | (PE-20308) Correct boundary for 4.5 vs 4.6 | Hunter Haugen | |
2017-04-26 | Merge pull request #761 from hunner/fix_type_loading | Thomas Hallgren | |
(PE-20308) Pass a literal type and not a string to findresource | |||
2017-04-25 | (PE-20308) Pass a literal type and not a string to findresource | Hunter Haugen | |
- `defined_with_params` calls `findresource(reference.to_s)` - `findresource` is https://github.com/puppetlabs/puppet/blob/4.8.1/lib/puppet/parser/compiler.rb#L407 and points to https://github.com/puppetlabs/puppet/blob/4.8.1/lib/puppet/resource/catalog.rb#L352 - This calls `Puppet::Resource.new` with the type https://github.com/puppetlabs/puppet/blob/4.8.1/lib/puppet/resource/catalog.rb#L366 - This ends up calling `resource_type` via https://github.com/puppetlabs/puppet/blob/4.8.1/lib/puppet/resource.rb#L317-L319 and that ends up declaring the type via the autoloader api at https://github.com/puppetlabs/puppet/blob/4.8.1/lib/puppet/resource.rb#L390 - But why does the autoloader API fail to find it in the current environment? - Okay, so when the autoloader is trying to find the type, it uses the typeloader to look it up in the current environment https://github.com/puppetlabs/puppet/blob/4.8.1/lib/puppet/metatype/manager.rb#L171 - this calls `get_file` and `mark_loaded` https://github.com/puppetlabs/puppet/blob/4.8.1/lib/puppet/util/autoload.rb#L64-L67 Suggested workaround is to pass a literal type instead of a string to `findresource` to fix in stdlib, and also to fix loading/requiring of type in core puppet. This seems to affect more recent versions of puppet, so fallback to original behavior on pre-4.5 | |||
2017-04-25 | Merge pull request #760 from puppetlabs/release | Eric Putnam | |
Release mergeback | |||
2017-04-19 | Merge pull request #758 from sathieu/file_line_ruby18 | Hunter Haugen | |
Ruby 1.8 doesn't support open_args | |||
2017-04-18 | Ruby 1.8 doesn't support open_args | Mathieu Parent | |
Regression from #726 | |||
2017-04-06 | Merge pull request #755 from rnelson0/patch-1 | Hunter Haugen | |
TOC updates | |||
2017-04-05 | TOC updates | Rob Nelson | |
Add TOC entries for the various reference sections, plus a markdown-related typo in a header | |||
2017-04-04 | Merge pull request #747 from jbondpdx/loc-edit | Hunter Haugen | |
(MODULES-4322) pre-loc edit on stdlib README | |||
2017-04-04 | (MODULES-4322) pre-localization edit on stdlib README | jbondpdx | |
So many fixes, just so many. | |||
2017-03-30 | [msync] 786266 Implement puppet-module-gems, a45803 Remove metadata.json ↵ | Wilson McCoubrey | |
from locales config (#754) * [msync] 786266 Implement puppet-module-gems, a45803 Remove metadata.json from locales config * [maint] Fix puppet-lint warnings introduced with 2.2.0 puppet-lint release | |||
2017-03-23 | Merge pull request #746 from pmcmaw/FM-6116-add-stdlib-pot | Eric Putnam | |
(FM-6116) - Adding POT file for metadata.json | |||
2017-03-23 | (FM-6116) - Adding POT file for metadata.json | Paula McMaw | |
2017-03-23 | [MODULES-4528] Replace Puppet.version.to_f version comparison from ↵ | Wilson McCoubrey | |
spec_helper.rb (#745) | |||
2017-03-21 | Merge pull request #718 from sspreitzer/master_glob | Wilson McCoubrey | |
Add glob function | |||
2017-03-21 | Merge pull request #743 from domcleal/alias-error-expectation | Wilson McCoubrey | |
Update alias spec error message expectation for PUP-7371 | |||
2017-03-21 | Release prep for 4.16.0 (#744) | Helen | |