Skip to content

Commit e8de3c5

Browse files
authored
Merge pull request #57 from puppetlabs/release-prep
Release prep v1.3.0
2 parents 55829b4 + acd23ef commit e8de3c5

File tree

3 files changed

+39
-31
lines changed

3 files changed

+39
-31
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
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+
## [v1.3.0](https://github.com/puppetlabs/puppetlabs-augeas_core/tree/v1.3.0) (2023-02-14)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-augeas_core/compare/v1.2.0...v1.3.0)
8+
9+
### Added
10+
11+
- \(MODULES-11371\) Updates PDK template [\#56](https://github.com/puppetlabs/puppetlabs-augeas_core/pull/56) ([mhashizume](https://github.com/mhashizume))
12+
513
## [v1.2.0](https://github.com/puppetlabs/puppetlabs-augeas_core/tree/v1.2.0) (2021-10-01)
614

715
[Full Changelog](https://github.com/puppetlabs/puppetlabs-augeas_core/compare/1.1.2...v1.2.0)

REFERENCE.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -58,20 +58,20 @@ Default value: `0`
5858

5959
The following parameters are available in the `augeas` type.
6060

61-
* [`changes`](#changes)
62-
* [`context`](#context)
63-
* [`force`](#force)
64-
* [`incl`](#incl)
65-
* [`lens`](#lens)
66-
* [`load_path`](#load_path)
67-
* [`name`](#name)
68-
* [`onlyif`](#onlyif)
69-
* [`provider`](#provider)
70-
* [`root`](#root)
71-
* [`show_diff`](#show_diff)
72-
* [`type_check`](#type_check)
73-
74-
##### <a name="changes"></a>`changes`
61+
* [`changes`](#-augeas--changes)
62+
* [`context`](#-augeas--context)
63+
* [`force`](#-augeas--force)
64+
* [`incl`](#-augeas--incl)
65+
* [`lens`](#-augeas--lens)
66+
* [`load_path`](#-augeas--load_path)
67+
* [`name`](#-augeas--name)
68+
* [`onlyif`](#-augeas--onlyif)
69+
* [`provider`](#-augeas--provider)
70+
* [`root`](#-augeas--root)
71+
* [`show_diff`](#-augeas--show_diff)
72+
* [`type_check`](#-augeas--type_check)
73+
74+
##### <a name="-augeas--changes"></a>`changes`
7575

7676
The changes which should be applied to the filesystem. This
7777
can be a command or an array of commands. The following commands are supported:
@@ -93,47 +93,47 @@ can be a command or an array of commands. The following commands are supported:
9393

9494
If the `context` parameter is set, that value is prepended to any relative `PATH`s.
9595

96-
##### <a name="context"></a>`context`
96+
##### <a name="-augeas--context"></a>`context`
9797

9898
Optional context path. This value is prepended to the paths of all
9999
changes if the path is relative. If the `incl` parameter is set,
100100
defaults to `/files + incl`; otherwise, defaults to the empty string.
101101

102102
Default value: `''`
103103

104-
##### <a name="force"></a>`force`
104+
##### <a name="-augeas--force"></a>`force`
105105

106106
Optional command to force the augeas type to execute even if it thinks changes
107107
will not be made. This does not override the `onlyif` parameter.
108108

109-
Default value: ``false``
109+
Default value: `false`
110110

111-
##### <a name="incl"></a>`incl`
111+
##### <a name="-augeas--incl"></a>`incl`
112112

113113
Load only a specific file, such as `/etc/hosts`. This can greatly speed
114114
up the execution the resource. When this parameter is set, you must also
115115
set the `lens` parameter to indicate which lens to use.
116116

117-
##### <a name="lens"></a>`lens`
117+
##### <a name="-augeas--lens"></a>`lens`
118118

119119
Use a specific lens, such as `Hosts.lns`. When this parameter is set, you
120120
must also set the `incl` parameter to indicate which file to load.
121121
The Augeas documentation includes [a list of available lenses](http://augeas.net/stock_lenses.html).
122122

123-
##### <a name="load_path"></a>`load_path`
123+
##### <a name="-augeas--load_path"></a>`load_path`
124124

125125
Optional colon-separated list or array of directories; these directories are searched for schema definitions.
126126
The agent's `$libdir/augeas/lenses` path will always be added to support pluginsync.
127127

128128
Default value: `''`
129129

130-
##### <a name="name"></a>`name`
130+
##### <a name="-augeas--name"></a>`name`
131131

132132
namevar
133133

134134
The name of this task. Used for uniqueness.
135135

136-
##### <a name="onlyif"></a>`onlyif`
136+
##### <a name="-augeas--onlyif"></a>`onlyif`
137137

138138
Optional augeas command and comparisons to control the execution of this type.
139139

@@ -164,34 +164,34 @@ where:
164164

165165
Default value: `''`
166166

167-
##### <a name="provider"></a>`provider`
167+
##### <a name="-augeas--provider"></a>`provider`
168168

169169
The specific backend to use for this `augeas` resource. You will seldom need to specify this --- Puppet will usually
170170
discover the appropriate provider for your platform.
171171

172-
##### <a name="root"></a>`root`
172+
##### <a name="-augeas--root"></a>`root`
173173

174174
A file system path; all files loaded by Augeas are loaded underneath `root`.
175175

176176
Default value: `/`
177177

178-
##### <a name="show_diff"></a>`show_diff`
178+
##### <a name="-augeas--show_diff"></a>`show_diff`
179179

180-
Valid values: ``true``, ``false``, `yes`, `no`
180+
Valid values: `true`, `false`, `yes`, `no`
181181

182182
Whether to display differences when the file changes, defaulting to
183183
true. This parameter is useful for files that may contain passwords or
184184
other secret data, which might otherwise be included in Puppet reports or
185185
other insecure outputs. If the global `show_diff` setting
186186
is false, then no diffs will be shown even if this parameter is true.
187187

188-
Default value: ``true``
188+
Default value: `true`
189189

190-
##### <a name="type_check"></a>`type_check`
190+
##### <a name="-augeas--type_check"></a>`type_check`
191191

192-
Valid values: ``true``, ``false``
192+
Valid values: `true`, `false`
193193

194194
Whether augeas should perform typechecking. Defaults to false.
195195

196-
Default value: ``false``
196+
Default value: `false`
197197

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-augeas_core",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"author": "puppetlabs",
55
"summary": "Manage files using Augeas",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)