puppetlabs / puppet-dev-tools

Puppet development tools in a Docker image
Apache License 2.0
12 stars 25 forks source link

Update rspec-puppet requirement from ~> 2.10.0 to ~> 2.11.0 #106

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Updates the requirements on rspec-puppet to permit the latest version.

Changelog

Sourced from rspec-puppet's changelog.

[2.11.0]

Added

  • Add setting to use custom Facter implementation (GH-16)

[2.10.0]

The release sees rspec-puppet move into the puppetlabs namespace

Added

  • Add ruby 3 support (GH-11)

[2.9.0]

Added

  • Allow users to disable app_management for Puppet 4
  • Added support for regexp arguments to Sensitive
  • Handle all auto*, not just autorequire
  • Set up loaders so that 4.x functions resolve properly

[2.8.0]

Breaking Changes

  • As of the 2.8.0 release, the rspec-puppet project no longer guarantees compatibility with Puppet 2.x or 3.x (running under Ruby 1.8.7) or Puppet 4.x (running under Ruby 1.9.3).

  • This release adds support for the Sensitive data type, however existing tests that were expecting String content may need to be updated to wrap the expected value in the new sensitive helper:

    # Old
    it { is_expected.to contain_file('/etc/mysecret.conf').with_content("top secret\n") }
    

    New

    it { is_expected.to contain_file('/etc/mysecret.conf').with_content(sensitive("top secret\n")) }

Added

  • Added support for trusted external fact data.
  • Added the ability to exclude resources from the coverage report calculations using a regular expression. (See documentation for an example.
  • Added have_unique_values_for_all matcher to assert a specific resource parameter value is unique across the entire catalogue. (See documentation.)
  • Added ability to customize module-layer Hiera configuration via new settings. See documentation for details.

Changed

  • RSpec::Puppet::Cache now evicts least recently used entries when it reaches max size.
  • rspec-puppet's implementation of match_manifests will no longer look in init.pp for class declarations if a manifest file exactly matching the class name exists.

... (truncated)

Commits
  • fa9b1ef Merge pull request #17 from da-ar/release_prep
  • bbda94d Release Prep for 2.11.0
  • 796c4b2 Merge pull request #16 from GabrielNagy/facter-impl
  • 48c5605 Add setting to use custom Facter implementation
  • 84a9cfe Merge pull request #12 from da-ar/release-prep
  • See full diff in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 years ago

Superseded by #108.