Skip to content

Commit a18d6c8

Browse files
authored
Merge pull request #411 from puppetlabs/release-prep
Release prep v10.1.5
2 parents 6633e54 + 681cf27 commit a18d6c8

File tree

3 files changed

+10
-51
lines changed

3 files changed

+10
-51
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
## [v10.1.5](https://github.com/puppetlabs/puppetlabs-iis/tree/v10.1.5) - 2025-06-20
9+
10+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-iis/compare/v10.1.4...v10.1.5)
11+
12+
### Fixed
13+
14+
- Fix: Unordered IIS Site Binding Comparison to Prevent Unnecessary Resource Updates [#407](https://github.com/puppetlabs/puppetlabs-iis/pull/407) ([DarkArc-Github](https://github.com/DarkArc-Github))
15+
816
## [v10.1.4](https://github.com/puppetlabs/puppetlabs-iis/tree/v10.1.4) - 2025-06-10
917

1018
[Full Changelog](https://github.com/puppetlabs/puppetlabs-iis/compare/v10.1.3...v10.1.4)

REFERENCE.md

Lines changed: 1 addition & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -673,56 +673,6 @@ The sslflags parameter accepts integer values from 0 to 3 inclusive.
673673
the centralized SSL certificate store while requiring Server Name
674674
Indicator
675675

676-
For non-web protocols, the bindinginformation format varies by protocol:
677-
678-
**net.pipe protocol:**
679-
- Format: `hostname` (hostname only, no port or colons)
680-
- Example: `'bindinginformation' => 'hostname'`
681-
682-
**net.tcp protocol:**
683-
- Format: `port:hostname` (port number required, followed by colon and hostname)
684-
- Example: `'bindinginformation' => '808:hostname'`
685-
686-
**net.msmq protocol:**
687-
- Format: `hostname` (hostname only, no port or colons)
688-
- Example: `'bindinginformation' => 'hostname'`
689-
690-
**msmq.formatname protocol:**
691-
- Format: `hostname` (hostname only, no port or colons)
692-
- Example: `'bindinginformation' => 'hostname'`
693-
694-
**Note:** SSL-related parameters (sslflags, certificatehash, certificatestorename)
695-
are only valid for HTTPS protocol bindings and will cause validation errors
696-
if used with other protocols.
697-
Example with multiple protocols:
698-
```puppet
699-
bindings => [
700-
{
701-
'bindinginformation' => '*:80:',
702-
'protocol' => 'http',
703-
},
704-
{
705-
'bindinginformation' => '*:443:hostname',
706-
'certificatehash' => 'ABCDEF1234567890ABCDEF1234567890ABCDEF12',
707-
'certificatestorename' => 'MY',
708-
'protocol' => 'https',
709-
'sslflags' => 1,
710-
},
711-
{
712-
'bindinginformation' => 'hostname',
713-
'protocol' => 'net.pipe',
714-
},
715-
{
716-
'bindinginformation' => '808:hostname',
717-
'protocol' => 'net.tcp',
718-
},
719-
{
720-
'bindinginformation' => 'hostname',
721-
'protocol' => 'net.msmq',
722-
},
723-
]
724-
```
725-
726676
##### `defaultpage`
727677

728678
Specifies the default page of the site.
@@ -896,3 +846,4 @@ The name of the virtual directory to manage
896846

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

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-iis",
3-
"version": "10.1.4",
3+
"version": "10.1.5",
44
"author": "puppetlabs",
55
"summary": "Manage IIS for Windows Server 2012, 2012R2, 2016, 2019 and 2022. Maintain application sites, pools, installation, and many other IIS settings.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)