Taimoor Zaeem and Steve Chavez
d512d5c105
refactor: move escapeHostName to Network.hs
...
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com >
2025-09-05 08:51:33 -05:00
renovate[bot] and Wolfgang Walther
b265f7bf7e
chore(deps): update codecov/codecov-action action to v5.5.1
2025-09-04 19:25:46 +00:00
steve-chavez
1dca23e7af
refactor: move accessibleFuncs to SqlFragment
2025-09-04 09:35:33 -05:00
steve-chavez
9c07070263
refactor: move accessibleTables to SqlFragment
2025-09-04 09:35:33 -05:00
steve-chavez
1ace298a1a
refactor: move schemaCacheDescription to SqlFragment
...
This doesn't belong in the schema cache module, as
it's unused there. It's only used on Query.hs.
2025-09-04 09:35:33 -05:00
renovate[bot] and Wolfgang Walther
96d2b69af4
chore(deps): update ubuntu:noble docker digest to 9cbed75
2025-09-03 13:53:55 +00:00
steve-chavez
b2ce322d56
refactor: move snippet logic inside Statements.hs
...
Some snippet logic was unnecessarily at the Query.hs level.
This is better as we can see what inputs we need to form the main
queries.
2025-09-02 16:26:15 -05:00
steve-chavez
0844743c30
refactor: clarify Plan module and comment
2025-09-02 16:26:15 -05:00
steve-chavez
3e776213b7
refactor: move decoding to Query.hs
...
Towards solving https://github.com/PostgREST/postgrest/issues/3934 .
This makes the Statements internal module pure now it only returns
Hasql.Snippet.
2025-09-02 16:26:15 -05:00
renovate[bot] and Wolfgang Walther
00d92aa474
chore(deps): update ubuntu:noble docker digest to f3b7f1b
2025-09-02 08:17:07 +00:00
Taimoor Zaeem and Wolfgang Walther
0d7986bd71
chore: add changelog for v13.0.6
...
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com >
2025-09-02 08:16:28 +00:00
Taimoor Zaeem and Steve Chavez
41b6ebea58
refactor: deduplicate host resolution logic and observations
...
Replaces the "API server listening on unix socket" with simpler
"API server listening on " observation. This allows refactoring
redundant code.
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com >
2025-09-01 15:00:20 -05:00
Taimoor Zaeem and Steve Chavez
ef9ac61d9e
test(log): postgrest listening on unix socket observation
...
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com >
2025-08-30 13:43:18 -05:00
Laurence Isla
043b1f97ee
fix: empty enum in 'preferParams' openAPI parameter
2025-08-29 22:57:56 +00:00
Taimoor Zaeem and Steve Chavez
7a2840fba6
fix: format of IPv6 address logged at PostgREST startup
...
The IPv6 address logged at the startup like `::1:80` was
wrong because the port isn't clearly separated. This commit
corrects it, now logging as `[::1]:80`.
This is done in accordance to RFC 3986. In short, we did this
have a clear separation between the port and host because
the components of an IPv6 are separated with the ':' character.
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com >
2025-08-29 13:02:20 -05:00
renovate[bot] and Wolfgang Walther
08a6a9d9be
chore(deps): update nixbuild/nix-quick-install-action action to v33
2025-08-25 13:55:55 +00:00
Taimoor Zaeem and Wolfgang Walther
09c1e2b24c
chore: add changelog for v13.0.5
...
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com >
2025-08-25 06:51:51 +00:00
Laurence Isla
bf90f95443
fix: logging the Haskell type instead of the listener error message directly
...
Previously: Just "connection error..."
Now: connection error...
2025-08-22 19:27:38 +00:00
Taimoor Zaeem and Steve Chavez
dfe5ba3863
fix(admin): metrics endpoint not responding with Content-Type header
...
The prometheus metrics text format requires `Content-Type` header
for correct scraping which fails otherwise. Closes #4271 .
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com >
2025-08-20 16:13:55 -05:00
renovate[bot] and Wolfgang Walther
7657607ca5
chore(deps): update codecov/codecov-action action to v5.5.0
2025-08-20 18:11:02 +00:00
steve-chavez
f01d5bfeb3
docs: reorder computed relationships for clarity
...
Ensure the function inlining is mentioned first
2025-08-19 12:24:47 -05:00
Taimoor Zaeem and Steve Chavez
0ae1cdfc66
refactor(query): make fromJsonBodyF function more readable
...
The `fromJsonBodyF` function was very unreadable and making
changes were difficult. This commit improves the readability
for easier future changes and improvements.
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com >
2025-08-19 11:58:19 -05:00
steve-chavez
1dce4a9321
Revert "fix: geojson invalid query on unavailable PostGIS"
...
This reverts commit 0f1ca8faac .
Reverting for now as it adds one more query to the schema cache and
there's no clear way forward on how to integrate the fix with the
current schema cache queries.
See discussion on
https://github.com/PostgREST/postgrest/pull/4246#pullrequestreview-3093174224 .
2025-08-13 14:54:53 -05:00
renovate[bot] and Wolfgang Walther
c9272b0088
chore(deps): update ubuntu:noble docker digest to 7c06e91
2025-08-13 07:19:30 +00:00
renovate[bot] and Wolfgang Walther
1cd8934bb7
chore(deps): update actions/checkout action to v5
2025-08-11 15:15:57 +00:00
renovate[bot] and Wolfgang Walther
b915968f30
chore(deps): update actions/cache action to v4.2.4
2025-08-07 14:24:41 +00:00
steve-chavez
0f1ca8faac
fix: geojson invalid query on unavailable PostGIS
...
Closes https://github.com/PostgREST/postgrest/issues/4245 .
It adds a query on schema cache construction, but doesn't add a new
attribute to the SchemaCache type. We only need the information to be
passed to the `initialMediaHandlers` function to build the builtin media
handlers.
2025-08-06 10:20:01 -05:00
renovate[bot] and Wolfgang Walther
7870add603
chore(deps): update actions/download-artifact action to v5
2025-08-06 07:45:01 +00:00
renovate[bot] and Wolfgang Walther
a2da255931
chore(deps): update docker/login-action action to v3.5.0
2025-08-04 17:05:52 +00:00
renovate[bot] and Wolfgang Walther
26bc13b57f
chore(deps): update haskell-actions/setup action to v2.8.1
2025-08-03 16:27:13 +00:00
steve-chavez
fa09e4af0d
docs: add redirects for broken hashes on auth.rst
2025-07-30 05:28:00 -05:00
steve-chavez
fd127f449c
docs: correct order of jwt claims sections
2025-07-30 05:14:43 -05:00
steve-chavez
ad25479185
chore: put bounded jwt cache as addition
2025-07-30 04:53:22 -05:00
Taimoor Zaeem and Steve Chavez
6a37e1c37b
chore: correct recent change log entry
...
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com >
2025-07-30 02:46:01 -05:00
Michal Kleczek and GitHub
77ff11de95
feat: JWT cache implementation based on sieve algorithm ( #4084 )
...
Changes:
1. Refactoring and some cleanup of JWT handling code:
* Instead of caching AuthResult cache decoded claims (which signature was verified). Validating claims and determining role is done after cache lookup
* Cleaned up API so that usage of it is simplified: lookupJwtCache cache key >>= parseClaims configJwtAud time
* Handling of JwtCacheState initialization and updates of configuration is encapsulated in Auth.JwtCache module
2. Generic high performance (hopefully) scalable, dynamically resizeable cache implementation based on stm, stm-hamt and sieve algorithm. It also integrates with PostgREST measurements infrastructure providing usage stats (ie. hit ratio, evictions count)
2025-07-29 18:51:41 -05:00
steve-chavez
ac155a9391
docs: clarify auth page
...
Reorganizes the auth page and clarifies some links
2025-07-28 15:43:38 -05:00
Taimoor Zaeem and Steve Chavez
96571aa0f4
refactor: move request body to a Payload.hs module
2025-07-26 08:50:56 +02:00
steve-chavez
aa58e37f03
refactor: add PreQuery module
...
Small step towards solving #3934 .
Adds a module that builds SQL snippets for the transaction variables
and the pre-request function.
2025-07-23 10:06:32 +02:00
Taimoor Zaeem and GitHub
5e0da40ac4
chore: update README.md and CONTRIBUTING.md ( #4218 )
...
- Moved the CONTRIBUTING.md file to project root.
- Fixed broken nightly release link.
- Update README.md
2025-07-22 13:50:00 +00:00
renovate[bot] and Wolfgang Walther
2b065553a0
chore(config): migrate config .github/renovate.json
2025-07-21 20:04:54 +00:00
renovate[bot] and Wolfgang Walther
cd04360a43
chore(deps): update ubuntu:noble docker digest to a08e551
2025-07-19 12:16:42 +00:00
Taimoor Zaeem and Wolfgang Walther
96bbbe35e1
test: adjust jwt claims error test to avoid failure
...
The JWT claims IO test fails too often. This breaks our
workflows. This commit adjusts the edge cases in test to
prevent flakiness.
2025-07-19 12:16:29 +00:00
steve-chavez
161f37f1f1
test: remove jwt decoding from mixed loadtest
...
We now have dedicated JWT loadtests, so it's no longer necessary
to conflate JWT here.
2025-07-18 07:25:53 -05:00
Wolfgang Walther and Steve Chavez
25e56f32e4
nix: avoid updating cabal on every run
...
Resolves #4206
2025-07-17 11:47:44 -05:00
Laurence Isla
66caaffbe3
chore: update sponsor
2025-07-16 19:54:53 -05:00
steve-chavez
2d4967c4b4
nix: reduce loadtest result verbosity
2025-07-16 17:38:33 -05:00
Wolfgang Walther
d013a1fd77
docs: adjust some redirects
...
Those were reported in the weekly linkcheck.
2025-07-16 11:03:50 +02:00
renovate[bot] and Wolfgang Walther
b91e241b9a
chore(deps): update ubuntu:noble docker digest to c4570d2
2025-07-16 09:00:23 +00:00
renovate[bot] and Wolfgang Walther
84564b9e3e
chore(deps): update ubuntu:noble docker digest to a328b84
2025-07-16 08:51:25 +00:00
Taimoor Zaeem and Steve Chavez
d4caa0f5f5
fix: empty spread embeddings return unexpected SQL error
...
Fixes the SQL error from postgres when an empty spread embeddings
like `...table()` is requested.
2025-07-13 14:16:27 -05:00