Showing with 1,030 additions and 872 deletions.
  1. +13 −0 CHANGELOG.md
  2. +921 −858 REFERENCE.md
  3. +5 −8 lib/facter/redis_server_version.rb
  4. +18 −0 manifests/dnfmodule.pp
  5. +1 −1 manifests/globals.pp
  6. +4 −1 manifests/init.pp
  7. +11 −0 manifests/install.pp
  8. +2 −2 metadata.json
  9. +38 −0 spec/acceptance/suites/dnfmodule/redis_spec.rb
  10. +15 −0 spec/classes/redis_spec.rb
  11. +2 −2 spec/functions/redis/get_spec.rb
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ 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.5.0](https://github.com/voxpupuli/puppet-redis/tree/v8.5.0) (2022-10-28)

[Full Changelog](https://github.com/voxpupuli/puppet-redis/compare/v8.4.0...v8.5.0)

**Implemented enhancements:**

- Use a single regular expression in the Redis fact [\#451](https://github.com/voxpupuli/puppet-redis/pull/451) ([ekohl](https://github.com/ekohl))
- Add support for managing Redis dnfmodule on EL 8+ [\#450](https://github.com/voxpupuli/puppet-redis/pull/450) ([ehelms](https://github.com/ehelms))

**Merged pull requests:**

- Fix get function tests [\#452](https://github.com/voxpupuli/puppet-redis/pull/452) ([ehelms](https://github.com/ehelms))

## [v8.4.0](https://github.com/voxpupuli/puppet-redis/tree/v8.4.0) (2022-05-31)

[Full Changelog](https://github.com/voxpupuli/puppet-redis/compare/v8.3.0...v8.4.0)
Expand Down
Loading