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