Skip to content

Commit

Permalink
Release prep v9.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Action committed Sep 26, 2022
1 parent 9f27ea9 commit 34722ba
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 41 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v9.0.1](https://github.com/puppetlabs/puppetlabs-apt/tree/v9.0.1) (2022-09-26)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-apt/compare/v9.0.0...v9.0.1)

### Fixed

- \(GH-1057\) Regex fix to allow dotted resources [\#1058](https://github.com/puppetlabs/puppetlabs-apt/pull/1058) ([LukasAud](https://github.com/LukasAud))
- \(GH-1055\) Fix hardcoded cache path [\#1056](https://github.com/puppetlabs/puppetlabs-apt/pull/1056) ([chelnak](https://github.com/chelnak))
- \(GH-cat-9\) Update module to match current syntax standard [\#1053](https://github.com/puppetlabs/puppetlabs-apt/pull/1053) ([david22swan](https://github.com/david22swan))

## [v9.0.0](https://github.com/puppetlabs/puppetlabs-apt/tree/v9.0.0) (2022-08-18)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-apt/compare/v8.5.0...v9.0.0)
Expand Down
80 changes: 40 additions & 40 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,11 @@ The following parameters are available in the `apt` class:
* [`backports`](#backports)
* [`confs`](#confs)
* [`update`](#update)
* [`update_defaults`](#update_defaults)
* [`purge`](#purge)
* [`purge_defaults`](#purge_defaults)
* [`proxy`](#proxy)
* [`proxy_defaults`](#proxy_defaults)
* [`sources`](#sources)
* [`keys`](#keys)
* [`ppas`](#ppas)
Expand All @@ -87,9 +90,6 @@ The following parameters are available in the `apt` class:
* [`preferences_d`](#preferences_d)
* [`config_files`](#config_files)
* [`sources_list_force`](#sources_list_force)
* [`update_defaults`](#update_defaults)
* [`purge_defaults`](#purge_defaults)
* [`proxy_defaults`](#proxy_defaults)
* [`include_defaults`](#include_defaults)
* [`apt_conf_d`](#apt_conf_d)
* [`source_key_defaults`](#source_key_defaults)
Expand Down Expand Up @@ -179,6 +179,14 @@ Default: 'reluctantly'.

Default value: `$apt::params::update`

##### <a name="update_defaults"></a>`update_defaults`

Data type: `Hash`

The default update settings that are combined and merged with the passed `update` value

Default value: `$apt::params::update_defaults`

##### <a name="purge"></a>`purge`

Data type: `Hash`
Expand All @@ -194,6 +202,14 @@ Options:

Default value: `$apt::params::purge`

##### <a name="purge_defaults"></a>`purge_defaults`

Data type: `Hash`

The default purge settings that are combined and merged with the passed `purge` value

Default value: `$apt::params::purge_defaults`

##### <a name="proxy"></a>`proxy`

Data type: `Apt::Proxy`
Expand All @@ -202,6 +218,14 @@ Configures Apt to connect to a proxy server. Valid options: a hash matching the

Default value: `$apt::params::proxy`

##### <a name="proxy_defaults"></a>`proxy_defaults`

Data type: `Hash`

The default proxy settings that are combined and merged with the passed `proxy` value

Default value: `$apt::params::proxy_defaults`

##### <a name="sources"></a>`sources`

Data type: `Hash`
Expand Down Expand Up @@ -334,30 +358,6 @@ Specifies whether to perform force purge or delete. Default false.

Default value: `$apt::params::sources_list_force`

##### <a name="update_defaults"></a>`update_defaults`

Data type: `Hash`



Default value: `$apt::params::update_defaults`

##### <a name="purge_defaults"></a>`purge_defaults`

Data type: `Hash`



Default value: `$apt::params::purge_defaults`

##### <a name="proxy_defaults"></a>`proxy_defaults`

Data type: `Hash`



Default value: `$apt::params::proxy_defaults`

##### <a name="include_defaults"></a>`include_defaults`

Data type: `Hash`
Expand All @@ -370,15 +370,15 @@ Default value: `$apt::params::include_defaults`

Data type: `String`


The path to the file `apt.conf.d`

Default value: `$apt::params::apt_conf_d`

##### <a name="source_key_defaults"></a>`source_key_defaults`

Data type: `Hash`


The fault `source_key` settings

Default value: `{
'server' => $keyserver,
Expand Down Expand Up @@ -714,63 +714,63 @@ Data type: `Optional[String]`

Tells APT to prefer packages that support the specified release. Typical values include 'stable', 'testing', and 'unstable'.

Default value: `''`
Default value: ``undef``

##### <a name="release_version"></a>`release_version`

Data type: `Optional[String]`

Tells APT to prefer packages that support the specified operating system release version (such as Debian release version 7).

Default value: `''`
Default value: ``undef``

##### <a name="component"></a>`component`

Data type: `Optional[String]`

Names the licensing component associated with the packages in the directory tree of the Release file.

Default value: `''`
Default value: ``undef``

##### <a name="originator"></a>`originator`

Data type: `Optional[String]`

Names the originator of the packages in the directory tree of the Release file.

Default value: `''`
Default value: ``undef``

##### <a name="label"></a>`label`

Data type: `Optional[String]`

Names the label of the packages in the directory tree of the Release file.

Default value: `''`
Default value: ``undef``

##### <a name="origin"></a>`origin`

Data type: `Optional[String]`

The package origin


Default value: `''`
Default value: ``undef``

##### <a name="version"></a>`version`

Data type: `Optional[String]`

The version of the package


Default value: `''`
Default value: ``undef``

##### <a name="codename"></a>`codename`

Data type: `Optional[String]`

The codename of the package


Default value: `''`
Default value: ``undef``

### <a name="aptppa"></a>`apt::ppa`

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-apt",
"version": "9.0.0",
"version": "9.0.1",
"author": "puppetlabs",
"summary": "Provides an interface for managing Apt source, key, and definitions with Puppet",
"license": "Apache-2.0",
Expand Down

0 comments on commit 34722ba

Please sign in to comment.