diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4918b25..dd8fde7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.4.1" + ".": "1.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dff52f..8479794 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [1.5.0](https://github.com/supabase/server/compare/server-v1.4.1...server-v1.5.0) (2026-08-25) + + +### Features + +* add `withOAuthProtectedResource` ([#113](https://github.com/supabase/server/issues/113)) ([3908590](https://github.com/supabase/server/commit/39085907d163a434f18132639f92ab4b5082b5ab)) +* flow upstream ctx types through withSupabase nesting ([#119](https://github.com/supabase/server/issues/119)) ([f393c6e](https://github.com/supabase/server/commit/f393c6e7257fb103017d70a56e0437fcc7a9f060)) +* **middleware:** ship withPostgresClient and withPostgresAdminClient ([#115](https://github.com/supabase/server/issues/115)) ([77656ba](https://github.com/supabase/server/commit/77656bae3b76d37cebcf53a089230fe59c94161b)) +* withSupabase on the @supabase/middleware engine ([#88](https://github.com/supabase/server/issues/88)) ([2b5d4fd](https://github.com/supabase/server/commit/2b5d4fd82e2b38e5de3b19c840b3ca1a9813d893)) + + +### Bug Fixes + +* migrate `withOAuthProtectedResource` to `defineMiddleware` ([#116](https://github.com/supabase/server/issues/116)) ([04831ce](https://github.com/supabase/server/commit/04831cedcccedfdbdce99fbbaf6ee80fc8fc49b3)) + ## [1.4.1](https://github.com/supabase/server/compare/server-v1.4.0...server-v1.4.1) (2026-07-22) diff --git a/jsr.json b/jsr.json index 14db0ed..51249c2 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@supabase/server", - "version": "1.4.1", + "version": "1.5.0", "exports": { ".": "./src/index.ts", "./core": "./src/core/index.ts", @@ -17,7 +17,14 @@ "./oauth-protected-resource": "./src/oauth-protected-resource/index.ts" }, "publish": { - "include": ["src/**/*.ts", "README.md", "LICENSE"], - "exclude": ["src/**/*.test.ts", "src/**/*.spec.ts"] + "include": [ + "src/**/*.ts", + "README.md", + "LICENSE" + ], + "exclude": [ + "src/**/*.test.ts", + "src/**/*.spec.ts" + ] } } diff --git a/package.json b/package.json index 4ec89a6..9095f24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@supabase/server", - "version": "1.4.1", + "version": "1.5.0", "description": "Server-side utilities for Supabase. Handles auth, client creation, and context injection so you write business logic, not boilerplate.", "keywords": [ "edge",