Skip to content

Commit 89df850

Browse files
diogobwolfgangwalther
authored andcommitted
fix: Fix regression for schema cache reloading via NOTIFY on Windows
Upstream accidentally removed the fix, which was introduced for PostgREST#2524. Fixed again. (cherry picked from commit b285f5f)
1 parent dc96cdb commit 89df850

8 files changed

+16
-12
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## Unreleased
77

8+
### Fixed
9+
10+
- #2524, Fix schema reloading notice on windows - @diogob
11+
812
## [12.2.6] - 2025-01-29
913

1014
### Fixed

cabal.project.freeze

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
index-state: hackage.haskell.org 2024-05-17T23:41:49Z
1+
index-state: hackage.haskell.org 2025-02-01T14:59:33Z

nix/overlays/haskell-packages.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ let
7474
hasql-notifications = lib.dontCheck (prev.callHackageDirect
7575
{
7676
pkg = "hasql-notifications";
77-
ver = "0.2.2.0";
78-
sha256 = "sha256-73OQ9/su2qvO7HavF3xuuNWLXSXyB9reBUQDaHys06I=";
77+
ver = "0.2.2.2";
78+
sha256 = "sha256-myKwlug7OgTa/qP6mHfCD+5Q8IhM17JvpJBfSo+M01k=";
7979
}
8080
{ }
8181
);

postgrest.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ library
110110
, gitrev >= 1.2 && < 1.4
111111
, hasql >= 1.6.1.1 && < 1.7
112112
, hasql-dynamic-statements >= 0.3.1 && < 0.4
113-
, hasql-notifications >= 0.2.2.0 && < 0.3
113+
, hasql-notifications >= 0.2.2.2 && < 0.2.3
114114
, hasql-pool >= 1.0.1 && < 1.1
115115
, hasql-transaction >= 1.0.1 && < 1.1
116116
, heredoc >= 0.2 && < 0.3

stack-21.7.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ nix:
1919
extra-deps:
2020
- configurator-pg-0.2.10
2121
- fuzzyset-0.2.4
22-
- hasql-notifications-0.2.2.0
22+
- hasql-notifications-0.2.2.2
2323
- hasql-pool-1.0.1
2424
- postgresql-libpq-0.10.1.0

stack-21.7.yaml.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ packages:
1919
original:
2020
hackage: fuzzyset-0.2.4
2121
- completed:
22-
hackage: hasql-notifications-0.2.2.0@sha256:a4e591ef3f06647b056567d3b66948c4a85371f05deb5434edb6ce190f7c845d,2021
22+
hackage: hasql-notifications-0.2.2.2@sha256:d1d6bc0d3ee5e418fc12ea023b78739e0decba6c34e2b43bec55b89e18bd4412,2025
2323
pantry-tree:
24-
sha256: bd7192a5e82ef6dbac711c3433408a0330c8db1cd3482be1ccd4fbd0a63bc2f6
24+
sha256: 83a9cbb179b1efd0b2acd6509583c7afcdbe63469ab033d8581d48d675a80b44
2525
size: 452
2626
original:
27-
hackage: hasql-notifications-0.2.2.0
27+
hackage: hasql-notifications-0.2.2.2
2828
- completed:
2929
hackage: hasql-pool-1.0.1@sha256:3cfb4c7153a6c536ac7e126c17723e6d26ee03794954deed2d72bcc826d05a40,2302
3030
pantry-tree:

stack.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ nix:
1111

1212
extra-deps:
1313
- fuzzyset-0.2.4
14-
- hasql-notifications-0.2.2.0
14+
- hasql-notifications-0.2.2.2
1515
- hasql-pool-1.0.1

stack.yaml.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ packages:
1212
original:
1313
hackage: fuzzyset-0.2.4
1414
- completed:
15-
hackage: hasql-notifications-0.2.2.0@sha256:a4e591ef3f06647b056567d3b66948c4a85371f05deb5434edb6ce190f7c845d,2021
15+
hackage: hasql-notifications-0.2.2.2@sha256:d1d6bc0d3ee5e418fc12ea023b78739e0decba6c34e2b43bec55b89e18bd4412,2025
1616
pantry-tree:
17-
sha256: bd7192a5e82ef6dbac711c3433408a0330c8db1cd3482be1ccd4fbd0a63bc2f6
17+
sha256: 83a9cbb179b1efd0b2acd6509583c7afcdbe63469ab033d8581d48d675a80b44
1818
size: 452
1919
original:
20-
hackage: hasql-notifications-0.2.2.0
20+
hackage: hasql-notifications-0.2.2.2
2121
- completed:
2222
hackage: hasql-pool-1.0.1@sha256:3cfb4c7153a6c536ac7e126c17723e6d26ee03794954deed2d72bcc826d05a40,2302
2323
pantry-tree:

0 commit comments

Comments
 (0)