Showing with 47 additions and 38 deletions.
  1. +1 −1 .msync.yml
  2. +32 −32 .pmtignore
  3. +9 −0 CHANGELOG.md
  4. +4 −4 metadata.json
  5. +1 −1 spec/acceptance/class_spec.rb
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.4.0'
modulesync_config_version: '5.5.0'
64 changes: 32 additions & 32 deletions .pmtignore
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

docs/
pkg/
Gemfile
Gemfile.lock
Gemfile.local
vendor/
.vendor/
spec/
Rakefile
.vagrant/
.bundle/
.ruby-version
coverage/
log/
.idea/
.dependencies/
.github/
.librarian/
Puppetfile.lock
/docs/
/pkg/
/Gemfile
/Gemfile.lock
/Gemfile.local
/vendor/
/.vendor/
/spec/
/Rakefile
/.vagrant/
/.bundle/
/.ruby-version
/coverage/
/log/
/.idea/
/.dependencies/
/.github/
/.librarian/
/Puppetfile.lock
*.iml
.editorconfig
.fixtures.yml
.gitignore
.msync.yml
.overcommit.yml
.pmtignore
.rspec
.rspec_parallel
.rubocop.yml
.sync.yml
/.editorconfig
/.fixtures.yml
/.gitignore
/.msync.yml
/.overcommit.yml
/.pmtignore
/.rspec
/.rspec_parallel
/.rubocop.yml
/.sync.yml
.*.sw?
.yardoc/
.yardopts
Dockerfile
/.yardoc/
/.yardopts
/Dockerfile
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.

## [v12.0.0](https://github.com/voxpupuli/puppet-grafana/tree/v12.0.0) (2023-06-14)

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

**Breaking changes:**

- puppet/archive: Allow 7.x; puppetlabs/stdlib: Require 9.x [\#322](https://github.com/voxpupuli/puppet-grafana/pull/322) ([bastelfreak](https://github.com/bastelfreak))
- Drop Puppet 6 support [\#320](https://github.com/voxpupuli/puppet-grafana/pull/320) ([bastelfreak](https://github.com/bastelfreak))

## [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)
Expand Down
8 changes: 4 additions & 4 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppet-grafana",
"version": "11.2.0",
"version": "12.0.0",
"author": "Vox Pupuli",
"summary": "This module provides Grafana, a dashboard and graph editor for Graphite and InfluxDB.",
"license": "Apache-2.0",
Expand All @@ -10,11 +10,11 @@
"dependencies": [
{
"name": "puppetlabs/stdlib",
"version_requirement": ">= 4.20.0 < 9.0.0"
"version_requirement": ">= 4.20.0 < 10.0.0"
},
{
"name": "puppet/archive",
"version_requirement": ">= 1.0.1 < 7.0.0"
"version_requirement": ">= 1.0.1 < 8.0.0"
}
],
"operatingsystem_support": [
Expand Down Expand Up @@ -75,7 +75,7 @@
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 6.1.0 < 8.0.0"
"version_requirement": ">= 7.0.0 < 8.0.0"
}
],
"tags": [
Expand Down
2 changes: 1 addition & 1 deletion spec/acceptance/class_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
shell('mkdir -p /etc/puppetlabs/code/environments/production/modules/my_custom_module/files/dashboards')
context 'default parameters' do
before do
install_module_from_forge('puppetlabs/apt', '>= 7.5.0 < 9.0.0')
install_module_from_forge('puppetlabs/apt', '>= 9.1.0 < 10.0.0')
end
# Using puppet_apply as a helper

Expand Down