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