Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update buildpack to use pgbouncer 1.23.1 #195

Merged
merged 4 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Unreleased

## v0.16.0 (August 5, 2024)
* Update pgbouncer to v1.23.1

## v0.15.0 (May 23, 2024)
* Support SCRAM authentication, use plain passwords in auth_file
* Add PGBOUNCER_AUTH_TYPE config and update default to scram-sha-256
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Example usage:
-----> Multipack app detected
-----> Fetching custom git buildpack... done
-----> pgbouncer app detected
Using pgbouncer version: 1.7-heroku
Using pgbouncer version: 1.23.1-heroku
-----> Fetching and vendoring pgbouncer into slug
-----> Moving the configuration generation script into app/bin
-----> Moving the start-pgbouncer script into app/bin
Expand All @@ -92,9 +92,9 @@ that process.

## PgBouncer Version

- Heroku-20: `v1.17.0`
- Heroku-22: `v1.17.0`
- Heroku-24: `v1.17.0`
- Heroku-20: `v1.23.1`
- Heroku-22: `v1.23.1`
- Heroku-24: `v1.23.1`

## Multiple Databases
It is possible to connect to multiple databases through pgbouncer by setting
Expand Down
Binary file modified pgbouncer-heroku-20.tgz
Binary file not shown.
Binary file modified pgbouncer-heroku-22.tgz
Binary file not shown.
Binary file modified pgbouncer-heroku-24.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion support/pgbouncer-build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euo pipefail

PGBOUNCER_VERSION=${PGBOUNCER_VERSION-1.17.0}
PGBOUNCER_VERSION=${PGBOUNCER_VERSION-1.23.1}

pgbouncer_tarball_url=https://www.pgbouncer.org/downloads/files/${PGBOUNCER_VERSION}/pgbouncer-${PGBOUNCER_VERSION}.tar.gz

Expand Down