Merge pull request #524 from mhaskel/better_defined_check
[puppet-modules/puppetlabs-apt.git] / CHANGELOG.md
1 ##2015-04-28 - Supported Release 2.0.1
2 ###Summary
3
4 This bug fixes a few compatibility issues that came up with the 2.0.0 release, and includes test and documentation updates.
5
6 ####Bugfixes
7 - Fix incompatibility with keyrings containing multiple keys
8 - Fix bugs preventing the module from working with Puppet < 3.5.0
9
10 ##2015-04-07 - Supported Release 2.0.0
11 ###Summary
12
13 This is a major rewrite of the apt module. Many classes and defines were removed, but all existing functionality should still work. Please carefully review documentation before upgrading.
14
15 ####Backwards-incompatible changes
16
17 As this is a major rewrite of the module there are a great number of backwards incompatible changes. Please review this and the updated README carefully before upgrading.
18
19 #####`apt_key`
20 - `keyserver_options` parameter renamed to `options`
21
22 #####`apt::backports`
23 - This no longer works out of the box on Linux Mint. If using this on mint, you must specify the `location`, `release`, `repos`, and `key` parameters. [Example](examples/backports.pp)
24
25 #####`apt::builddep`
26 - This define was removed. Functionality can be matched passing 'build-dep' to `install_options` in the package resource. [Example](examples/builddep.pp)
27
28 #####`apt::debian::testing`
29 - This class was removed. Manually add an `apt::source` instead. [Example](examples/debian_testing.pp)
30
31 #####`apt::debian::unstable`
32 - This class was removed. Manually add an `apt::source` instead. [Example](examples/debian_unstable.pp)
33
34 #####`apt::force`
35 - This define was removed. Functionallity can be matched by setting `install_options` in the package resource. See [here](examples/force.pp) for how to set the options.
36
37 #####`apt::hold`
38 - This define was removed. Simply use an `apt::pin` with `priority => 1001` for the same functionality.
39
40 #####`apt`
41 - `always_apt_update` - This parameter was removed. Use `update => { 'frequency' => 'always' }` instead.
42 - `apt_update_frequency` - This parameter was removed. Use `update => { 'frequency' => <frequency> }` instead.
43 - `disable_keys` - This parameter was removed. See this [example](examples/disable_keys.pp) if you need this functionality.
44 - `proxy_host` - This parameter was removed. Use `proxy => { 'host' => <host> }` instead.
45 - `proxy_port` - This parameter was removed. Use `proxy => { 'port' => <port> }` instead.
46 - `purge_sources_list` - This parameter was removed. Use `purge => { 'sources.list' => <bool> }` instead.
47 - `purge_sources_list_d` - This parameter was removed. Use `purge => { 'sources.list.d' => <bool> }` instead.
48 - `purge_preferences` - This parameter was removed. Use `purge => { 'preferences' => <bool> }` instead.
49 - `purge_preferences_d` - This parameter was removed. Use `purge => { 'preferences.d' => <bool> }` instead.
50 - `update_timeout` - This parameter was removed. Use `update => { 'timeout' => <timeout> }` instead.
51 - `update_tries` - This parameter was removed. Use `update => { 'tries' => <tries> }` instead.
52
53 #####`apt::key`
54 - `key` - This parameter was renamed to `id`.
55 - `key_content` - This parameter was renamed to `content`.
56 - `key_source` - This parameter was renamed to `source`.
57 - `key_server` - This parameter was renamed to `server`.
58 - `key_options` - This parameter was renamed to `options`.
59
60 #####`apt::release`
61 - This class was removed. See this [example](examples/release.pp) for how to achieve this functionality.
62
63 #####`apt::source`
64 - `include_src` - This parameter was removed. Use `include => { 'src' => <bool> }` instead. ***NOTE*** This now defaults to false.
65 - `include_deb` - This parameter was removed. Use `include => { 'deb' => <bool> }` instead.
66 - `required_packages` - This parameter was removed. Use package resources for these packages if needed.
67 - `key` - This can either be a key id or a hash including key options. If using a hash, `key => { 'id' => <id> }` must be specified.
68 - `key_server` - This parameter was removed. Use `key => { 'server' => <server> }` instead.
69 - `key_content` - This parameter was removed. Use `key => { 'content' => <content> }` instead.
70 - `key_source` - This parameter was removed. Use `key => { 'source' => <source> }` instead.
71 - `trusted_source` - This parameter was renamed to `allow_unsigned`.
72
73 #####`apt::unattended_upgrades`
74 - This class was removed and is being republished under the puppet-community namespace. The git repository is available [here](https://github.com/puppet-community/puppet-unattended_upgrades) and it will be published to the forge [here](https://forge.puppetlabs.com/puppet/unattended_upgrades).
75
76 ####Changes to default behavior
77 - By default purge unmanaged files in 'sources.list', 'sources.list.d', 'preferences', and 'preferences.d'.
78 - Changed default for `package_manage` in `apt::ppa` to `false`. Set to `true` in a single PPA if you need the package to be managed.
79 - `apt::source` will no longer include the `src` entries by default. 
80 - `pin` in `apt::source` now defaults to `undef` instead of `false`
81
82 ####Features
83 - Added the ability to pass hashes of `apt::key`s, `apt::ppa`s, and `apt::setting`s to `apt`.
84 - Added 'https' key to `proxy` hash to allow disabling `https_proxy` for the `apt::ppa` environment.
85 - Added `apt::setting` define to abstract away configuration.
86 - Added the ability to pass hashes to `pin` and `key` in `apt::backports` and `apt::source`.
87
88 ####Bugfixes
89 - Fixes for strict variables.
90
91 ##2015-03-17 - Supported Release 1.8.0
92 ###Summary
93
94 This is the last planned feature release of the 1.x series of this module. All new features will be evaluated for puppetlabs-apt 2.x.
95
96 This release includes many important features, including support for full fingerprints, and fixes issues where `apt_key` was not supporting user/password and `apt_has_updates` was not properly parsing the `apt-check` output.
97
98 ####Changes to default behavior
99 - The apt module will now throw warnings if you don't use full fingerprints for `apt_key`s
100
101 ####Features
102 - Use gpg to check keys to work around https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1409117 (MODULES-1675)
103 - Add 'oldstable' to the default update origins for wheezy
104 - Add utopic, vivid, and cumulus compatibility
105 - Add support for full fingerprints
106 - New parameter for `apt::source`
107   - `trusted_source`
108 - New parameters for `apt::ppa`
109   - `package_name`
110   - `package_manage`
111 - New parameter for `apt::unattended_upgrades`
112   - `legacy_origin`
113 - Separate `apt::pin` from `apt::backports` to allow pin by release instead of origin
114
115 ####Bugfixes
116 - Cleanup lint and future parser issues
117 - Fix to support username and passwords again for `apt_key` (MODULES-1119)
118 - Fix issue where `apt::force` `$install_check` didn't work with non-English locales (MODULES-1231)
119 - Allow 5 digit ports in `apt_key`
120 - Fix for `ensure => absent` in `apt_key` (MODULES-1661)
121 - Fix `apt_has_updates` not parsing `apt-check` output correctly
122 - Fix inconsistent headers across files (MODULES-1200)
123 - Clean up formatting for 50unattended-upgrades.erb
124
125 ##2014-10-28 - Supported Release 1.7.0
126 ###Summary
127
128 This release includes several new features, documentation and test improvements, and a few bug fixes.
129
130 ####Features
131 - Updated unit and acceptance tests
132 - Update module to work with Linux Mint
133 - Documentation updates
134 - Future parser / strict variables support
135 - Improved support for long GPG keys
136 - New parameters!
137   - Added `apt_update_frequency` to apt
138   - Added `cfg_files` and `cfg_missing` parameters to apt::force
139   - Added `randomsleep` to apt::unattended_upgrades
140 - Added `apt_update_last_success` fact
141 - Refactored facts for performance improvements
142
143 ####Bugfixes
144 - Update apt::builddep to require Exec['apt_update'] instead of notifying it
145 - Clean up lint errors
146
147 ##2014-08-20 - Supported Release 1.6.0
148 ###Summary
149
150 ####Features
151 - Allow URL or domain name for key_server parameter
152 - Allow custom comment for sources list
153 - Enable auto-update for Debian squeeze LTS
154 - Add facts showing available updates
155 - Test refactoring
156
157 ####Bugfixes
158 - Allow dashes in URL or domain for key_server parameter
159
160 ##2014-08-13 - Supported Release 1.5.3
161 ###Summary
162
163 This is a bugfix releases.  It addresses a bad regex, failures with unicode
164 characters, and issues with the $proxy_host handling in apt::ppa.
165
166 ####Features
167 - Synced files from Modulesync
168
169 ####Bugfixes
170 - Fix regex to follow APT requirements in apt::pin
171 - Fix for unicode characters
172 - Fix inconsistent $proxy_host handling in apt and apt::ppa
173 - Fix typo in README
174 - Fix broken acceptance tests
175
176 ##2014-07-15 - Supported Release 1.5.2
177 ###Summary
178
179 This release merely updates metadata.json so the module can be uninstalled and
180 upgraded via the puppet module command.
181
182 ##2014-07-10 - Supported Release 1.5.1
183 ###Summary
184
185 This release has added tests to ensure graceful failure on OSX.
186
187 ##2014-06-04 - Release 1.5.0
188 ###Summary
189
190 This release adds support for Ubuntu 14.04.  It also includes many new features 
191 and important bugfixes.  One huge change is that apt::key was replaced with
192 apt_key, which allows you to use puppet resource apt_key to inventory keys on
193 your system.
194
195 Special thanks to daenney, our intrepid unofficial apt maintainer!
196
197 ####Features
198 - Add support for Ubuntu Trusty!
199 - Add apt::hold define
200 - Generate valid *.pref files in apt::pin
201 - Made pin_priority configurable for apt::backports
202 - Add apt_key type and provider
203 - Rename "${apt_conf_d}/proxy" to "${apt_conf_d}/01proxy"
204 - apt::key rewritten to use apt_key type
205 - Add support for update_tries to apt::update
206
207 ####Bugfixes
208 - Typo fixes
209 - Fix unattended upgrades
210 - Removed bogus line when using purge_preferences
211 - Fix apt::force to upgrade allow packages to be upgraded to the pacakge from the specified release
212
213 ##2014-03-04 - Supported Release 1.4.2
214 ###Summary
215
216 This is a supported release. This release tidies up 1.4.1 and re-enables
217 support for Ubuntu 10.04
218
219 ####Features
220
221 ####Bugfixes
222 - Fix apt:ppa to include the -y Ubuntu 10.04 requires.
223 - Documentation changes.
224 - Test fixups.
225
226 ####Known Bugs
227
228 * No known issues.
229
230
231
232 ##2014-02-13 1.4.1
233 ###Summary
234 This is a bugfix release.
235
236 ####Bugfixes
237 - Fix apt::force unable to upgrade packages from releases other than its original
238 - Removed a few refeneces to aptitude instead of apt-get for portability
239 - Removed call to getparam() due to stdlib dependency
240 - Correct apt::source template when architecture is provided
241 - Retry package installs if apt is locked
242 - Use root to exec in apt::ppa
243 - Updated tests and converted acceptance tests to beaker
244
245 ##2013-10-08 - Release 1.4.0
246
247 ###Summary
248
249 Minor bugfix and allow the timeout to be adjusted.
250
251 ####Features
252 - Add an `updates_timeout` to apt::params
253
254 ####Bugfixes
255 - Ensure apt::ppa can read a ppa removed by hand.
256
257
258 ##2013-10-08 - Release 1.3.0
259 ###Summary
260
261 This major feature in this release is the new apt::unattended_upgrades class,
262 allowing you to handle Ubuntu's unattended feature.  This allows you to select
263 specific packages to automatically upgrade without any further user
264 involvement.
265
266 In addition we extend our Wheezy support, add proxy support to apt:ppa and do
267 various cleanups and tweaks.
268
269 ####Features
270 - Add apt::unattended_upgrades support for Ubuntu.
271 - Add wheezy backports support.
272 - Use the geoDNS http.debian.net instead of the main debian ftp server.
273 - Add `options` parameter to apt::ppa in order to pass options to apt-add-repository command.
274 - Add proxy support for apt::ppa (uses proxy_host and proxy_port from apt).
275
276 ####Bugfixes
277 - Fix regsubst() calls to quote single letters (for future parser).
278 - Fix lint warnings and other misc cleanup.
279
280
281 ##2013-07-03 - Release 1.2.0
282
283 ####Features
284 - Add geppetto `.project` natures
285 - Add GH auto-release
286 - Add `apt::key::key_options` parameter
287 - Add complex pin support using distribution properties for `apt::pin` via new properties:
288   - `apt::pin::codename`
289   - `apt::pin::release_version`
290   - `apt::pin::component`
291   - `apt::pin::originator`
292   - `apt::pin::label`
293 - Add source architecture support to `apt::source::architecture`
294
295 ####Bugfixes
296 - Use apt-get instead of aptitude in apt::force
297 - Update default backports location
298 - Add dependency for required packages before apt-get update
299
300
301 ##2013-06-02 - Release 1.1.1
302 ###Summary
303
304 This is a bug fix release that resolves a number of issues:
305
306 * By changing template variable usage, we remove the deprecation warnings
307   for Puppet 3.2.x
308 * Fixed proxy file removal, when proxy absent
309
310 Some documentation, style and whitespaces changes were also merged. This
311 release also introduced proper rspec-puppet unit testing on Travis-CI to help
312 reduce regression.
313
314 Thanks to all the community contributors below that made this patch possible.
315
316 #### Detail Changes
317
318 * fix minor comment type (Chris Rutter)
319 * whitespace fixes (Michael Moll)
320 * Update travis config file (William Van Hevelingen)
321 * Build all branches on travis (William Van Hevelingen)
322 * Standardize travis.yml on pattern introduced in stdlib (William Van Hevelingen)
323 * Updated content to conform to README best practices template (Lauren Rother)
324 * Fix apt::release example in readme (Brian Galey)
325 * add @ to variables in template (Peter Hoeg)
326 * Remove deprecation warnings for pin.pref.erb as well (Ken Barber)
327 * Update travis.yml to latest versions of puppet (Ken Barber)
328 * Fix proxy file removal (Scott Barber)
329 * Add spec test for removing proxy configuration (Dean Reilly)
330 * Fix apt::key listing longer than 8 chars (Benjamin Knofe)
331
332
333
334
335 ## Release 1.1.0
336 ###Summary
337
338 This release includes Ubuntu 12.10 (Quantal) support for PPAs.
339
340 ---
341
342 ##2012-05-25 - Puppet Labs <info@puppetlabs.com> - Release 0.0.4
343 ###Summary
344
345  * Fix ppa list filename when there is a period in the PPA name
346  * Add .pref extension to apt preferences files
347  * Allow preferences to be purged
348  * Extend pin support
349
350
351 ##2012-05-04 - Puppet Labs <info@puppetlabs.com> - Release 0.0.3
352 ###Summary
353  
354  * only invoke apt-get update once
355  * only install python-software-properties if a ppa is added
356  * support 'ensure => absent' for all defined types
357  * add apt::conf
358  * add apt::backports
359  * fixed Modulefile for module tool dependency resolution
360  * configure proxy before doing apt-get update
361  * use apt-get update instead of aptitude for apt::ppa
362  * add support to pin release
363
364
365 ##2012-03-26 - Puppet Labs <info@puppetlabs.com> - Release 0.0.2
366 ###Summary
367
368 * 41cedbb (#13261) Add real examples to smoke tests.
369 * d159a78 (#13261) Add key.pp smoke test
370 * 7116c7a (#13261) Replace foo source with puppetlabs source
371 * 1ead0bf Ignore pkg directory.
372 * 9c13872 (#13289) Fix some more style violations
373 * 0ea4ffa (#13289) Change test scaffolding to use a module & manifest dir fixture path
374 * a758247 (#13289) Clean up style violations and fix corresponding tests
375 * 99c3fd3 (#13289) Add puppet lint tests to Rakefile
376 * 5148cbf (#13125) Apt keys should be case insensitive
377 * b9607a4 Convert apt::key to use anchors
378
379
380 ##2012-03-07 - Puppet Labs <info@puppetlabs.com> - Release 0.0.1
381 ###Summary
382
383 * d4fec56 Modify apt::source release parameter test
384 * 1132a07 (#12917) Add contributors to README
385 * 8cdaf85 (#12823) Add apt::key defined type and modify apt::source to use it
386 * 7c0d10b (#12809) $release should use $lsbdistcodename and fall back to manual input
387 * be2cc3e (#12522) Adjust spec test for splitting purge
388 * 7dc60ae (#12522) Split purge option to spare sources.list
389 * 9059c4e Fix source specs to test all key permutations
390 * 8acb202 Add test for python-software-properties package
391 * a4af11f Check if python-software-properties is defined before attempting to define it.
392 * 1dcbf3d Add tests for required_packages change
393 * f3735d2 Allow duplicate $required_packages
394 * 74c8371 (#12430) Add tests for changes to apt module
395 * 97ebb2d Test two sources with the same key
396 * 1160bcd (#12526) Add ability to reverse apt { disable_keys => true }
397 * 2842d73 Add Modulefile to puppet-apt
398 * c657742 Allow the use of the same key in multiple sources
399 * 8c27963 (#12522) Adding purge option to apt class
400 * 997c9fd (#12529) Add unit test for apt proxy settings
401 * 50f3cca (#12529) Add parameter to support setting a proxy for apt
402 * d522877 (#12094) Replace chained .with_* with a hash
403 * 8cf1bd0 (#12094) Remove deprecated spec.opts file
404 * 2d688f4 (#12094) Add rspec-puppet tests for apt
405 * 0fb5f78 (#12094) Replace name with path in file resources
406 * f759bc0 (#11953) Apt::force passes $version to aptitude
407 * f71db53 (#11413) Add spec test for apt::force to verify changes to unless
408 * 2f5d317 (#11413) Update dpkg query used by apt::force
409 * cf6caa1 (#10451) Add test coverage to apt::ppa
410 * 0dd697d include_src parameter in example; Whitespace cleanup
411 * b662eb8 fix typos in "repositories"
412 * 1be7457 Fix (#10451) - apt::ppa fails to "apt-get update" when new PPA source is added
413 * 864302a Set the pin priority before adding the source (Fix #10449)
414 * 1de4e0a Refactored as per mlitteken
415 * 1af9a13 Added some crazy bash madness to check if the ppa is installed already. Otherwise the manifest tries to add it on every run!
416 * 52ca73e (#8720) Replace Apt::Ppa with Apt::Builddep
417 * 5c05fa0 added builddep command.
418 * a11af50 added the ability to specify the content of a key
419 * c42db0f Fixes ppa test.
420 * 77d2b0d reformatted whitespace to match recommended style of 2 space indentation.
421 * 27ebdfc ignore swap files.
422 * 377d58a added smoke tests for module.
423 * 18f614b reformatted apt::ppa according to recommended style.
424 * d8a1e4e Created a params class to hold global data.
425 * 636ae85 Added two params for apt class
426 * 148fc73 Update LICENSE.
427 * ed2d19e Support ability to add more than one PPA
428 * 420d537 Add call to apt-update after add-apt-repository in apt::ppa
429 * 945be77 Add package definition for python-software-properties
430 * 71fc425 Abs paths for all commands
431 * 9d51cd1 Adding LICENSE
432 * 71796e3 Heading fix in README
433 * 87777d8 Typo in README
434 * f848bac First commit