Skip to content

Commit

Permalink
Release version 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lbetz committed May 10, 2022
1 parent 4fd2b84 commit ef83263
Show file tree
Hide file tree
Showing 4 changed files with 137 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [v3.4.0](https://github.com/icinga/puppet-icingaweb2/tree/v3.4.0) (2022-05-10)
[Full Changelog](https://github.com/icinga/puppet-icingaweb2/compare/v3.3.0...v3.4.0)

**Implemented enhancements:**

- Support Rocky and AlmaLinux [\#319](https://github.com/Icinga/puppet-icingaweb2/issues/319)
- Add new parameter module\_dir to each module class [\#318](https://github.com/Icinga/puppet-icingaweb2/issues/318)
- Parameter module\_path does not allow more than one path [\#317](https://github.com/Icinga/puppet-icingaweb2/issues/317)

## [v3.3.0](https://github.com/icinga/puppet-icingaweb2/tree/v3.3.0) (2022-03-09)
[Full Changelog](https://github.com/icinga/puppet-icingaweb2/compare/v3.2.4...v3.3.0)

Expand Down
130 changes: 126 additions & 4 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,13 @@ Default value: ``false``

##### `module_path`

Data type: `Stdlib::Absolutepath`
Data type: `Optional[Variant[
Stdlib::Absolutepath,
Array[Stdlib::Absolutepath]]]`

Additional path to module sources. Multiple paths must be separated by colon.

Path to module sources. Multiple paths must be separated by colon.
Default value: ``undef``

##### `theme`

Expand Down Expand Up @@ -368,6 +372,12 @@ Data type: `Stdlib::Absolutepath`



##### `default_module_path`

Data type: `Stdlib::Absolutepath`



##### `mysql_db_schema`

Data type: `Stdlib::Absolutepath`
Expand Down Expand Up @@ -426,6 +436,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -486,6 +504,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -556,6 +582,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -812,6 +846,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -892,6 +934,14 @@ Enables or disables module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -974,6 +1024,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -1045,6 +1103,14 @@ Enables or disables module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -1135,6 +1201,14 @@ Enable or disable module. Defaults to `present`

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -1165,6 +1239,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -1322,6 +1404,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -1413,6 +1503,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -1487,6 +1585,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -1533,6 +1639,14 @@ Enable or disable module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -1596,6 +1710,14 @@ Ensur es the state of the vspheredb module.

Default value: `'present'`

##### `module_dir`

Data type: `Optional[Stdlib::Absolutepath]`

Target directory of the module.

Default value: ``undef``

##### `git_repository`

Data type: `String`
Expand Down Expand Up @@ -2366,9 +2488,9 @@ Default value: `$title`

Data type: `Stdlib::Absolutepath`

Target directory of the module.
Target directory of the module. Defaults to first item of `module_path`.

Default value: `"${::icingaweb2::module_path}/${title}"`
Default value: `"${::icingaweb2::globals::default_module_path}/${title}"`

##### `install_method`

Expand Down
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ git commit -am "Update AUTHORS"
If it is not installed [puppet-strings]:
``` bash
gem install puppet-strings --no-ri --no-rdoc
```

```bash
puppet strings generate --format markdown --out ./REFERENCE.md
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": "icinga-icingaweb2",
"version": "3.3.0",
"version": "3.4.0",
"author": "Icinga Team",
"summary": "Icinga Web 2 Puppet Module",
"license": "Apache-2.0",
Expand Down

0 comments on commit ef83263

Please sign in to comment.