Skip to content

Latest commit

 

History

History
176 lines (112 loc) · 9.2 KB

CHANGELOG.md

File metadata and controls

176 lines (112 loc) · 9.2 KB

Changelog

All notable changes to this project will be documented in this file. Each new release typically also includes the latest modulesync defaults. These should not affect the functionality of the module.

v4.0.0 (2023-10-26)

Full Changelog

Breaking changes:

Implemented enhancements:

Closed issues:

  • Link to documentation in README is a 404 #38

Merged pull requests:

v3.0.0 (2019-10-08)

Full Changelog

Version 3 is a new major version of puppet/nscd. For most use cases, it is backwards incompatible and users will need to modify their declarations of the nscd class.

The previous parameters such as

  • passwd_positive_ttl positive time to live for passwords database.
  • passwd_negative_ttl negative time to live for passwords database.
  • enable_passwd enable password cache.
  • ....

are now all removed and instead all database parameters are specified with the dbconfig parameter. e.g.

class{'nscd':
  dbconfig => {
    'passwd' => {
      'enable-cache' => true,
      'positive-time-to-live' => 500,
      'negative-time-to-live' => 500,
     },
    'group' => {
      'enable-cache' => true,
      'positive-time-to-live' => 500,
      'negative-time-to-live' => 500,
     },
  },
}

The advantage of this breaking change that profits from newer puppet features is the module is much easier to maintain especially with respect to multiple OSes

Breaking changes:

  • New dbconfig parameter replaces all per db options. #53 (traylenator)

Implemented enhancements:

  • The module should allow all global and per-service properties to be managed #40
  • Convert template to epp #51 (traylenator)

Closed issues:

  • Don't use 'inherit' in sub-classes #15

v2.0.0 (2019-05-02)

Full Changelog

Breaking changes:

Merged pull requests:

v1.1.0 (2018-09-07)

Full Changelog

Implemented enhancements:

Closed issues:

  • Failed to install module with librarian-puppet #33
  • Make positive host ttl a configuration. #26

Merged pull requests:

  • drop EOL OSs; fix puppet version range #39 (bastelfreak)
  • Rely on beaker-hostgenerator for docker nodesets #37 (ekohl)
  • Fixes #33 remove double space for librarian-puppet #34 (traylenator)
  • Use docker_sets in .sync.yml #24 (ekohl)

v1.0.0 (2018-02-13)

Full Changelog

Breaking changes:

  • Add puppet 4 data types #16
  • BREAKING: Refactor to Puppet 4. Drop Puppet 3 Support. Rename some parameters. #11 (traylenator)

Fixed bugs:

Closed issues:

  • Don't call hiera from init.pp #14
  • Allow booleans for yes|no parameters #13
  • Replace anchor pattern with 'contain' #12

Merged pull requests:

puppet-nscd-0.2.0 (2015-03-18)

Full Changelog

Closed issues:

  • New release? #4

Merged pull requests:

puppet-nscd-0.1.0 (2014-12-09)

Full Changelog

Merged pull requests:

  • Add parameter nscd_threads #3 (sagiru)
  • Fix deprecated variable access without **@**varname #2 (bascht)
  • Parameterize service cache #1 (bascht)

puppet-nscd-0.0.1 (2012-05-21)

Full Changelog

* This Changelog was automatically generated by github_changelog_generator