Compare commits

...

2 commits

Author SHA1 Message Date
renovate[bot]
1962a83ec6
deps: update dependency go to v1.25.0 2025-08-23 21:05:59 +00:00
b3cb9e128c
chore(main): release v0.7.0 (#232) 2025-08-23 23:05:30 +02:00
4 changed files with 25 additions and 3 deletions

View file

@ -1,5 +1,27 @@
# Changelog
## [v0.7.0](https://github.com/apricote/releaser-pleaser/releases/tag/v0.7.0)
### Highlights :sparkles:
#### Update version in `package.json`
Thanks to @Mattzi it is now possible to use `releaser-pleaser` in Javascript/Node.js projects with a `package.json` file.
You can enable this with the option `updaters: packagejson` in the GitHub Actions / GitLab CI/CD config.
All updaters, including the defaults `changelog` and `generic` can now be enabled and disabled through this field. You can find a full list in the [documentation](https://apricote.github.io/releaser-pleaser/reference/updaters.html).
### Features
- add updater for package.json (#213)
- highlight breaking changes in release notes (#234)
### Bug Fixes
- filter out empty updaters in input (#235)
- **github**: duplicate release pr when process is stopped at wrong moment (#236)
## [v0.6.1](https://github.com/apricote/releaser-pleaser/releases/tag/v0.6.1)
### Bug Fixes

View file

@ -25,7 +25,7 @@ inputs:
outputs: { }
runs:
using: 'docker'
image: docker://ghcr.io/apricote/releaser-pleaser:v0.6.1 # x-releaser-pleaser-version
image: docker://ghcr.io/apricote/releaser-pleaser:v0.7.0 # x-releaser-pleaser-version
args:
- run
- --forge=github

2
go.mod
View file

@ -2,7 +2,7 @@ module github.com/apricote/releaser-pleaser
go 1.23.2
toolchain go1.24.6
toolchain go1.25.0
require (
github.com/blang/semver/v4 v4.0.0

View file

@ -44,7 +44,7 @@ releaser-pleaser:
resource_group: releaser-pleaser
image:
name: ghcr.io/apricote/releaser-pleaser:v0.6.1 # x-releaser-pleaser-version
name: ghcr.io/apricote/releaser-pleaser:v0.7.0 # x-releaser-pleaser-version
entrypoint: [ "" ]
variables:
GITLAB_TOKEN: $[[ inputs.token ]]