Showing with 10 additions and 2 deletions.
  1. +8 −0 CHANGELOG.md
  2. +1 −1 manifests/config.pp
  3. +1 −1 metadata.json
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.

## [v13.1.0](https://github.com/voxpupuli/puppet-prometheus/tree/v13.1.0) (2023-07-13)

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

**Implemented enhancements:**

- remove legacy function has\_keys [\#678](https://github.com/voxpupuli/puppet-prometheus/pull/678) ([marszip](https://github.com/marszip))

## [v13.0.0](https://github.com/voxpupuli/puppet-prometheus/tree/v13.0.0) (2023-06-26)

[Full Changelog](https://github.com/voxpupuli/puppet-prometheus/compare/v12.5.0...v13.0.0)
Expand Down
2 changes: 1 addition & 1 deletion manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
}

$prometheus::server::collect_scrape_jobs.each |Hash $job_definition| {
if !stdlib::has_key($job_definition, 'job_name') {
if ! ('job_name' in $job_definition) {
fail('collected scrape job has no job_name!')
}

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-prometheus",
"version": "13.0.0",
"version": "13.1.0",
"author": "Vox Pupuli",
"summary": "This module installs, configures and manages the Prometheus service.",
"license": "Apache-2.0",
Expand Down