diff --git a/.changes/header.tpl.md b/.changes/header.tpl.md new file mode 100644 index 0000000..df8faa7 --- /dev/null +++ b/.changes/header.tpl.md @@ -0,0 +1,6 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), +and is generated by [Changie](https://github.com/miniscruff/changie). diff --git a/.changes/unreleased/.gitkeep b/.changes/unreleased/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.changes/v1.0.0.md b/.changes/v1.0.0.md new file mode 100644 index 0000000..a926060 --- /dev/null +++ b/.changes/v1.0.0.md @@ -0,0 +1,30 @@ +## v1.0.0 - 2024-08-29 +### Changed +* 71f7593 - revert back to container.image explicite declaration +* b216b85 - feature: configure changelog generation and migrate to https container registry +* 896c67c - chore(deps): update rouxantoine/checkout action to v4 +* fa59c17 - chore(deps): update docker/build-push-action action to v6 +* 470b4e7 - chore(deps): update postgres docker tag to v16.3 +* d791766 - chore(deps): update docker/setup-buildx-action action to v3.3.0 +* b802e80 - feature: configure stop signal +* 3698ac1 - chore(deps): update docker/setup-buildx-action action to v3.1.0 +* f4351a3 - chore(deps): update postgres docker tag to v16.2 +* d795a16 - feature: purge backup older than 14 days +* 4983780 - feature: conditionning dumpall with if-exists +* 34dda4a - feature: setup pgtop in container +* d1f0d31 - chore(deps): update postgres docker tag to v16.1 +* a889614 - chore(deps): update docker/setup-qemu-action action to v3 +* 31c6586 - chore(deps): update docker/setup-buildx-action action to v3 +* a1e9c54 - chore(deps): update postgres docker tag to v16 +* 80521cd - feature: upgrade to postgres 15.4-bookworm from 14.9-bookworm +* 5cf26b0 - chore(deps): update docker/setup-buildx-action action to v2.10.0 +* 0cf83e0 - chore(deps): update docker/build-push-action action to v5 +* 81b9f67 - feature: upgrade debian base image from bullseye to bookworm +* 7e95eb5 - chore(deps): update postgres docker tag to v14.9 +* 4f5028f - feature: add renovate +* 08011bb - feature: migrate to container.localdomain and add actions workflow to build +* 13788e4 - feature: add backup script +* b920b88 - feature: adapt container for kubernetes deployment +* 2ba7846 - upgrade postgres from 14.1 to 14.4 +* 1f73f67 - extracted from infraRasp repository +* 20e53d1 - Initial commit diff --git a/.changie.yaml b/.changie.yaml new file mode 100644 index 0000000..150102a --- /dev/null +++ b/.changie.yaml @@ -0,0 +1,27 @@ +changesDir: .changes +unreleasedDir: unreleased +headerPath: header.tpl.md +changelogPath: CHANGELOG.md +versionExt: md +versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}' +kindFormat: '### {{.Kind}}' +changeFormat: '* {{.Body}}' +kinds: + - label: Added + auto: minor + - label: Changed + auto: major + - label: Deprecated + auto: minor + - label: Removed + auto: major + - label: Fixed + auto: patch + - label: Security + auto: patch +newlines: + afterChangelogHeader: 1 + beforeChangelogVersion: 1 + endOfVersion: 1 +envPrefix: CHANGIE_ +fragmentFileFormat: '{{.Kind}}-{{.Time.Format "02012006-150405.000"}}' diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..204fda0 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,38 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), +and is generated by [Changie](https://github.com/miniscruff/changie). + + +## v1.0.0 - 2024-08-29 +### Changed +* 71f7593 - revert back to container.image explicite declaration +* b216b85 - feature: configure changelog generation and migrate to https container registry +* 896c67c - chore(deps): update rouxantoine/checkout action to v4 +* fa59c17 - chore(deps): update docker/build-push-action action to v6 +* 470b4e7 - chore(deps): update postgres docker tag to v16.3 +* d791766 - chore(deps): update docker/setup-buildx-action action to v3.3.0 +* b802e80 - feature: configure stop signal +* 3698ac1 - chore(deps): update docker/setup-buildx-action action to v3.1.0 +* f4351a3 - chore(deps): update postgres docker tag to v16.2 +* d795a16 - feature: purge backup older than 14 days +* 4983780 - feature: conditionning dumpall with if-exists +* 34dda4a - feature: setup pgtop in container +* d1f0d31 - chore(deps): update postgres docker tag to v16.1 +* a889614 - chore(deps): update docker/setup-qemu-action action to v3 +* 31c6586 - chore(deps): update docker/setup-buildx-action action to v3 +* a1e9c54 - chore(deps): update postgres docker tag to v16 +* 80521cd - feature: upgrade to postgres 15.4-bookworm from 14.9-bookworm +* 5cf26b0 - chore(deps): update docker/setup-buildx-action action to v2.10.0 +* 0cf83e0 - chore(deps): update docker/build-push-action action to v5 +* 81b9f67 - feature: upgrade debian base image from bullseye to bookworm +* 7e95eb5 - chore(deps): update postgres docker tag to v14.9 +* 4f5028f - feature: add renovate +* 08011bb - feature: migrate to container.localdomain and add actions workflow to build +* 13788e4 - feature: add backup script +* b920b88 - feature: adapt container for kubernetes deployment +* 2ba7846 - upgrade postgres from 14.1 to 14.4 +* 1f73f67 - extracted from infraRasp repository +* 20e53d1 - Initial commit