Skip to content

Commit cb6fc55

Browse files
chore(deps): update nixpkgs, stackage and hackage pins
1 parent b114bb9 commit cb6fc55

7 files changed

Lines changed: 13 additions & 14 deletions

File tree

.fdignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

cabal.project.freeze

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
index-state: hackage.haskell.org 2026-04-18T18:42:36Z
1+
index-state: hackage.haskell.org 2026-06-02T04:24:44Z

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/tools/devTools.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ let
4141
}
4242
''
4343
while true; do
44-
(! ${fd}/bin/fd -H | ${entr}/bin/entr -dr "$_arg_command" "''${_arg_leftovers[@]}")
44+
(! ${fd}/bin/fd -H -E .git | ${entr}/bin/entr -dr "$_arg_command" "''${_arg_leftovers[@]}")
4545
done
4646
'';
4747

src/PostgREST/App.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ import qualified Data.List as L
6868
import Data.Streaming.Network (bindPortTCP)
6969
import qualified Data.Text as T
7070
import qualified Network.HTTP.Types as HTTP
71-
import qualified Network.HTTP.Types.Header as HTTP (hVary)
71+
import Network.HTTP.Types.Header (hVary)
7272
import qualified Network.Socket as NS
7373
import PostgREST.Unix (createAndBindDomainSocket)
7474
import Protolude hiding (Handler)
@@ -223,10 +223,10 @@ postgrestResponse appState conf@AppConfig{..} maybeSchemaCache jwtTime authResul
223223
serverTimingHeaders timing = [serverTimingHeader timing | configServerTimingEnabled]
224224

225225
varyHeader :: HTTP.Header
226-
varyHeader = (HTTP.hVary, "Accept, Prefer, Range")
226+
varyHeader = (hVary, "Accept, Prefer, Range")
227227

228228
varyHeaderPresent :: [HTTP.Header] -> Bool
229-
varyHeaderPresent = any (\(h, _v) -> h == HTTP.hVary)
229+
varyHeaderPresent = any (\(h, _v) -> h == hVary)
230230

231231
withTiming :: (MonadError e m, MonadIO m) => AppConfig -> m a -> m (Maybe Double, a)
232232
withTiming AppConfig{configServerTimingEnabled} f = if configServerTimingEnabled

stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# When updating, update GHC version in .github/workflows/build.yaml as well.
2-
resolver: lts-24.37 # 2026-04-15, GHC 9.10.3
2+
resolver: lts-24.43 # 2026-05-29, GHC 9.10.3
33

44
nix:
55
packages:

stack.yaml.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ packages:
4848
hackage: warp-3.4.13
4949
snapshots:
5050
- completed:
51-
sha256: 655e468f774beee1badf07dc4c45fb50288d5c66ce7bef6f487b7f92891a90b0
52-
size: 728965
53-
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/24/37.yaml
54-
original: lts-24.37
51+
sha256: 3c412a7c13dba6d3d808455a458e0776c58b6cf99b8a7961a2f5e55589d6f1d6
52+
size: 729011
53+
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/24/43.yaml
54+
original: lts-24.43

0 commit comments

Comments
 (0)