Skip to content

Commit

Permalink
Fix changelog generation in release-it config
Browse files Browse the repository at this point in the history
  • Loading branch information
satazor authored and fixe committed Sep 9, 2024
1 parent a5a4d3b commit 6cc65c2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"hooks": {
"after:bump": [
"touch CHANGELOG.md",
"echo \"$(npx @uphold/github-changelog-generator -f v${version})\n$(tail -n +2 api/CHANGELOG.md)\" > CHANGELOG.md",
"echo \"$(npx @uphold/github-changelog-generator -f v${version})\n$(tail -n +2 CHANGELOG.md)\" > CHANGELOG.md",
"git add CHANGELOG.md --all"
]
}
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,15 @@
## [v0.2.0](https://github.com/uphold/fastify-openapi-router-plugin/releases/tag/v0.2.0) (2024-09-09)
- Add `securityErrorMapper` option [\#11](https://github.com/uphold/fastify-openapi-router-plugin/pull/11) ([satazor](https://github.com/satazor))

## [v0.1.1](https://github.com/uphold/fastify-openapi-router-plugin/releases/tag/v0.1.1) (2024-08-06)
- Replace `decorateRequest` by `onRequest` hook [\#10](https://github.com/uphold/fastify-openapi-router-plugin/pull/10) ([andreffvalente](https://github.com/andreffvalente))

## [v0.1.0](https://github.com/uphold/fastify-openapi-router-plugin/releases/tag/v0.1.0) (2024-08-05)
- Add missing `release` npm script [\#9](https://github.com/uphold/fastify-openapi-router-plugin/pull/9) ([satazor](https://github.com/satazor))
- Set package.json version to `0.0.0` to prepare for release [\#8](https://github.com/uphold/fastify-openapi-router-plugin/pull/8) ([satazor](https://github.com/satazor))
- Fix scopes on README [\#7](https://github.com/uphold/fastify-openapi-router-plugin/pull/7) ([hv-leo](https://github.com/hv-leo))
- Fix and improve several README sentences [\#4](https://github.com/uphold/fastify-openapi-router-plugin/pull/4) ([satazor](https://github.com/satazor))
- Generalize wildcard matching in scopes [\#5](https://github.com/uphold/fastify-openapi-router-plugin/pull/5) ([satazor](https://github.com/satazor))
- Improve README [\#3](https://github.com/uphold/fastify-openapi-router-plugin/pull/3) ([satazor](https://github.com/satazor))
- Remove build from release-it config [\#2](https://github.com/uphold/fastify-openapi-router-plugin/pull/2) ([satazor](https://github.com/satazor))
- Add initial commit [\#1](https://github.com/uphold/fastify-openapi-router-plugin/pull/1) ([andreffvalente](https://github.com/andreffvalente))

0 comments on commit 6cc65c2

Please sign in to comment.