Skip to content

Commit

Permalink
Merge pull request #59 from rwaffen/release-0.8.0
Browse files Browse the repository at this point in the history
Release 0.8.0
  • Loading branch information
rwaffen authored Jan 18, 2024
2 parents 15432e1 + 99d6309 commit 6d97354
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 7 deletions.
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

0 comments on commit 6d97354

Please sign in to comment.