Skip to content

Commit 62f4d94

Browse files
authored
Add pgbouncer 1.14 (#135)
* Add pgbouncer 1.14 * Update Changelog.md
1 parent d6c4401 commit 62f4d94

10 files changed

+19
-3
lines changed

Changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
## Unreleased
1+
## v0.6.0 (June 12, 2020)
22
* Add support for Heroku-20
3+
* Updates pgbouncer to 1.14 for Heroku-20
4+
* Updates pgbouncer to 1.14 for Heroku-18
5+
* Updates pgbouncer to 1.14 for Heroku-16
36

47
## v0.5.0 (May 18, 2020)
58
* Updates pgbouncer to 1.13 for Heroku-18

bin/compile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function indent() {
3030
}
3131

3232
if [[ "${STACK}" == "heroku-16" || "${STACK}" == "heroku-18" || "${STACK}" == "heroku-20" ]]; then
33-
PGBOUNCER_VERSION="1.13.0"
33+
PGBOUNCER_VERSION="1.14.0"
3434
elif [[ "${STACK}" == "cedar-14" ]]; then
3535
PGBOUNCER_VERSION="1.7"
3636
else

pgbouncer-1.13.0-heroku-16.tgz

-715 KB
Binary file not shown.

pgbouncer-1.13.0-heroku-18.tgz

-685 KB
Binary file not shown.

pgbouncer-1.13.0-heroku-20.tgz

-788 KB
Binary file not shown.

pgbouncer-1.14.0-heroku-16.tgz

721 KB
Binary file not shown.

pgbouncer-1.14.0-heroku-18.tgz

690 KB
Binary file not shown.

pgbouncer-1.14.0-heroku-20.tgz

794 KB
Binary file not shown.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
--- src/main.c
2+
+++ src/main.c
3+
@@ -433,9 +433,7 @@ static struct event ev_sigint;
4+
5+
static void handle_sigterm(evutil_socket_t sock, short flags, void *arg)
6+
{
7+
- log_info("got SIGTERM, fast exit");
8+
- /* pidfile cleanup happens via atexit() */
9+
- exit(1);
10+
+ log_info("Got SIGTERM, ignoring!");
11+
}
12+
13+
static void handle_sigint(evutil_socket_t sock, short flags, void *arg)

support/pgbouncer-build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
PGBOUNCER_VERSION=${PGBOUNCER_VERSION-1.13.0}
5+
PGBOUNCER_VERSION=${PGBOUNCER_VERSION-1.14.0}
66

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

0 commit comments

Comments
 (0)