From 3e6bdfc0499e33f3dcd49385192e21937eab3d40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Oct 2025 16:22:42 +0000 Subject: [PATCH] chore(main): release 2.34.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++++++++ Sources/Helpers/Version.swift | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7f6e3fc32..7a1c4674e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.33.2" + ".": "2.34.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dff2fcfd..6e72f7398 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2.34.0](https://github.com/supabase/supabase-swift/compare/v2.33.2...v2.34.0) (2025-10-07) + + +### Features + +* add support for broadcast replay configuration ([#805](https://github.com/supabase/supabase-swift/issues/805)) ([8083464](https://github.com/supabase/supabase-swift/commit/8083464ad605bb99ea18df688f827ea5f417c040)) +* **auth:** add OAuth 2.1 client admin endpoints ([#809](https://github.com/supabase/supabase-swift/issues/809)) ([a2320ec](https://github.com/supabase/supabase-swift/commit/a2320ec64ad8a0bb10de2fcab51822a1c5e91618)) +* **auth:** introduce getClaims method to verify and extract JWT claims ([#812](https://github.com/supabase/supabase-swift/issues/812)) ([fda262b](https://github.com/supabase/supabase-swift/commit/fda262bdb0959e4f7bdb232bdec986f0fbd0f7d5)) +* **functions:** add region as forceFunctionRegion query parameter ([#806](https://github.com/supabase/supabase-swift/issues/806)) ([45ec3d6](https://github.com/supabase/supabase-swift/commit/45ec3d6647c0bac26552d48fb22bffaa67fa8f0d)) + ## [2.33.2](https://github.com/supabase/supabase-swift/compare/v2.33.1...v2.33.2) (2025-09-25) diff --git a/Sources/Helpers/Version.swift b/Sources/Helpers/Version.swift index 7923d3e8e..218690887 100644 --- a/Sources/Helpers/Version.swift +++ b/Sources/Helpers/Version.swift @@ -1,7 +1,7 @@ import Foundation import XCTestDynamicOverlay -private let _version = "2.33.2" // {x-release-please-version} +private let _version = "2.34.0" // {x-release-please-version} #if DEBUG package let version = isTesting ? "0.0.0" : _version