Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ All notable changes to this project will be documented in this file. From versio
- Fix unexpected results when embedding and filtering the same table more than once by @laurenceisla in #4075
- If the schema cache fails to reload, PostgREST will no longer stop serving requests and will continue doing so in a "best effort" basis by @mkleczek in #4873 #4869
- Stop reporting 503s errors unnecessarily while the schema cache is loading at startup by @mkleczek in #4880
- Fix admin server dying silently by @Vlix, @mkleczek, @steve-chavez in #5012

### Changed

Expand Down
16 changes: 9 additions & 7 deletions nix/overlays/haskell-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,15 @@ let
{ };

warp =
lib.dontCheck (prev.callHackageDirect
{
pkg = "warp";
ver = "3.4.13";
sha256 = "sha256-jmr8kpeSPDkOhT0i9PhozZapX4nUs92cOX7POAGb7/M=";
}
{ });
lib.dontCheck
(prev.callCabal2nixWithOptions "warp"
(super.fetchFromGitHub {
owner = "yesodweb";
repo = "wai";
rev = "ad041216b643f69a2a9c87cbf4c2988aa4633dd5";
sha256 = "sha256-Dl3wLrGl1HvkF9MqGdY4dzx4z6SlCSiFZgCgprd7Cjg=";
}) "--subpath=warp"
{ });
};
in
{
Expand Down
5 changes: 4 additions & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ extra-deps:
- hasql-notifications-0.2.4.0
- http-semantics-0.4.0
- http2-5.4.0
- warp-3.4.13
- git: https://github.com/yesodweb/wai.git
commit: ad041216b643f69a2a9c87cbf4c2988aa4633dd5
subdirs:
- warp
Comment on lines +18 to +21

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can not represent these git-fetched dependencies on hackage. That's why we usually say we don't depend on unreleased versions of packages.

That has been (my) feedback consistently for quite some time now, whenever somebody wanted to introduce something like this.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Vlix Do you think a new release will come soon in Warp? 🙏

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes 👉 warp-3.4.14


allow-newer: true
allow-newer-deps:
Expand Down
16 changes: 11 additions & 5 deletions stack.yaml.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was autogenerated by Stack.
# You should not edit this file by hand.
# For more information, please see the documentation at:
# https://docs.haskellstack.org/en/stable/topics/lock_files
# https://docs.haskellstack.org/en/stable/lock_files

packages:
- completed:
Expand Down Expand Up @@ -47,12 +47,18 @@ packages:
original:
hackage: http2-5.4.0
- completed:
hackage: warp-3.4.13@sha256:ccd1fb8765166ca31928635fffdab85569b7a0f2a81cc11c9a5b91eab663eda6,10066
commit: ad041216b643f69a2a9c87cbf4c2988aa4633dd5
git: https://github.com/yesodweb/wai.git
name: warp
pantry-tree:
sha256: dfe50280b7d9549f7eebedc35f62d633ecb185ba0d9686146bb39074c3055df5
size: 4175
sha256: 02665f2d175a7fd683470e608b23e0d661f4e55dd13e073ed203e4b9a5801f8f
size: 4975
subdir: warp
version: 3.4.13.1
original:
hackage: warp-3.4.13
commit: ad041216b643f69a2a9c87cbf4c2988aa4633dd5
git: https://github.com/yesodweb/wai.git
subdir: warp
snapshots:
- completed:
sha256: 3286bb954fe0e7e0291ca61fac01a689b7165da9d7e8ba3c3a045be989c860fd
Expand Down