Skip to content

Commit cb405a8

Browse files
chore(main): release server 1.5.0
1 parent 0c1a2b6 commit cb405a8

4 files changed

Lines changed: 34 additions & 5 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.4.1"
2+
".": "1.5.0"
33
}

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [1.5.0](https://github.com/supabase/server/compare/server-v1.4.1...server-v1.5.0) (2026-08-28)
4+
5+
6+
### Features
7+
8+
* `withOAuthProtectedResource` url config ([#117](https://github.com/supabase/server/issues/117)) ([11cce29](https://github.com/supabase/server/commit/11cce29d1a1dda312a72a17f496e369ebdb56b49))
9+
* add `withOAuthProtectedResource` ([#113](https://github.com/supabase/server/issues/113)) ([3908590](https://github.com/supabase/server/commit/39085907d163a434f18132639f92ab4b5082b5ab))
10+
* add withRequiredClaims user-mode auth gate ([#127](https://github.com/supabase/server/issues/127)) ([05a95b6](https://github.com/supabase/server/commit/05a95b6dcb69d74e9fddf5d57b8d8e04e72e6696))
11+
* flow upstream ctx types through withSupabase nesting ([#119](https://github.com/supabase/server/issues/119)) ([f393c6e](https://github.com/supabase/server/commit/f393c6e7257fb103017d70a56e0437fcc7a9f060))
12+
* **middleware:** ship withPostgresClient and withPostgresAdminClient ([#115](https://github.com/supabase/server/issues/115)) ([77656ba](https://github.com/supabase/server/commit/77656bae3b76d37cebcf53a089230fe59c94161b))
13+
* validate middleware prereqs against Supabase context ([#126](https://github.com/supabase/server/issues/126)) ([1576369](https://github.com/supabase/server/commit/15763696d4600508e00402e08af80853bae14b42))
14+
* withSupabase on the @supabase/middleware engine ([#88](https://github.com/supabase/server/issues/88)) ([2b5d4fd](https://github.com/supabase/server/commit/2b5d4fd82e2b38e5de3b19c840b3ca1a9813d893))
15+
16+
17+
### Bug Fixes
18+
19+
* construct supabaseAdmin lazily on first access ([#124](https://github.com/supabase/server/issues/124)) ([fbb652f](https://github.com/supabase/server/commit/fbb652f55e28669cc57f4319126b4734c9a40e6f))
20+
* declare pg and keep it out of the root CJS bundle ([#122](https://github.com/supabase/server/issues/122)) ([f05307f](https://github.com/supabase/server/commit/f05307ff4a6128940deb3151ef13b27bcf5c4116))
21+
* harden oauth-protected-resource header and URL edge cases ([#131](https://github.com/supabase/server/issues/131)) ([0c1a2b6](https://github.com/supabase/server/commit/0c1a2b67e4af10464104f963437b9061a4064684))
22+
* migrate `withOAuthProtectedResource` to `defineMiddleware` ([#116](https://github.com/supabase/server/issues/116)) ([04831ce](https://github.com/supabase/server/commit/04831cedcccedfdbdce99fbbaf6ee80fc8fc49b3))
23+
* report missing JWKS as ENV_ERROR in user-mode verification ([#128](https://github.com/supabase/server/issues/128)) ([9c064c5](https://github.com/supabase/server/commit/9c064c58df01f741b0941641245e81be3d15e350))
24+
325
## [1.4.1](https://github.com/supabase/server/compare/server-v1.4.0...server-v1.4.1) (2026-07-22)
426

527

jsr.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@supabase/server",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"exports": {
55
".": "./src/index.ts",
66
"./core": "./src/core/index.ts",
@@ -18,7 +18,14 @@
1818
"./oauth-protected-resource": "./src/oauth-protected-resource/index.ts"
1919
},
2020
"publish": {
21-
"include": ["src/**/*.ts", "README.md", "LICENSE"],
22-
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts"]
21+
"include": [
22+
"src/**/*.ts",
23+
"README.md",
24+
"LICENSE"
25+
],
26+
"exclude": [
27+
"src/**/*.test.ts",
28+
"src/**/*.spec.ts"
29+
]
2330
}
2431
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@supabase/server",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"description": "Server-side utilities for Supabase. Handles auth, client creation, and context injection so you write business logic, not boilerplate.",
55
"keywords": [
66
"edge",

0 commit comments

Comments
 (0)