Skip to content

Commit ef28205

Browse files
authored
Merge pull request #2341 from puppetlabs/release-prep
Release prep v8.3.0
2 parents 47f0d72 + 5973fa8 commit ef28205

File tree

3 files changed

+31
-5
lines changed

3 files changed

+31
-5
lines changed

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,24 @@
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.2.1](https://github.com/puppetlabs/puppetlabs-apache/tree/v8.2.1) (2022-09-26)
5+
## [v8.3.0](https://github.com/puppetlabs/puppetlabs-apache/tree/v8.3.0) (2022-10-28)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-apache/compare/v8.2.1...v8.3.0)
8+
9+
### Added
10+
11+
- Automatically enable mod\_http2 if needed [\#2337](https://github.com/puppetlabs/puppetlabs-apache/pull/2337) ([ekohl](https://github.com/ekohl))
12+
- Update EL8+ and Debian SSL defaults [\#2336](https://github.com/puppetlabs/puppetlabs-apache/pull/2336) ([ekohl](https://github.com/ekohl))
13+
- Support setting SSLProxyCipherSuite on mod\_ssl [\#2335](https://github.com/puppetlabs/puppetlabs-apache/pull/2335) ([ekohl](https://github.com/ekohl))
14+
15+
### Fixed
16+
17+
- Make serveradmin an optional parameter and use it [\#2338](https://github.com/puppetlabs/puppetlabs-apache/pull/2338) ([ekohl](https://github.com/ekohl))
18+
- pdksync - \(CONT-189\) Remove support for RedHat6 / OracleLinux6 / Scientific6 [\#2326](https://github.com/puppetlabs/puppetlabs-apache/pull/2326) ([david22swan](https://github.com/david22swan))
19+
- pdksync - \(CONT-130\) Dropping Support for Debian 9 [\#2322](https://github.com/puppetlabs/puppetlabs-apache/pull/2322) ([jordanbreen28](https://github.com/jordanbreen28))
20+
- fix directory empty options if an empty array is being used [\#2312](https://github.com/puppetlabs/puppetlabs-apache/pull/2312) ([bovy89](https://github.com/bovy89))
21+
22+
## [v8.2.1](https://github.com/puppetlabs/puppetlabs-apache/tree/v8.2.1) (2022-09-27)
623

724
[Full Changelog](https://github.com/puppetlabs/puppetlabs-apache/compare/v8.2.0...v8.2.1)
825

REFERENCE.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -856,11 +856,11 @@ Default value: `'On'`
856856

857857
##### <a name="serveradmin"></a>`serveradmin`
858858

859-
Data type: `String`
859+
Data type: `Optional[String[1]]`
860860

861861
Sets the Apache server administrator's contact information via Apache's `ServerAdmin` directive.
862862

863-
Default value: `'root@localhost'`
863+
Default value: ``undef``
864864

865865
##### <a name="servername"></a>`servername`
866866

@@ -6505,6 +6505,7 @@ The following parameters are available in the `apache::mod::ssl` class:
65056505
* [`ssl_honorcipherorder`](#ssl_honorcipherorder)
65066506
* [`ssl_protocol`](#ssl_protocol)
65076507
* [`ssl_proxy_protocol`](#ssl_proxy_protocol)
6508+
* [`ssl_proxy_cipher_suite`](#ssl_proxy_cipher_suite)
65086509
* [`ssl_pass_phrase_dialog`](#ssl_pass_phrase_dialog)
65096510
* [`ssl_random_seed_bytes`](#ssl_random_seed_bytes)
65106511
* [`ssl_sessioncache`](#ssl_sessioncache)
@@ -6587,7 +6588,7 @@ Data type: `String`
65876588

65886589
Cipher Suite available for negotiation in SSL handshake.
65896590

6590-
Default value: `'HIGH:MEDIUM:!aNULL:!MD5:!RC4:!3DES'`
6591+
Default value: `$apache::params::ssl_cipher`
65916592

65926593
##### <a name="ssl_honorcipherorder"></a>`ssl_honorcipherorder`
65936594

@@ -6616,6 +6617,14 @@ Configure usable SSL protocol flavors for proxy usage.
66166617

66176618
Default value: `[]`
66186619

6620+
##### <a name="ssl_proxy_cipher_suite"></a>`ssl_proxy_cipher_suite`
6621+
6622+
Data type: `Optional[String[1]]`
6623+
6624+
Configure usable SSL ciphers for proxy usage. Equivalent to ssl_cipher but for proxy connections.
6625+
6626+
Default value: `$apache::params::ssl_proxy_cipher_suite`
6627+
66196628
##### <a name="ssl_pass_phrase_dialog"></a>`ssl_pass_phrase_dialog`
66206629

66216630
Data type: `String`

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-apache",
3-
"version": "8.2.1",
3+
"version": "8.3.0",
44
"author": "puppetlabs",
55
"summary": "Installs, configures, and manages Apache virtual hosts, web services, and modules.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)