- Pull requests that add any additional functionality should have tests which cover the new feature to ensure it does what is expected
- Pull requests with failing tests will not be merged
- Keep feature based PRs as small as possible, with as few commits as necessary. These are easier to review and will be merged quicker
- Make sure you reference the issue you're closing with
Fixes #<issue number>
- Squash/rebase any commits where possible to reduce the noise in the PR
Reference the issue number, in the format (GH-###)
.
(GH-901) Add support for Sensu v2
As of v3.0.0, this module supports Sensu V5 aka Sensu Go. Previous versions supported Sensu Classic which can be found at https://github.com/sensu/puppet-module-sensuclassic
The master
branch is for development against Sensu Go v5.
To generate the CHANGELOG.md run the following.
- Update version in
metadata.json
- Update CHANGELOG.md with the following command replacing
--future-release
with appropriate value.
github_changelog_generator -u sensu -p sensu-puppet --since-tag v3.0.0 --exclude-labels "sensu v2","sensu v1" --max-issues 100 --no-issues --future-release v3.1.0
- Update
REFERENCE.md
with the commandbundle exec rake reference
- Commit changes and push to master
- Tag the new version, such as
git tag -a 'v2.0.0' -m 'v2.0.0'
- Push tags
git push --tags
- Update the puppet strings documentation with
bundle exec rake strings:gh_pages:update
- Clean up tests with
bundle exec rake spec_clean
- Remove junit directory from beaker runs
rm -fr junit
- Build module with
puppet module build
- Upload module to Puppet Forge.