Skip to content

Commit

Permalink
Merge pull request #108 from puppetlabs/release-prep
Browse files Browse the repository at this point in the history
Release prep v5.0.1
  • Loading branch information
amitkarsale authored Dec 10, 2024
2 parents 6d3e396 + 79aa3dc commit d89f0fb
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 4 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,26 @@ 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).

## [v5.0.1](https://github.com/puppetlabs/puppetlabs-windows_env/tree/v5.0.1) - 2024-12-10

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

### Fixed

- Update legacy facts to be compatible with Puppet 8 [#106](https://github.com/puppetlabs/puppetlabs-windows_env/pull/106) ([voreilly](https://github.com/voreilly))

## [v5.0.0](https://github.com/puppetlabs/puppetlabs-windows_env/tree/v5.0.0) - 2023-08-17

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

### Changed

- Drop Puppet 6 support [#87](https://github.com/puppetlabs/puppetlabs-windows_env/pull/87) ([bastelfreak](https://github.com/bastelfreak))

### Added

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

### Changed
- Drop Puppet 6 support [#87](https://github.com/puppetlabs/puppetlabs-windows_env/pull/87) ([bastelfreak](https://github.com/bastelfreak))

## [v4.0.1](https://github.com/puppetlabs/puppetlabs-windows_env/tree/v4.0.1) - 2020-06-24

[Full Changelog](https://github.com/puppetlabs/puppetlabs-windows_env/compare/v4.0.0...v4.0.1)
Expand Down
90 changes: 90 additions & 0 deletions REFERENCE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Reference

<!-- DO NOT EDIT: This document was generated by Puppet Strings -->

## Table of Contents

### Resource types

* [`windows_env`](#windows_env): Manages Windows environment variables

## Resource types

### <a name="windows_env"></a>`windows_env`

Manages Windows environment variables

#### Properties

The following properties are available in the `windows_env` type.

##### `ensure`

Valid values: `present`, `absent`

The basic property that the resource should be in.

Default value: `present`

##### `type`

Valid values: `REG_SZ`, `REG_EXPAND_SZ`

What type of registry key to use for the variable. Determines whether interpolation of '%' enclosed names will occur

#### Parameters

The following parameters are available in the `windows_env` type.

* [`broadcast_timeout`](#-windows_env--broadcast_timeout)
* [`mergemode`](#-windows_env--mergemode)
* [`provider`](#-windows_env--provider)
* [`separator`](#-windows_env--separator)
* [`user`](#-windows_env--user)
* [`value`](#-windows_env--value)
* [`variable`](#-windows_env--variable)

##### <a name="-windows_env--broadcast_timeout"></a>`broadcast_timeout`

Set the timeout (in ms) for environment refreshes. This is per top level window, so delay may be longer than provided
value.

Default value: `100`

##### <a name="-windows_env--mergemode"></a>`mergemode`

Valid values: `clobber`, `insert`, `append`, `prepend`

How to set the value of the environment variable. E.g. replace existing value, append to existing value...

Default value: `insert`

##### <a name="-windows_env--provider"></a>`provider`

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

##### <a name="-windows_env--separator"></a>`separator`

How to separate environment variables with multiple values (e.g. PATH)

Default value: `;`

##### <a name="-windows_env--user"></a>`user`

namevar

Set the user whose environment will be modified

##### <a name="-windows_env--value"></a>`value`

namevar

The environment variable value

##### <a name="-windows_env--variable"></a>`variable`

namevar

The environment variable name

2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-windows_env",
"version": "5.0.0",
"version": "5.0.1",
"author": "puppetlabs",
"summary": "Manages Windows environment variables",
"license": "Apache-2.0",
Expand Down

0 comments on commit d89f0fb

Please sign in to comment.