Skip to content

Commit a9c8219

Browse files
committed
bump to pg_net 0.19.5
- No longer executes unnecessary queries, preventing pollution of pg_stat_statements supabase/pg_net#199 - Fixes the memory leak problem with `pg_stat_monitor` supabase/pg_net#199 - Fixes the previous problem on 0.19.3 with DROP DATABASE supabase/pg_net#217 - `http_delete` with request body added in supabase/pg_net#173
1 parent b3ce15f commit a9c8219

File tree

5 files changed

+17
-13
lines changed

5 files changed

+17
-13
lines changed

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ postgres_major:
99

1010
# Full version strings for each major version
1111
postgres_release:
12-
postgresorioledb-17: "17.5.1.012-orioledb"
13-
postgres17: "17.4.1.069"
14-
postgres15: "15.8.1.126"
12+
postgresorioledb-17: "17.5.1.013-orioledb"
13+
postgres17: "17.4.1.070"
14+
postgres15: "15.8.1.127"
1515

1616
# Non Postgres Extensions
1717
pgbouncer_release: "1.19.0"

nix/ext/pg_net.nix

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
stdenv.mkDerivation rec {
1010
pname = "pg_net";
11-
version = "0.14.0";
11+
version = "0.19.5";
1212

1313
buildInputs = [
1414
curl
@@ -19,11 +19,9 @@ stdenv.mkDerivation rec {
1919
owner = "supabase";
2020
repo = pname;
2121
rev = "refs/tags/v${version}";
22-
hash = "sha256-c1pxhTyrE5j6dY+M5eKAboQNofIORS+Dccz+7HKEKQI=";
22+
hash = "sha256-Cpi2iASi1QJoED0Qs1dANqg/BNZTsz5S+pw8iYyW03Y=";
2323
};
2424

25-
env.NIX_CFLAGS_COMPILE = "-Wno-error";
26-
2725
installPhase = ''
2826
mkdir -p $out/{lib,share/postgresql/extension}
2927

0 commit comments

Comments
 (0)