Showing with 28 additions and 14 deletions.
  1. +19 −0 CHANGELOG.md
  2. +0 −3 README.md
  3. +3 −3 manifests/params.pp
  4. +6 −8 metadata.json
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [9.0.0](https://github.com/theforeman/puppet-dhcp/tree/9.0.0) (2023-05-15)

[Full Changelog](https://github.com/theforeman/puppet-dhcp/compare/8.2.0...9.0.0)

**Breaking changes:**

- Drop Debian 9, Ubuntu 16.04, Fedora 31/32; Add Fedora 37/38 [\#220](https://github.com/theforeman/puppet-dhcp/pull/220) ([ekohl](https://github.com/ekohl))
- Refs [\#36345](https://projects.theforeman.org/issues/36345) - Raise minimum Puppet version to 7.0.0 [\#219](https://github.com/theforeman/puppet-dhcp/pull/219) ([ekohl](https://github.com/ekohl))
- debian grub2: update efi file name to align with symlink name [\#217](https://github.com/theforeman/puppet-dhcp/pull/217) ([jklare](https://github.com/jklare))

**Implemented enhancements:**

- Mark compatible with puppetlabs/concat 8.x [\#218](https://github.com/theforeman/puppet-dhcp/pull/218) ([ekohl](https://github.com/ekohl))
- bump puppet/systemd to \< 5.0.0 [\#216](https://github.com/theforeman/puppet-dhcp/pull/216) ([jhoblitt](https://github.com/jhoblitt))

**Merged pull requests:**

- Drop badges in README [\#221](https://github.com/theforeman/puppet-dhcp/pull/221) ([ekohl](https://github.com/ekohl))

## [8.2.0](https://github.com/theforeman/puppet-dhcp/tree/8.2.0) (2022-08-04)

[Full Changelog](https://github.com/theforeman/puppet-dhcp/compare/8.1.0...8.2.0)
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[![Puppet Forge](https://img.shields.io/puppetforge/v/theforeman/dhcp.svg)](https://forge.puppetlabs.com/theforeman/dhcp)
[![Build Status](https://travis-ci.org/theforeman/puppet-dhcp.svg?branch=master)](https://travis-ci.org/theforeman/puppet-dhcp)

# DHCP module for Puppet

DHCP module for theforeman. Based on original DHCP module by ZLeslie, thanks
Expand Down
6 changes: 3 additions & 3 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
$servicename = 'isc-dhcp-server'
$root_group = 'root'
$bootfiles = {
'00:06' => 'grub2/bootia32.efi',
'00:07' => 'grub2/bootx64.efi',
'00:09' => 'grub2/bootx64.efi',
'00:06' => 'grub2/grubia32.efi',
'00:07' => 'grub2/grubx64.efi',
'00:09' => 'grub2/grubx64.efi',
}
}

Expand Down
14 changes: 6 additions & 8 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "theforeman-dhcp",
"version": "8.2.0",
"version": "9.0.0",
"author": "theforeman",
"summary": "Manage the ISC DHCP daemon",
"license": "Apache-2.0",
Expand All @@ -17,11 +17,11 @@
"dependencies": [
{
"name": "puppet/systemd",
"version_requirement": ">= 3.1.0 < 4.0.0"
"version_requirement": ">= 3.1.0 < 5.0.0"
},
{
"name": "puppetlabs/concat",
"version_requirement": ">= 1.0.0 < 8.0.0"
"version_requirement": ">= 1.0.0 < 9.0.0"
},
{
"name": "puppetlabs/stdlib",
Expand All @@ -31,7 +31,7 @@
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 6.15.0 < 8.0.0"
"version_requirement": ">= 7.0.0 < 8.0.0"
}
],
"operatingsystem_support": [
Expand Down Expand Up @@ -59,22 +59,20 @@
{
"operatingsystem": "Fedora",
"operatingsystemrelease": [
"31",
"32"
"37",
"38"
]
},
{
"operatingsystem": "Debian",
"operatingsystemrelease": [
"9",
"10",
"11"
]
},
{
"operatingsystem": "Ubuntu",
"operatingsystemrelease": [
"16.04",
"18.04",
"20.04"
]
Expand Down