Puppet Server release notes
Sections
Puppet Server 7.1.2
Released 26 April 2021.
This release includes minor dependency updates, including an update to Jetty 9.4.40 to resolve security issues.
Puppet Server 7.1.0
Released 16 March 2021.
Enhancements
Puppet Server now adds an extension for subject-alternative-name (SAN) when it signs incoming certificate signing requests (CSR). The SAN extension contains the common name (CN) as a dns-name on the certificate. If the CSR comes with its own SAN extension, Puppet Server signs it and ensures the SAN extension includes the CSR’s CN. SERVER-2338
Bug fixes
The Jetty webserver now uses the local copy of the CRL from Puppet's SSL directory instead of the CA's copy. This fix makes it easier to set up compilers, which always have a disabled CA service and no CRL at the CA path. SERVER-2558
Deprecations
The
master-conf-dir
,master-code-dir
,master-var-dir
,master-log-dir
, andmaster-run-dir
configuration settings have been deprecated in favor ofserver-conf-dir
,server-code-dir
,server-var-dir
,server-log-dir
, andserver-run-dir
respectively. The configuration files — which use the new settings — are shipped with the 7.1.0puppetserver
package. Note that the old settings are still honored for backwards compatibility, but we recommend you upgrade to the new settings. SERVER-2867
Puppet Server 7.0.3
Released 9 February 2021.
This release updates dependencies to include security fixes.
Puppet Server 7.0.2
Released 20 January 2021
Bug fix
The warning issued when the CA dir is inside the SSL dir now only prints server logs at startup and when using the
puppetserver ca
CLI, instead of any time a Puppet command is used. (SERVER-2934)
Puppet Server 7.0.1
Released 15 December 2020.
Enhancements
The JRuby version has been bumped from 9.2.13.0 to 9.2.14.0. (SERVER-2925)
Bug fixes
The CA command line tool now correctly honors the
server
sections in thepuppet.conf
.When creating the symlink between the new and legacy cadirs the symlink will now be properly owned by the
puppet
user. (SERVER-2917)
Puppet Server 7.0.0
Released 17 November 2020.
Puppet Server 7.0 is a major release. It breaks compatibility with agents prior to 4.0 and the legacy Puppet auth.conf
, moves the default location for the cadir
, and changes defaults for fact caching and cipher suites. See below for more details. Caution is advised when upgrading.
New features
The default value for the
cadir
setting is now located at/etc/puppetlabs/puppetserver/ca
. Previously, the default location was inside Puppet's ownssldir
at/etc/puppetlabs/puppet/ssl/ca
. This change makes it safer to delete Puppet'sssldir
without accidentally deleting your CA certificates.The puppetserver CA CLI now provides a
migrate
command to move the CA directory from the Puppetconfdir
to the puppetserverconfdir
. It leaves behind a symlink on the old CA location, pointing to the new location at/etc/puppetlabs/puppetserver/ca
. The symlink provides backwards compatibility for tools still expecting thecadir
to exist in the old location. In a future release, thecadir
setting will be removed entirely. (SERVER-2896)The default value for the facts cache is now JSON instead of YAML. You can re-enable the old YAML terminus in
routes.yaml
. (PUP-10656)Support for legacy Puppet
auth.conf
has been removed and thejruby-puppet.use-legacy-auth-conf
setting no longer works. Use Puppet Server'sauth.conf
file instead. (SERVER-2778)Puppet Server no longer services requests for legacy (3.x) Puppet endpoints. Puppet Agents before 4.0 are no longer be able to check in. (SERVER-2791)
This release removes default support for many cipher suites when contacting Puppet Server. The new default supported cipher suites are:
TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
,TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
, andTLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
. This change aligns open source Puppet with Puppet Enterprise. Note that this change may break on old platforms. To re-enable older cipher suites you may edit thewebserver.conf
. Valid cipher suite names are listed in the JDK Documentation. (SERVER-2913)Puppet Server now provides an HTTP client whose API conforms to the HTTP client provided by Puppet. This new client is stored in the Puppet runtime as
Puppet.runtime[:http]
. (SERVER-2780)