Skip to content

Commit 0f06e67

Browse files
author
GitHub Action
committed
Release prep v8.3.0
1 parent 7f07bdf commit 0f06e67

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [v8.3.0](https://github.com/puppetlabs/puppetlabs-stdlib/tree/v8.3.0) (2022-07-11)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-stdlib/compare/v8.2.0...v8.3.0)
8+
9+
### Added
10+
11+
- pdksync - \(GH-cat-12\) Add Support for Redhat 9 [\#1247](https://github.com/puppetlabs/puppetlabs-stdlib/pull/1247) ([david22swan](https://github.com/david22swan))
12+
- Convert `ensure_packages` to new API and refactor [\#1244](https://github.com/puppetlabs/puppetlabs-stdlib/pull/1244) ([alexjfisher](https://github.com/alexjfisher))
13+
14+
### Fixed
15+
16+
- \(MODULES-2892\) Handle missing file in file\_line [\#1251](https://github.com/puppetlabs/puppetlabs-stdlib/pull/1251) ([silug](https://github.com/silug))
17+
- Simplify stdlib::manage [\#1250](https://github.com/puppetlabs/puppetlabs-stdlib/pull/1250) ([jcpunk](https://github.com/jcpunk))
18+
- Unbreak `rake strings:generate:reference` [\#1239](https://github.com/puppetlabs/puppetlabs-stdlib/pull/1239) ([smortex](https://github.com/smortex))
19+
- loadjson: do not send http\_basic\_authentication if not needed [\#1208](https://github.com/puppetlabs/puppetlabs-stdlib/pull/1208) ([chaen](https://github.com/chaen))
20+
521
## [v8.2.0](https://github.com/puppetlabs/puppetlabs-stdlib/tree/v8.2.0) (2022-05-16)
622

723
[Full Changelog](https://github.com/puppetlabs/puppetlabs-stdlib/compare/v8.1.0...v8.2.0)

REFERENCE.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -330,9 +330,8 @@ It can feel unnecessary to create a module for a single
330330
resource. There are a number of possible patterns to
331331
generate trivial resource definitions. This is an attempt
332332
to create a single clear method for uncomplicated resources.
333-
There is limited support for `before`, `require`, `notify`,
334-
and `subscribe`. However, the target resources must be defined
335-
before this module is run.
333+
There is __limited__ support for `before`, `require`, `notify`,
334+
and `subscribe`.
336335

337336
#### Examples
338337

@@ -350,6 +349,7 @@ class { 'stdlib::manage':
350349
'package' => {
351350
'example' => {
352351
'ensure' => 'installed',
352+
'subscribe' => ['Service[sshd]', 'Exec[something]'],
353353
}
354354
}
355355
}
@@ -366,6 +366,9 @@ stdlib::manage::create_resources:
366366
package:
367367
example:
368368
ensure: installed
369+
subscribe:
370+
- 'Service[sshd]'
371+
- 'Exec[something]'
369372
```
370373

371374
#### Parameters
@@ -379,7 +382,7 @@ The following parameters are available in the `stdlib::manage` class:
379382
Data type: `Hash[String, Hash]`
380383

381384
A hash of resources to create
382-
NOTE: functions, such as `template` or `epp` are not evaluated.
385+
NOTE: functions, such as `template` or `epp`, are not evaluated.
383386

384387
Default value: `{}`
385388

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-stdlib",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"author": "puppetlabs",
55
"summary": "Standard library of resources for Puppet modules.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)