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