Prepare for version 0.2.0
This commit is contained in:
parent
e8e1282b6d
commit
e9f150c5af
3 changed files with 64 additions and 12 deletions
22
CHANGELOG
22
CHANGELOG
|
@ -1,9 +1,3 @@
|
||||||
KNOWN ISSUES:
|
|
||||||
- In 0.24.8 you will see inintended notifies, if you build a file
|
|
||||||
in a run, the next run will also see it as changed. This is due
|
|
||||||
to how 0.24.8 does the purging of unhandled files, this is improved
|
|
||||||
in 0.25.x and we cannot work around it in our code.
|
|
||||||
|
|
||||||
CHANGELOG:
|
CHANGELOG:
|
||||||
- 2010/02/19 - initial release
|
- 2010/02/19 - initial release
|
||||||
- 2010/03/12 - add support for 0.24.8 and newer
|
- 2010/03/12 - add support for 0.24.8 and newer
|
||||||
|
@ -27,3 +21,19 @@ CHANGELOG:
|
||||||
- 2010/10/04 - Make the warning message configurable
|
- 2010/10/04 - Make the warning message configurable
|
||||||
- 2010/12/03 - Add flags to make concat work better on Solaris - thanks Jonathan Boyett
|
- 2010/12/03 - Add flags to make concat work better on Solaris - thanks Jonathan Boyett
|
||||||
- 2011/02/03 - Make the shell script more portable and add a config option for root group
|
- 2011/02/03 - Make the shell script more portable and add a config option for root group
|
||||||
|
- 2011/06/21 - Make base dir root readable only for security
|
||||||
|
- 2011/06/23 - Set base directory using a fact instead of hardcoding it
|
||||||
|
- 2011/06/23 - Support operating as non privileged user
|
||||||
|
- 2011/06/23 - Support dash instead of bash or sh
|
||||||
|
- 2011/07/11 - Better solaris support
|
||||||
|
- 2011/12/05 - Use fully qualified variables
|
||||||
|
- 2011/12/13 - Improve Nexenta support
|
||||||
|
- 2012/04/11 - Do not use any GNU specific extensions in the shell script
|
||||||
|
- 2012/03/24 - Comply to community style guides
|
||||||
|
- 2012/05/23 - Better errors when basedir isnt set
|
||||||
|
- 2012/05/31 - Add spec tests
|
||||||
|
- 2012/07/11 - Include concat::setup in concat improving UX
|
||||||
|
- 2012/08/14 - Puppet Lint improvements
|
||||||
|
- 2012/08/30 - The target path can be different from the $name
|
||||||
|
- 2012/08/30 - More Puppet Lint cleanup
|
||||||
|
- 2012/09/04 - RELEASE 0.2.0
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name 'ripienaar-concat'
|
name 'ripienaar-concat'
|
||||||
version '0.1.0'
|
version '0.2.0'
|
||||||
source 'git://github.com/ripienaar/puppet-concat.git'
|
source 'git://github.com/ripienaar/puppet-concat.git'
|
||||||
author 'R.I.Pienaar'
|
author 'R.I.Pienaar'
|
||||||
license 'Apache'
|
license 'Apache'
|
||||||
|
|
|
@ -76,10 +76,6 @@ class apache {
|
||||||
|
|
||||||
Known Issues:
|
Known Issues:
|
||||||
-------------
|
-------------
|
||||||
* In 0.24.8 you will see inintended notifies, if you build a file
|
|
||||||
in a run, the next run will also see it as changed. This is due
|
|
||||||
to how 0.24.8 does the purging of unhandled files, this is improved
|
|
||||||
in 0.25.x and we cannot work around it in our code.
|
|
||||||
* Since puppet-concat now relies on a fact for the concat directory,
|
* Since puppet-concat now relies on a fact for the concat directory,
|
||||||
you will need to set up pluginsync = true for at least the first run.
|
you will need to set up pluginsync = true for at least the first run.
|
||||||
You have this issue if puppet fails to run on the client and you have
|
You have this issue if puppet fails to run on the client and you have
|
||||||
|
@ -103,6 +99,52 @@ Contributors:
|
||||||
* Patch to remove hard coded paths relying on OS path
|
* Patch to remove hard coded paths relying on OS path
|
||||||
* Patch to use file{} to copy the resulting file to the final destination. This means Puppet client will show diffs and that hopefully we can change file ownerships now
|
* Patch to use file{} to copy the resulting file to the final destination. This means Puppet client will show diffs and that hopefully we can change file ownerships now
|
||||||
|
|
||||||
|
**Peter Meier**
|
||||||
|
|
||||||
|
* Basedir as a fact
|
||||||
|
* Unprivileged user support
|
||||||
|
|
||||||
|
**Sharif Nassar**
|
||||||
|
|
||||||
|
* Solaris/Nexenta support
|
||||||
|
* Better error reporting
|
||||||
|
|
||||||
|
**Christian G. Warden**
|
||||||
|
|
||||||
|
* Style improvements
|
||||||
|
|
||||||
|
**Reid Vandewiele**
|
||||||
|
|
||||||
|
* Support non GNU systems by default
|
||||||
|
|
||||||
|
**Erik Dalén*
|
||||||
|
|
||||||
|
* Style improvements
|
||||||
|
|
||||||
|
**Gildas Le Nadan**
|
||||||
|
|
||||||
|
* Documentation improvements
|
||||||
|
|
||||||
|
**Paul Belanger**
|
||||||
|
|
||||||
|
* Testing improvements and Travis support
|
||||||
|
|
||||||
|
**Branan Purvine-Riley**
|
||||||
|
|
||||||
|
* Support Puppet Module Tool better
|
||||||
|
|
||||||
|
**Dustin J. Mitchell**
|
||||||
|
|
||||||
|
* Always include setup when using the concat define
|
||||||
|
|
||||||
|
**Andreas Jaggi**
|
||||||
|
|
||||||
|
* Puppet Lint support
|
||||||
|
|
||||||
|
**Jan Vansteenkiste**
|
||||||
|
|
||||||
|
* Configurable paths
|
||||||
|
|
||||||
Contact:
|
Contact:
|
||||||
--------
|
--------
|
||||||
You can contact me on rip@devco.net or follow my blog at http://www.devco.net I am also on twitter as ripienaar
|
R.I.Pienaar / rip@devco.net / @ripienaar / http://devco.net
|
||||||
|
|
Loading…
Reference in a new issue