diff --git a/CHANGELOG.md b/CHANGELOG.md index e584f27..a7bade6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. *Note: Releases that only include dependency updates generated by Dependabot will not appear here.* +## [v0.22.0] - 2024-08-07 + +### ⚙️ Miscellaneous Tasks + +- *(server)* Log health check errors ([24f9f00](https://github.com/CrowdStrike/perseus/commits/24f9f002a90eadc998cb3e4a1ca79034f4a7a387)) + +### ⛰️ Features + +- Update docker compose setup to use PG v16 and v0.40.0 of the pg-semver extension ([b9a0805](https://github.com/CrowdStrike/perseus/commits/b9a080591537244d5981d517e320209f63317160)) +- Use H2C for non-TLS client connections ([6bdd47d](https://github.com/CrowdStrike/perseus/commits/6bdd47d34c46dc2658abde791dca3655ca9dcbd1)) +- Add backoff/retry to all client operations ([eb09bfe](https://github.com/CrowdStrike/perseus/commits/eb09bfecccba07ba567c5f2c8820dae952c9b1ef)) + +Contributors: Dylan Bourque + ## [v0.19.0] - 2024-05-20 ### ⚙️ Miscellaneous Tasks diff --git a/Makefile b/Makefile index 8de477c..fe4984b 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,8 @@ update-changelog: check-git-cliff-install ifeq ("${NEXT_VERSION}", "") $(error Must specify the next version via $$NEXT_VERSION) else - git cliff --unreleased --tag ${NEXT_VERSION} --prepend CHANGELOG.md + $(info Generating change log for ${NEXT_VERSION} ...) + @git cliff --unreleased --ignore-tags 'v\d+\.\d+\.\d+-.+' --tag ${NEXT_VERSION} --prepend CHANGELOG.md endif .PHONY: check-golangci-lint-install