Skip to content

Commit 68c176b

Browse files
authoredOct 27, 2023
Release v0.15.0 (prometheus-community#944)
* [ENHANCEMENT] Add 1kB and 2kB units prometheus-community#915 * [BUGFIX] Add error log when probe collector creation fails prometheus-community#918 * [BUGFIX] Fix test build failures on 32-bit arch prometheus-community#919 * [BUGFIX] Adjust collector to use separate connection per scrape prometheus-community#936 Signed-off-by: SuperQ <superq@gmail.com>
1 parent e2892a7 commit 68c176b

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed
 

‎.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ executors:
88
# This must match .promu.yml.
99
golang:
1010
docker:
11-
- image: cimg/go:1.20
11+
- image: cimg/go:1.21
1212

1313
jobs:
1414
test:
@@ -57,12 +57,12 @@ workflows:
5757
matrix:
5858
parameters:
5959
postgres_image:
60-
- circleci/postgres:10
6160
- circleci/postgres:11
6261
- circleci/postgres:12
6362
- circleci/postgres:13
64-
- cimg/postgres:14.1
65-
- cimg/postgres:15.1
63+
- cimg/postgres:14.9
64+
- cimg/postgres:15.4
65+
- cimg/postgres:16.0
6666
- prometheus/build:
6767
name: build
6868
parallelism: 3

‎.promu.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
go:
22
# This must match .circle/config.yml.
3-
version: 1.20
3+
version: 1.21
44
repository:
55
path: github.com/prometheus-community/postgres_exporter
66
build:
77
binaries:
88
- name: postgres_exporter
99
path: ./cmd/postgres_exporter
10-
flags: -a -tags 'netgo static_build'
1110
ldflags: |
1211
-X github.com/prometheus/common/version.Version={{.Version}}
1312
-X github.com/prometheus/common/version.Revision={{.Revision}}

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.15.0 / 2023-10-27
2+
3+
* [ENHANCEMENT] Add 1kB and 2kB units #915
4+
* [BUGFIX] Add error log when probe collector creation fails #918
5+
* [BUGFIX] Fix test build failures on 32-bit arch #919
6+
* [BUGFIX] Adjust collector to use separate connection per scrape #936
7+
18
## 0.14.0 / 2023-09-11
29

310
* [CHANGE] Add `state` label to pg_process_idle_seconds #862

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Prometheus exporter for PostgreSQL server metrics.
99

10-
CI Tested PostgreSQL versions: `10`, `11`, `12`, `13`, `14`, `15`
10+
CI Tested PostgreSQL versions: `11`, `12`, `13`, `14`, `15`, `16`
1111

1212
## Quick Start
1313
This package is available for Docker:

‎VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.0
1+
0.15.0

0 commit comments

Comments
 (0)
Please sign in to comment.