Showing with 24 additions and 21 deletions.
  1. +1 −3 .github/workflows/ci.yml
  2. +2 −1 .gitignore
  3. +13 −1 CHANGELOG.md
  4. +5 −13 Gemfile
  5. +3 −3 metadata.json
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: CI

on:
pull_request:
schedule:
- cron: '4 4 * * *'


concurrency:
Expand All @@ -14,7 +12,7 @@ concurrency:
jobs:
puppet:
name: Puppet
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v1
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v2
with:
pidfile_workaround: 'false'
rubocop: false
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ vendor/
.ruby-*

## rspec
spec/fixtures/
spec/fixtures/manifests
spec/fixtures/modules
junit/

## Puppet module
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [2.0.0](https://github.com/theforeman/puppet-motd/tree/2.0.0) (2024-01-09)

[Full Changelog](https://github.com/theforeman/puppet-motd/compare/1.0.0...2.0.0)

**Breaking changes:**

- Drop Puppet 6 support [\#16](https://github.com/theforeman/puppet-motd/pull/16) ([ekohl](https://github.com/ekohl))

**Implemented enhancements:**

- Allow puppetlabs/stdlib 9.x [\#17](https://github.com/theforeman/puppet-motd/pull/17) ([ekohl](https://github.com/ekohl))

## [1.0.0](https://github.com/theforeman/puppet-motd/tree/1.0.0) (2023-04-11)

[Full Changelog](https://github.com/theforeman/puppet-motd/compare/0.1.0...1.0.0)
Expand All @@ -13,13 +25,13 @@
- Update to voxpupuli-test 5 [\#11](https://github.com/theforeman/puppet-motd/pull/11) ([ekohl](https://github.com/ekohl))
- add support for Ubuntu 20.04 and Debian 11 [\#10](https://github.com/theforeman/puppet-motd/pull/10) ([evgeni](https://github.com/evgeni))
- Allow puppetlabs/stdlib 8.x [\#6](https://github.com/theforeman/puppet-motd/pull/6) ([ekohl](https://github.com/ekohl))
- Support Puppet 7 [\#4](https://github.com/theforeman/puppet-motd/pull/4) ([ekohl](https://github.com/ekohl))

**Merged pull requests:**

- Add a basic acceptance test [\#13](https://github.com/theforeman/puppet-motd/pull/13) ([ekohl](https://github.com/ekohl))
- Increase the cache version [\#8](https://github.com/theforeman/puppet-motd/pull/8) ([ekohl](https://github.com/ekohl))
- Use gha-puppet's reusable workflows [\#5](https://github.com/theforeman/puppet-motd/pull/5) ([ekohl](https://github.com/ekohl))
- Support Puppet 7 [\#4](https://github.com/theforeman/puppet-motd/pull/4) ([ekohl](https://github.com/ekohl))

## [0.1.0](https://github.com/theforeman/puppet-motd/tree/0.1.0) (2020-04-22)

Expand Down
18 changes: 5 additions & 13 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,16 @@

source 'https://rubygems.org'

gem 'puppet', ENV['PUPPET_GEM_VERSION'] || '>= 5.5', groups: ['development', 'test']
gem 'puppet', ENV.fetch('PUPPET_GEM_VERSION', '>= 7'), groups: ['development', 'test']
gem 'rake'

gem 'kafo_module_lint', {"groups"=>["test"]}
gem 'puppet-lint-empty_string-check', {"groups"=>["test"]}
gem 'puppet-lint-file_ensure-check', {"groups"=>["test"]}
gem 'puppet-lint-param-docs', '>= 1.3.0', {"groups"=>["test"]}
gem 'puppet-lint-spaceship_operator_without_tag-check', {"groups"=>["test"]}
gem 'puppet-lint-strict_indent-check', {"groups"=>["test"]}
gem 'puppet-lint-undef_in_function-check', {"groups"=>["test"]}
gem 'voxpupuli-test', '~> 5.0', {"groups"=>["test"]}
gem 'puppet-lint-spaceship_operator_without_tag-check', '~> 1.0', {"groups"=>["test"]}
gem 'voxpupuli-test', '~> 7.0', {"groups"=>["test"]}
gem 'github_changelog_generator', '>= 1.15.0', {"groups"=>["development"]}
gem 'puppet_metadata', '~> 1.3'
gem 'puppet_metadata', '~> 3.4'
gem 'puppet-blacksmith', '>= 6.0.0', {"groups"=>["development"]}
gem 'voxpupuli-acceptance', '~> 1.0', {"groups"=>["system_tests"]}
gem 'voxpupuli-acceptance', '~> 2.0', {"groups"=>["system_tests"]}
gem 'puppetlabs_spec_helper', {"groups"=>["system_tests"]}

# Pin rdoc to prevent updating bundled psych (https://github.com/ruby/rdoc/commit/ebe185c8775b2afe844eb3da6fa78adaa79e29a4)
gem 'rdoc', '< 6.4'

# vim:ft=ruby
6 changes: 3 additions & 3 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "theforeman-motd",
"version": "1.0.0",
"version": "2.0.0",
"author": "theforeman",
"summary": "Foreman infra motd",
"license": "GPL-3.0+",
Expand All @@ -15,13 +15,13 @@
"dependencies": [
{
"name": "puppetlabs/stdlib",
"version_requirement": ">= 4.25.0 < 9.0.0"
"version_requirement": ">= 4.25.0 < 10.0.0"
}
],
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 6.1.0 < 8.0.0"
"version_requirement": ">= 7.0.0 < 8.0.0"
}
],
"operatingsystem_support": [
Expand Down