Skip to content

Commit

Permalink
Update CHANGELOG for 0.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Juraj Bubniak committed Dec 30, 2019
1 parent fe94b3a commit da78521
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
12 changes: 4 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
## 0.5.2

* Do not use draft release in goreleaser.

## 0.5.1

* Use docker skip_push auto in goreleaser.

## 0.5.0

* Build with Go 1.13.
* Use sqlx.Open instead of sqlx.Connect to skip calling Ping.
* Use custom query in store.Check.
* Check store on startup.
* Add docker compose for testing.
* Update to github.com/urfave/cli/v2.
* Bump github.com/prometheus/client_golang to v1.3.0.
* Bump github.com/lib/pq to v1.3.0.
* Update goreleaser config to support latest version.

## 0.4.0

Expand Down
7 changes: 6 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,16 @@ services:
CONF__PGBOUNCER__POOL_MODE: "transaction"
CONF__PGBOUNCER__STATS_USERS: "postgres"
CONF__PGBOUNCER__IGNORE_STARTUP_PARAMETERS: "extra_float_digits"
depends_on:
- postgres

pgbouncerexporter:
image: "jbub/pgbouncer_exporter:v0.4.0"
build:
context: .
restart: always
ports:
- "9127:9127"
environment:
DATABASE_URL: "postgres://postgres:postgres@pgbouncer:5432/pgbouncer?sslmode=disable&binary_parameters=yes"
depends_on:
- pgbouncer

0 comments on commit da78521

Please sign in to comment.