Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.8.0 #59

Merged
merged 4 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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.

## [0.8.0](https://github.com/voxpupuli/puppet-catalog-diff-viewer/tree/0.8.0) (2024-01-18)

[Full Changelog](https://github.com/voxpupuli/puppet-catalog-diff-viewer/compare/0.7.0...0.8.0)

**Closed issues:**

- S3 reports cannot be read [\#44](https://github.com/voxpupuli/puppet-catalog-diff-viewer/issues/44)

**Merged pull requests:**

- Also push to dockerhub [\#58](https://github.com/voxpupuli/puppet-catalog-diff-viewer/pull/58) ([rwaffen](https://github.com/rwaffen))
- dependabot: Check for gems, github-actions and docker updates [\#56](https://github.com/voxpupuli/puppet-catalog-diff-viewer/pull/56) ([bastelfreak](https://github.com/bastelfreak))
- update to v1 instead of commit id [\#53](https://github.com/voxpupuli/puppet-catalog-diff-viewer/pull/53) ([rwaffen](https://github.com/rwaffen))
- update readme with migration notice [\#52](https://github.com/voxpupuli/puppet-catalog-diff-viewer/pull/52) ([rwaffen](https://github.com/rwaffen))
- update readme and test container build [\#51](https://github.com/voxpupuli/puppet-catalog-diff-viewer/pull/51) ([rwaffen](https://github.com/rwaffen))
- use Vox Pupuli docker build action [\#50](https://github.com/voxpupuli/puppet-catalog-diff-viewer/pull/50) ([rwaffen](https://github.com/rwaffen))
- Add Vox Pupuli favicon [\#49](https://github.com/voxpupuli/puppet-catalog-diff-viewer/pull/49) ([bastelfreak](https://github.com/bastelfreak))

## [0.7.0](https://github.com/voxpupuli/puppet-catalog-diff-viewer/tree/0.7.0) (2023-08-03)

[Full Changelog](https://github.com/voxpupuli/puppet-catalog-diff-viewer/compare/0.6.0...0.7.0)
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ When using the global acking button, you might want to exclude some diffs from t
## Using with Docker

```shell
$ docker run -it --rm -p 8080:80 ghcr.io/voxpupuli/puppet-catalog-diff-viewer:development
$ docker run -it --rm \
-p 8080:80 \
ghcr.io/voxpupuli/puppet-catalog-diff-viewer:development
```

will let you access the catalog diff viewer at [http://localhost:8080](http://localhost:8080).
Expand Down
14 changes: 8 additions & 6 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# frozen_string_literal: true

begin
require 'github_changelog_generator/task'
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file.\nEach new release typically also includes the latest modulesync defaults.\nThese should not affect the functionality of the module."
config.exclude_labels = %w{duplicate question invalid wontfix wont-fix modulesync skip-changelog}
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file.\nEach new release typically also includes the latest modulesync defaults.\nThese should not affect the functionality of the module." # rubocop:disable Layout/LineLength
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix modulesync skip-changelog github_actions]
config.user = 'voxpupuli'
config.project = 'puppet-catalog-diff-viewer'
config.future_release = '0.7.0'
config.future_release = '0.8.0'
end

# Workaround for https://github.com/github-changelog-generator/github-changelog-generator/issues/715
Expand All @@ -15,10 +17,10 @@ begin
puts 'Fixing line endings...'
changelog_file = File.join(__dir__, 'CHANGELOG.md')
changelog_txt = File.read(changelog_file)
new_contents = changelog_txt.gsub(%r{\r\n}, "\n")
File.open(changelog_file, "w") {|file| file.puts new_contents }
new_contents = changelog_txt.gsub(%r{/\r\n/}, "\n")
File.open(changelog_file, 'w') { |file| file.puts new_contents }
end
end

rescue LoadError
# fix liniting
end