]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/inifile/CHANGELOG.md
add puppetlabs/inifile to 3rdparty
[dsa-puppet.git] / 3rdparty / modules / inifile / CHANGELOG.md
1 ##2015-06-09 - Supported Releases 1.3.0
2 ###Summary
3
4 This is primarily a feature release, but also includes test fixes, documentation updates and synchronization of files with modulesync.
5
6 ####Features
7 - Synchronized files using modulesync
8 - Improved documentation
9 - Allow changing key value separator beyond indentation
10 - Adding the ability to change regex match for $section in inifile
11
12 ####Bugfixes
13 - pin beaker-rspec for windows testing
14 - pin rspec gems for testing
15 - Adds default values for section
16 - Fixed names containing spaces
17
18 ##2014-11-11 - Supported Releases 1.2.0
19 ###Summary
20
21 This is primarily a bugfix release, but also includes documentation updates and synchronization of files with modulesync.
22
23 ####Features
24 - Synchronized files using modulesync
25 - Improved documentation with a warning about old, manually installed inifile with PE3.3+
26
27 ####Bugfixes
28 - Fix issue where single character settings were not being saved
29
30 ##2014-09-30 - Supported Releases 1.1.4
31 ###Summary
32
33 This release includes documentation and test updates.
34
35 ##2014-07-15 - Supported Release 1.1.3
36 ###Summary
37
38 This release merely updates metadata.json so the module can be uninstalled and
39 upgraded via the puppet module command.
40
41 ##2014-07-10 - Supported Release 1.1.2
42 ###Summary
43
44 This is a re-packaging release.
45
46 ##2014-07-07 - Release 1.1.1
47 ###Summary
48
49 This supported bugfix release corrects the inifile section header detection
50 regex (so you can use more characters in your section titles).
51
52 ####Bugfixes
53 - Correct section regex to allow anything other than ]
54 - Correct `exists?` to return a boolean
55 - Lots of test updates
56 - Add missing CONTRIBUTING.md
57
58 ##2014-06-04 - Release 1.1.0
59 ###Summary
60
61 This is a compatibility and feature release.  This release adds one new
62 feature, the ability to control the quote character used.  This allows you to
63 do things like:
64
65 ```
66 ini_subsetting { '-Xms':
67     ensure     => present,
68     path       => '/some/config/file',
69     section    => '',
70     setting    => 'JAVA_ARGS',
71     quote_char => '"',
72     subsetting => '-Xms'
73     value      => '256m',
74   }
75 ```
76
77 Which builds:
78
79 ```
80 JAVA_ARGS="-Xmx256m -Xms256m"
81 ```
82
83 ####Features
84 - Add quote_char parameter to the ini_subsetting resource type
85
86 ####Bugfixes
87
88 ####Known Bugs
89 * No known bugs
90
91 ##2014-03-04 - Supported Release 1.0.3
92 ###Summary
93
94 This is a supported release.  It has only test changes.
95
96 ####Features
97
98 ####Bugfixes
99
100 ####Known Bugs
101 * No known bugs
102
103
104 ##2014-02-26 - Version 1.0.2
105 ###Summary
106 This release adds supported platforms to metadata.json and contains spec fixes
107
108
109 ##2014-02-12 - Version 1.0.1
110 ###Summary
111 This release is a bugfix for handling whitespace/[]'s better, and adding a
112 bunch of tests.
113
114 ####Bugfixes
115 - Handle whitespace in sections
116 - Handle square brances in values
117 - Add metadata.json
118 - Update some travis testing
119 - Tons of beaker-rspec tests
120
121
122 ##2013-07-16 - Version 1.0.0
123 ####Features
124 - Handle empty values.
125 - Handle whitespace in settings names (aka: server role = something)
126 - Add mechanism for allowing ini_setting subclasses to override the
127 formation of the namevar during .instances, to allow for ini_setting
128 derived types that manage flat ini-file-like files and still purge
129 them.
130
131 ---
132 ##2013-05-28 - Chris Price <chris@puppetlabs.com> - 0.10.3
133  * Fix bug in subsetting handling for new settings (cbea5dc)
134
135 ##2013-05-22 - Chris Price <chris@puppetlabs.com> - 0.10.2
136  * Better handling of quotes for subsettings (1aa7e60)
137
138 ##2013-05-21 - Chris Price <chris@puppetlabs.com> - 0.10.1
139  * Change constants to class variables to avoid ruby warnings (6b19864)
140
141 ##2013-04-10 - Erik DalĂ©n <dalen@spotify.com> - 0.10.1
142  * Style fixes (c4af8c3)
143
144 ##2013-04-02 - Dan Bode <dan@puppetlabs.com> - 0.10.1
145  * Add travisfile and Gemfile (c2052b3)
146
147 ##2013-04-02 - Chris Price <chris@puppetlabs.com> - 0.10.1
148  * Update README.markdown (ad38a08)
149
150 ##2013-02-15 - Karel Brezina <karel.brezina@gmail.com> - 0.10.0
151  * Added 'ini_subsetting' custom resource type (4351d8b)
152
153 ##2013-03-11 - Dan Bode <dan@puppetlabs.com> - 0.10.0
154  * guard against nil indentation values (5f71d7f)
155
156 ##2013-01-07 - Dan Bode <dan@puppetlabs.com> - 0.10.0
157  * Add purging support to ini file (2f22483)
158
159 ##2013-02-05 - James Sweeny <james.sweeny@puppetlabs.com> - 0.10.0
160  * Fix test to use correct key_val_parameter (b1aff63)
161
162 ##2012-11-06 - Chris Price <chris@puppetlabs.com> - 0.10.0
163  * Added license file w/Apache 2.0 license (5e1d203)
164
165 ##2012-11-02 - Chris Price <chris@puppetlabs.com> - 0.9.0
166  * Version 0.9.0 released
167
168 ##2012-10-26 - Chris Price <chris@puppetlabs.com> - 0.9.0
169  * Add detection for commented versions of settings (a45ab65)
170
171 ##2012-10-20 - Chris Price <chris@puppetlabs.com> - 0.9.0
172  * Refactor to clarify implementation of `save` (f0d443f)
173
174 ##2012-10-20 - Chris Price <chris@puppetlabs.com> - 0.9.0
175  * Add example for `ensure=absent` (e517148)
176
177 ##2012-10-20 - Chris Price <chris@puppetlabs.com> - 0.9.0
178  * Better handling of whitespace lines at ends of sections (845fa70)
179
180 ##2012-10-20 - Chris Price <chris@puppetlabs.com> - 0.9.0
181  * Respect indentation / spacing for existing sections and settings (c2c26de)
182
183 ##2012-10-17 - Chris Price <chris@puppetlabs.com> - 0.9.0
184  * Minor tweaks to handling of removing settings (cda30a6)
185
186 ##2012-10-10 - Dan Bode <dan@puppetlabs.com> - 0.9.0
187  * Add support for removing lines (1106d70)
188
189 ##2012-10-02 - Dan Bode <dan@puppetlabs.com> - 0.9.0
190  * Make value a property (cbc90d3)
191
192 ##2012-10-02 - Dan Bode <dan@puppetlabs.com> - 0.9.0
193  * Make ruby provider a better parent. (1564c47)
194
195 ##2012-09-29 - Reid Vandewiele <reid@puppetlabs.com> - 0.9.0
196  * Allow values with spaces to be parsed and set (3829e20)
197
198 ##2012-09-24 - Chris Price <chris@pupppetlabs.com> - 0.0.3
199  * Version 0.0.3 released
200
201 ##2012-09-20 - Chris Price <chris@puppetlabs.com> - 0.0.3
202  * Add validation for key_val_separator (e527908)
203
204 ##2012-09-19 - Chris Price <chris@puppetlabs.com> - 0.0.3
205  * Allow overriding separator string between key/val pairs (8d1fdc5)
206
207 ##2012-08-20 - Chris Price <chris@pupppetlabs.com> - 0.0.2
208  * Version 0.0.2 released
209
210 ##2012-08-17 - Chris Price <chris@pupppetlabs.com> - 0.0.2
211  * Add support for "global" section at beginning of file (c57dab4)