Showing with 15 additions and 3 deletions.
  1. +12 −0 CHANGELOG.md
  2. +1 −1 REFERENCE.md
  3. +1 −1 manifests/config/setting.pp
  4. +1 −1 metadata.json
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
Each new release typically also includes the latest modulesync defaults.
These should not affect the functionality of the module.

## [v8.0.1](https://github.com/voxpupuli/puppet-php/tree/v8.0.1) (2021-08-27)

[Full Changelog](https://github.com/voxpupuli/puppet-php/compare/v8.0.0...v8.0.1)

**Fixed bugs:**

- Allow empty string for setting value [\#640](https://github.com/voxpupuli/puppet-php/pull/640) ([smortex](https://github.com/smortex))

**Closed issues:**

- String\[1\] forbids empty php::settings value [\#639](https://github.com/voxpupuli/puppet-php/issues/639)

## [v8.0.0](https://github.com/voxpupuli/puppet-php/tree/v8.0.0) (2021-08-26)

[Full Changelog](https://github.com/voxpupuli/puppet-php/compare/v7.1.0...v8.0.0)
Expand Down
2 changes: 1 addition & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2054,7 +2054,7 @@ Data type: `String[1]`

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

Data type: `Variant[Integer, String[1]]`
Data type: `Variant[Integer, String]`



Expand Down
2 changes: 1 addition & 1 deletion manifests/config/setting.pp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#
define php::config::setting (
String[1] $key,
Variant[Integer, String[1]] $value,
Variant[Integer, String] $value,
Stdlib::Absolutepath $file,
) {
assert_private()
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": "puppet-php",
"version": "8.0.0",
"version": "8.0.1",
"author": "Vox Pupuli",
"summary": "Generic PHP module that supports many platforms",
"license": "MIT",
Expand Down