Skip to content

Commit 0268ca3

Browse files
committed
Use prefix for puppet 4.x functions
1 parent 05ccab9 commit 0268ca3

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [2024-06-21] Release 1.0.0
6+
7+
**Changes**
8+
- **BC** use `stdlib::` prefix for puppet 4.x functions
9+
- Puppet 8 compatible
10+
11+
[Full changes](https://github.com/deric/puppet-fluentbit/compare/v0.4.0...v1.0.0)
12+
13+
514
## [2024-03-13] Release 0.4.0
615

716
**Features**

manifests/install.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class fluentbit::install {
55
assert_private()
66

7-
ensure_packages([$fluentbit::package_name], {
7+
stdlib::ensure_packages([$fluentbit::package_name], {
88
ensure => $fluentbit::package_ensure,
99
})
1010

metadata.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "deric-fluentbit",
3-
"version": "0.4.0",
3+
"version": "1.0.0",
44
"author": "Tomas Barton",
55
"summary": "Manage fluentbit installation",
66
"license": "Apache-2.0",
77
"source": "https://github.com/deric/puppet-fluentbit",
88
"dependencies": [
99
{
1010
"name": "puppetlabs/stdlib",
11-
"version_requirement": ">= 2.3.3 < 10.0.0"
11+
"version_requirement": ">= 9.0.0 < 10.0.0"
1212
},
1313
{
1414
"name": "puppetlabs/apt",

0 commit comments

Comments
 (0)