diff --git a/CHANGELOG.md b/CHANGELOG.md index b5740dba..0bca0d00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [0ver](https://0ver.org) (more or less). ## [Unreleased] +## [v0.5.7] - 2024-03-03 + +### Changed + +* fix environment id hyperlink NaN by @toby181 in https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/pull/776 +* webhooks: handle ref and tag deletion events by @sysedwinistrator in https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/pull/794 +* webhooks: only pull project for which request was received by @sysedwinistrator in https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/pull/793 +* ratelimit: redis should retry if allowed requests exceeded by @bkylerussell in https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/pull/789 +* chore: dependencies, tooling and go updates by @mvisonneau in https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/pull/799 + ## [v0.5.6] - 2023-12-06 ### Changed @@ -685,7 +695,8 @@ if not seen in a long time. - LICENSE - README -[Unreleased]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/compare/v0.5.4...HEAD +[Unreleased]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/compare/v0.5.7...HEAD +[v0.5.7]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/tree/v0.5.7 [v0.5.6]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/tree/v0.5.6 [v0.5.5]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/tree/v0.5.5 [v0.5.4]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/tree/v0.5.4 diff --git a/examples/ha-setup/docker-compose.yml b/examples/ha-setup/docker-compose.yml index ecd0fbfa..580878fd 100644 --- a/examples/ha-setup/docker-compose.yml +++ b/examples/ha-setup/docker-compose.yml @@ -9,7 +9,7 @@ services: ALLOW_EMPTY_PASSWORD: 'yes' gitlab-ci-pipelines-exporter-1: &gitlab-ci-pipelines-exporter - image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5 + image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.7 # You can comment out the image name and use the following statement # to build the image against the current version of the repository #build: ../.. diff --git a/examples/opentelemetry/docker-compose.yml b/examples/opentelemetry/docker-compose.yml index 05f5355a..8ba5e56c 100644 --- a/examples/opentelemetry/docker-compose.yml +++ b/examples/opentelemetry/docker-compose.yml @@ -26,7 +26,7 @@ services: - jaeger gitlab-ci-pipelines-exporter: - image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5 + image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.7 # You can comment out the image name and use the following statement # to build the image against the current version of the repository # build: ../.. diff --git a/examples/quickstart/docker-compose.yml b/examples/quickstart/docker-compose.yml index ca6d5293..27251748 100644 --- a/examples/quickstart/docker-compose.yml +++ b/examples/quickstart/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.8' services: gitlab-ci-pipelines-exporter: - image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5 + image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.7 # You can comment out the image name and use the following statement # to build the image against the current version of the repository # build: ../.. diff --git a/examples/webhooks/docker-compose.yml b/examples/webhooks/docker-compose.yml index bd0bb65f..3d27d2ad 100644 --- a/examples/webhooks/docker-compose.yml +++ b/examples/webhooks/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.8' services: gitlab-ci-pipelines-exporter: - image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5 + image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.7 # You can comment out the image name and use the following statement # to build the image against the current version of the repository # build: ../..