Prep 1.5.0
This commit is contained in:
parent
d31803cce6
commit
decebd45d1
2 changed files with 17 additions and 5 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
||||||
|
## Supported Release 1.5.0
|
||||||
|
### Summary
|
||||||
|
This release adds the long-awaited `show_diff` parameter for diffing the complete file on changes (or can also just show the md5 sums).
|
||||||
|
|
||||||
|
### Features
|
||||||
|
- Added `show_diff` parameter to show diffs on changes.
|
||||||
|
- Remove empty ini sections when the last line in the section is removed.
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
- Workaround `create_ini_settings()` duplicate resources puppet bug PUP-4709
|
||||||
|
|
||||||
## Supported Release 1.4.3
|
## Supported Release 1.4.3
|
||||||
###Summary
|
###Summary
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
{
|
{
|
||||||
"name": "puppetlabs-inifile",
|
"name": "puppetlabs-inifile",
|
||||||
"version": "1.4.3",
|
"version": "1.5.0",
|
||||||
"author": "Puppet Labs",
|
"author": "Puppet Labs",
|
||||||
"summary": "Resource types for managing settings in INI files",
|
"summary": "Resource types for managing settings in INI files",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"source": "https://github.com/puppetlabs/puppetlabs-inifile",
|
"source": "https://github.com/puppetlabs/puppetlabs-inifile",
|
||||||
"project_page": "https://github.com/puppetlabs/puppetlabs-inifile",
|
"project_page": "https://github.com/puppetlabs/puppetlabs-inifile",
|
||||||
"issues_url": "https://tickets.puppetlabs.com/browse/MODULES",
|
"issues_url": "https://tickets.puppetlabs.com/browse/MODULES",
|
||||||
|
"dependencies": [
|
||||||
|
{"name":"puppetlabs/stdlib","version_requirement":">= 4.2.0 < 5.0.0"}
|
||||||
|
],
|
||||||
|
"data_provider": null,
|
||||||
"operatingsystem_support": [
|
"operatingsystem_support": [
|
||||||
{
|
{
|
||||||
"operatingsystem": "RedHat",
|
"operatingsystem": "RedHat",
|
||||||
|
@ -93,14 +97,11 @@
|
||||||
"requirements": [
|
"requirements": [
|
||||||
{
|
{
|
||||||
"name": "pe",
|
"name": "pe",
|
||||||
"version_requirement": ">= 3.0.0 < 2015.4.0"
|
"version_requirement": ">= 3.0.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "puppet",
|
"name": "puppet",
|
||||||
"version_requirement": ">= 3.0.0 < 5.0.0"
|
"version_requirement": ">= 3.0.0 < 5.0.0"
|
||||||
}
|
}
|
||||||
],
|
|
||||||
"dependencies": [
|
|
||||||
{"name":"puppetlabs/stdlib","version_requirement":">= 4.2.0"}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue