Skip to content

Commit 79aa3dc

Browse files
author
GitHub Actions
committed
Release prep v5.0.1
1 parent 6d3e396 commit 79aa3dc

File tree

3 files changed

+103
-4
lines changed

3 files changed

+103
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,26 @@ All notable changes to this project will be documented in this file.
55

66
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).
77

8+
## [v5.0.1](https://github.com/puppetlabs/puppetlabs-windows_env/tree/v5.0.1) - 2024-12-10
9+
10+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-windows_env/compare/v5.0.0...v5.0.1)
11+
12+
### Fixed
13+
14+
- Update legacy facts to be compatible with Puppet 8 [#106](https://github.com/puppetlabs/puppetlabs-windows_env/pull/106) ([voreilly](https://github.com/voreilly))
15+
816
## [v5.0.0](https://github.com/puppetlabs/puppetlabs-windows_env/tree/v5.0.0) - 2023-08-17
917

1018
[Full Changelog](https://github.com/puppetlabs/puppetlabs-windows_env/compare/v4.0.1...v5.0.0)
1119

20+
### Changed
21+
22+
- Drop Puppet 6 support [#87](https://github.com/puppetlabs/puppetlabs-windows_env/pull/87) ([bastelfreak](https://github.com/bastelfreak))
23+
1224
### Added
1325

1426
- Add Puppet 8 support [#89](https://github.com/puppetlabs/puppetlabs-windows_env/pull/89) ([bastelfreak](https://github.com/bastelfreak))
1527

16-
### Changed
17-
- Drop Puppet 6 support [#87](https://github.com/puppetlabs/puppetlabs-windows_env/pull/87) ([bastelfreak](https://github.com/bastelfreak))
18-
1928
## [v4.0.1](https://github.com/puppetlabs/puppetlabs-windows_env/tree/v4.0.1) - 2020-06-24
2029

2130
[Full Changelog](https://github.com/puppetlabs/puppetlabs-windows_env/compare/v4.0.0...v4.0.1)

REFERENCE.md

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Reference
2+
3+
<!-- DO NOT EDIT: This document was generated by Puppet Strings -->
4+
5+
## Table of Contents
6+
7+
### Resource types
8+
9+
* [`windows_env`](#windows_env): Manages Windows environment variables
10+
11+
## Resource types
12+
13+
### <a name="windows_env"></a>`windows_env`
14+
15+
Manages Windows environment variables
16+
17+
#### Properties
18+
19+
The following properties are available in the `windows_env` type.
20+
21+
##### `ensure`
22+
23+
Valid values: `present`, `absent`
24+
25+
The basic property that the resource should be in.
26+
27+
Default value: `present`
28+
29+
##### `type`
30+
31+
Valid values: `REG_SZ`, `REG_EXPAND_SZ`
32+
33+
What type of registry key to use for the variable. Determines whether interpolation of '%' enclosed names will occur
34+
35+
#### Parameters
36+
37+
The following parameters are available in the `windows_env` type.
38+
39+
* [`broadcast_timeout`](#-windows_env--broadcast_timeout)
40+
* [`mergemode`](#-windows_env--mergemode)
41+
* [`provider`](#-windows_env--provider)
42+
* [`separator`](#-windows_env--separator)
43+
* [`user`](#-windows_env--user)
44+
* [`value`](#-windows_env--value)
45+
* [`variable`](#-windows_env--variable)
46+
47+
##### <a name="-windows_env--broadcast_timeout"></a>`broadcast_timeout`
48+
49+
Set the timeout (in ms) for environment refreshes. This is per top level window, so delay may be longer than provided
50+
value.
51+
52+
Default value: `100`
53+
54+
##### <a name="-windows_env--mergemode"></a>`mergemode`
55+
56+
Valid values: `clobber`, `insert`, `append`, `prepend`
57+
58+
How to set the value of the environment variable. E.g. replace existing value, append to existing value...
59+
60+
Default value: `insert`
61+
62+
##### <a name="-windows_env--provider"></a>`provider`
63+
64+
The specific backend to use for this `windows_env` resource. You will seldom need to specify this --- Puppet will
65+
usually discover the appropriate provider for your platform.
66+
67+
##### <a name="-windows_env--separator"></a>`separator`
68+
69+
How to separate environment variables with multiple values (e.g. PATH)
70+
71+
Default value: `;`
72+
73+
##### <a name="-windows_env--user"></a>`user`
74+
75+
namevar
76+
77+
Set the user whose environment will be modified
78+
79+
##### <a name="-windows_env--value"></a>`value`
80+
81+
namevar
82+
83+
The environment variable value
84+
85+
##### <a name="-windows_env--variable"></a>`variable`
86+
87+
namevar
88+
89+
The environment variable name
90+

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-windows_env",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"author": "puppetlabs",
55
"summary": "Manages Windows environment variables",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)