Skip to content

Commit 4ea9ab8

Browse files
committed
Released v0.4.3
1 parent c9a05a3 commit 4ea9ab8

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [0ver](https://0ver.org) (more or less).
77

88
## [Unreleased]
99

10+
## [v0.4.3] - 2020-10-04
11+
1012
### Added
1113

1214
- Export `environments/deployments` related metrics
@@ -15,17 +17,19 @@ and this project adheres to [0ver](https://0ver.org) (more or less).
1517
- Released **.deb** and **.rpm** packages
1618
- More complete garbage collector capabilities
1719
- Newly supported statuses for pipelines and jobs: `created`, `waiting_for_resource`, `preparing`, `scheduled`
20+
- GitLab links for pipelines, jobs, environments and deployments in the dashboards
1821

1922
### Changed
2023

24+
- Prefix new releases with `^v` to make pkg.go.dev happy
2125
- Bumped all dependencies
2226
- Fixed race conditions during tests
2327
- Always return coverage metric
2428
- Enhanced the scheduling of the pull functions on init
2529
- Improved webhook parsing functions performance
2630
- Fixed a bug preventing the `gitlab_ci_pipeline_run_count` from being initialized correctly at startup
2731
- Fixed the `gitlab_ci_pipeline_job_run_count` and `gitlab_ci_pipeline_run_count` metrics incrementing algorithm
28-
- Updated the `pipelines` grafana dashboard
32+
- Improved the `pipelines` grafana dashboard
2933
- Fixed a bug which could lead to an overwrite of the refs and environments at scale, inducing unecessary GitLab API calls and discrepancy for some metrics
3034
- Optimized the storage layer implementation
3135
- Ensure group wildcards only returns projects belonging directly to the group
@@ -425,7 +429,9 @@ if not seen in a long time.
425429
- LICENSE
426430
- README
427431

428-
[Unreleased]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/compare/0.4.1...HEAD
432+
[Unreleased]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/compare/v0.4.3...HEAD
433+
[v0.4.3]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/tree/v0.4.3
434+
[0.4.2]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/tree/0.4.2
429435
[0.4.1]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/tree/0.4.1
430436
[0.4.0]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/tree/0.4.0
431437
[0.3.5]: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/tree/0.3.5

examples/ha-setup/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
ALLOW_EMPTY_PASSWORD: 'yes'
99

1010
gitlab-ci-pipelines-exporter-1: &gitlab-ci-pipelines-exporter
11-
image: mvisonneau/gitlab-ci-pipelines-exporter:0.4.2
11+
image: mvisonneau/gitlab-ci-pipelines-exporter:v0.4.3
1212
# You can comment out the image name and use the following statement
1313
# to build the image against the current version of the repository
1414
#build: ../..

examples/quickstart/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
version: '3.7'
22
services:
33
gitlab-ci-pipelines-exporter:
4-
#image: mvisonneau/gitlab-ci-pipelines-exporter:0.4.2
4+
image: mvisonneau/gitlab-ci-pipelines-exporter:v0.4.3
55
# You can comment out the image name and use the following statement
66
# to build the image against the current version of the repository
7-
build: ../..
7+
# build: ../..
88
ports:
99
- 8080:8080
1010
environment:

examples/webhooks/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mvisonneau/gitlab-ci-pipelines-exporter:0.4.2
1+
FROM mvisonneau/gitlab-ci-pipelines-exporter:v0.4.3
22

33
ENV GCPE_CONFIG=/config.yml
44
ENV GCPE_LOG_LEVEL=debug

0 commit comments

Comments
 (0)