3 changes: 0 additions & 3 deletions .github/SECURITY.md

This file was deleted.

36 changes: 18 additions & 18 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

pkg/
Gemfile.lock
Gemfile.local
vendor/
.vendor/
spec/fixtures/manifests/
spec/fixtures/modules/
.vagrant/
.bundle/
.ruby-version
coverage/
log/
.idea/
.dependencies/
.librarian/
Puppetfile.lock
/pkg/
/Gemfile.lock
/Gemfile.local
/vendor/
/.vendor/
/spec/fixtures/manifests/
/spec/fixtures/modules/
/.vagrant/
/.bundle/
/.ruby-version
/coverage/
/log/
/.idea/
/.dependencies/
/.librarian/
/Puppetfile.lock
*.iml
.*.sw?
.yardoc/
Guardfile
/.yardoc/
/Guardfile
2 changes: 1 addition & 1 deletion .msync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

modulesync_config_version: '5.3.0'
modulesync_config_version: '5.4.0'
1 change: 0 additions & 1 deletion .puppet-lint.rc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
--fail-on-warnings
--no-parameter_documentation-check
1 change: 1 addition & 0 deletions .sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ spec/spec_helper_acceptance.rb:
.puppet-lint.rc:
enabled_lint_checks:
- parameter_types
- parameter_documentation
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,31 @@ 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.

## [v11.1.0](https://github.com/voxpupuli/puppet-grafana/tree/v11.1.0) (2022-11-01)
## [v11.2.0](https://github.com/voxpupuli/puppet-grafana/tree/v11.2.0) (2023-03-30)

[Full Changelog](https://github.com/voxpupuli/puppet-grafana/compare/v11.1.0...v11.2.0)

**Implemented enhancements:**

- Add AlmaLinux 8 support [\#312](https://github.com/voxpupuli/puppet-grafana/pull/312) ([bastelfreak](https://github.com/bastelfreak))
- Add Rocky 8 support [\#311](https://github.com/voxpupuli/puppet-grafana/pull/311) ([bastelfreak](https://github.com/bastelfreak))

**Fixed bugs:**

- Fix default PGP key [\#308](https://github.com/voxpupuli/puppet-grafana/pull/308) ([smortex](https://github.com/smortex))

**Closed issues:**

- repository setup: new GPG repository keys [\#307](https://github.com/voxpupuli/puppet-grafana/issues/307)
- Failure to install Grafana using module on fresh install of Debian 11 [\#278](https://github.com/voxpupuli/puppet-grafana/issues/278)

**Merged pull requests:**

- Disable beta packages tests on Debian [\#316](https://github.com/voxpupuli/puppet-grafana/pull/316) ([smortex](https://github.com/smortex))
- Update repo urls [\#314](https://github.com/voxpupuli/puppet-grafana/pull/314) ([promasu](https://github.com/promasu))
- Move static default settings from Hiera to Puppet [\#309](https://github.com/voxpupuli/puppet-grafana/pull/309) ([smortex](https://github.com/smortex))

## [v11.1.0](https://github.com/voxpupuli/puppet-grafana/tree/v11.1.0) (2022-11-02)

[Full Changelog](https://github.com/voxpupuli/puppet-grafana/compare/v11.0.0...v11.1.0)

Expand Down
5 changes: 2 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group :test do
gem 'voxpupuli-test', '~> 5.4', :require => false
gem 'coveralls', :require => false
gem 'simplecov-console', :require => false
gem 'puppet_metadata', '~> 1.0', :require => false
gem 'puppet_metadata', '~> 2.0', :require => false
gem 'toml', :require => false
end

Expand All @@ -22,8 +22,7 @@ end

group :release do
gem 'github_changelog_generator', '>= 1.16.1', :require => false if RUBY_VERSION >= '2.5'
gem 'voxpupuli-release', '>= 1.2.0', :require => false
gem 'puppet-strings', '>= 2.2', :require => false
gem 'voxpupuli-release', '~> 2.0', :require => false
end

gem 'rake', :require => false
Expand Down
Loading