diff --git a/CHANGELOG.md b/CHANGELOG.md index 7756c501..1f5f992c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,50 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2024-05-13 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`functions_client` - `v2.2.0`](#functions_client---v220) + - [`gotrue` - `v2.7.0`](#gotrue---v270) + - [`postgrest` - `v2.1.2`](#postgrest---v212) + - [`supabase_flutter` - `v2.5.3`](#supabase_flutter---v253) + - [`supabase` - `v2.1.3`](#supabase---v213) + +Packages with dependency updates only: + +> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project. + + - `supabase` - `v2.1.3` + +--- + +#### `functions_client` - `v2.2.0` + + - **FEAT**(functions): Invoke function with custom query params ([#926](https://github.com/supabase/supabase-flutter/issues/926)). ([7ded898d](https://github.com/supabase/supabase-flutter/commit/7ded898dee07004cbb20e4d7c209f94a507fad3b)) + +#### `gotrue` - `v2.7.0` + + - **FEAT**(goture): Allow OAuthProvider.kakao for signInWithIdToken ([#922](https://github.com/supabase/supabase-flutter/issues/922)). ([e21db454](https://github.com/supabase/supabase-flutter/commit/e21db454003bbd960af634a01b9642c46284715e)) + +#### `postgrest` - `v2.1.2` + + - **FIX**(postgrest): Update parameter type of `isFilter()` to only allow boolean or null ([#920](https://github.com/supabase/supabase-flutter/issues/920)). ([0a3b73e0](https://github.com/supabase/supabase-flutter/commit/0a3b73e02f90ad8d05cf96bf91336a951982b800)) + - **FIX**(postgrest): Update parameter type of `match()` filter so that null values cannot be passed. ([#919](https://github.com/supabase/supabase-flutter/issues/919)). ([0902124f](https://github.com/supabase/supabase-flutter/commit/0902124f7fa4b0fab07cc4b43a895914514fd04a)) + +#### `supabase_flutter` - `v2.5.3` + + - **FIX**: Keep compatible with app_links 6.0.0 and 5.0.0 ([#918](https://github.com/supabase/supabase-flutter/issues/918)). ([04a59dca](https://github.com/supabase/supabase-flutter/commit/04a59dcae738cf41e3a7daa293751db444f80f4c)) + + ## 2024-04-29 ### Changes diff --git a/packages/functions_client/CHANGELOG.md b/packages/functions_client/CHANGELOG.md index e3900e8f..44d7e318 100644 --- a/packages/functions_client/CHANGELOG.md +++ b/packages/functions_client/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.2.0 + + - **FEAT**(functions): Invoke function with custom query params ([#926](https://github.com/supabase/supabase-flutter/issues/926)). ([7ded898d](https://github.com/supabase/supabase-flutter/commit/7ded898dee07004cbb20e4d7c209f94a507fad3b)) + ## 2.1.0 - **FEAT**(functions_client): Add SSE support to invoke method ([#905](https://github.com/supabase/supabase-flutter/issues/905)). ([2e052440](https://github.com/supabase/supabase-flutter/commit/2e052440e3889e52cb97cb44a70048713e0b583e)) diff --git a/packages/functions_client/lib/src/version.dart b/packages/functions_client/lib/src/version.dart index fcf11af0..63ac0966 100644 --- a/packages/functions_client/lib/src/version.dart +++ b/packages/functions_client/lib/src/version.dart @@ -1 +1 @@ -const version = '2.1.0'; +const version = '2.2.0'; diff --git a/packages/functions_client/pubspec.yaml b/packages/functions_client/pubspec.yaml index 2df9da54..10f00e26 100644 --- a/packages/functions_client/pubspec.yaml +++ b/packages/functions_client/pubspec.yaml @@ -1,6 +1,6 @@ name: functions_client description: A dart client library for the Supabase functions. -version: 2.1.0 +version: 2.2.0 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/functions_client' documentation: 'https://supabase.com/docs/reference/dart/functions-invoke' diff --git a/packages/gotrue/CHANGELOG.md b/packages/gotrue/CHANGELOG.md index 6c8a2521..961739d5 100644 --- a/packages/gotrue/CHANGELOG.md +++ b/packages/gotrue/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.7.0 + + - **FEAT**(goture): Allow OAuthProvider.kakao for signInWithIdToken ([#922](https://github.com/supabase/supabase-flutter/issues/922)). ([e21db454](https://github.com/supabase/supabase-flutter/commit/e21db454003bbd960af634a01b9642c46284715e)) + ## 2.6.1 - **FIX**: Add newEmail to admin generateLink method ([#904](https://github.com/supabase/supabase-flutter/issues/904)). ([5697e206](https://github.com/supabase/supabase-flutter/commit/5697e2060de1596626026a0f9ffd846435a6967a)) diff --git a/packages/gotrue/lib/src/version.dart b/packages/gotrue/lib/src/version.dart index c70846d2..71c30ec0 100644 --- a/packages/gotrue/lib/src/version.dart +++ b/packages/gotrue/lib/src/version.dart @@ -1 +1 @@ -const version = '2.6.1'; +const version = '2.7.0'; diff --git a/packages/gotrue/pubspec.yaml b/packages/gotrue/pubspec.yaml index f059f39f..21a26d67 100644 --- a/packages/gotrue/pubspec.yaml +++ b/packages/gotrue/pubspec.yaml @@ -1,6 +1,6 @@ name: gotrue description: A dart client library for the GoTrue API. -version: 2.6.1 +version: 2.7.0 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/gotrue' documentation: 'https://supabase.com/docs/reference/dart/auth-signup' diff --git a/packages/postgrest/CHANGELOG.md b/packages/postgrest/CHANGELOG.md index c36c7790..0b37b1ba 100644 --- a/packages/postgrest/CHANGELOG.md +++ b/packages/postgrest/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.1.2 + + - **FIX**(postgrest): Update parameter type of `isFilter()` to only allow boolean or null ([#920](https://github.com/supabase/supabase-flutter/issues/920)). ([0a3b73e0](https://github.com/supabase/supabase-flutter/commit/0a3b73e02f90ad8d05cf96bf91336a951982b800)) + - **FIX**(postgrest): Update parameter type of `match()` filter so that null values cannot be passed. ([#919](https://github.com/supabase/supabase-flutter/issues/919)). ([0902124f](https://github.com/supabase/supabase-flutter/commit/0902124f7fa4b0fab07cc4b43a895914514fd04a)) + ## 2.1.1 - **DOCS**(postgrest): Expand documentation for `contains` and `containedBy` methods ([#824](https://github.com/supabase/supabase-flutter/issues/824)). ([e241e766](https://github.com/supabase/supabase-flutter/commit/e241e7668e4e0bafd6612011fef730f9b99874bc)) diff --git a/packages/postgrest/lib/src/version.dart b/packages/postgrest/lib/src/version.dart index ca29efc2..27bf5a7a 100644 --- a/packages/postgrest/lib/src/version.dart +++ b/packages/postgrest/lib/src/version.dart @@ -1 +1 @@ -const version = '2.1.1'; +const version = '2.1.2'; diff --git a/packages/postgrest/pubspec.yaml b/packages/postgrest/pubspec.yaml index 43362adb..81408453 100644 --- a/packages/postgrest/pubspec.yaml +++ b/packages/postgrest/pubspec.yaml @@ -1,6 +1,6 @@ name: postgrest description: PostgREST client for Dart. This library provides an ORM interface to PostgREST. -version: 2.1.1 +version: 2.1.2 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/postgrest' documentation: 'https://supabase.com/docs/reference/dart/select' diff --git a/packages/supabase/CHANGELOG.md b/packages/supabase/CHANGELOG.md index b93b1e18..6970ff24 100644 --- a/packages/supabase/CHANGELOG.md +++ b/packages/supabase/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.1.3 + + - Update a dependency to the latest release. + ## 2.1.2 - Update a dependency to the latest release. diff --git a/packages/supabase/lib/src/version.dart b/packages/supabase/lib/src/version.dart index 27bf5a7a..014468c9 100644 --- a/packages/supabase/lib/src/version.dart +++ b/packages/supabase/lib/src/version.dart @@ -1 +1 @@ -const version = '2.1.2'; +const version = '2.1.3'; diff --git a/packages/supabase/pubspec.yaml b/packages/supabase/pubspec.yaml index f2e239ab..5a19ebd2 100644 --- a/packages/supabase/pubspec.yaml +++ b/packages/supabase/pubspec.yaml @@ -1,6 +1,6 @@ name: supabase description: A dart client for Supabase. This client makes it simple for developers to build secure and scalable products. -version: 2.1.2 +version: 2.1.3 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/supabase' documentation: 'https://supabase.com/docs/reference/dart/introduction' @@ -9,10 +9,10 @@ environment: sdk: '>=3.0.0 <4.0.0' dependencies: - functions_client: ^2.1.0 - gotrue: ^2.6.1 + functions_client: ^2.2.0 + gotrue: ^2.7.0 http: '>=0.13.5 <2.0.0' - postgrest: ^2.1.1 + postgrest: ^2.1.2 realtime_client: ^2.0.4 storage_client: ^2.0.1 rxdart: ^0.27.5 diff --git a/packages/supabase_flutter/CHANGELOG.md b/packages/supabase_flutter/CHANGELOG.md index 759ad3eb..5992d9b6 100644 --- a/packages/supabase_flutter/CHANGELOG.md +++ b/packages/supabase_flutter/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.5.3 + + - **FIX**: Keep compatible with app_links 6.0.0 and 5.0.0 ([#918](https://github.com/supabase/supabase-flutter/issues/918)). ([04a59dca](https://github.com/supabase/supabase-flutter/commit/04a59dcae738cf41e3a7daa293751db444f80f4c)) + ## 2.5.2 - **FIX**: Update app_links dependency to accept v5.0.0 ([#908](https://github.com/supabase/supabase-flutter/issues/908)). ([7e9b9054](https://github.com/supabase/supabase-flutter/commit/7e9b905475c58d77078655e7cd944236f00a07a9)) diff --git a/packages/supabase_flutter/lib/src/version.dart b/packages/supabase_flutter/lib/src/version.dart index 70b4b7a2..62fe31cb 100644 --- a/packages/supabase_flutter/lib/src/version.dart +++ b/packages/supabase_flutter/lib/src/version.dart @@ -1 +1 @@ -const version = '2.5.2'; +const version = '2.5.3'; diff --git a/packages/supabase_flutter/pubspec.yaml b/packages/supabase_flutter/pubspec.yaml index a5a983fb..0b1e302a 100644 --- a/packages/supabase_flutter/pubspec.yaml +++ b/packages/supabase_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: supabase_flutter description: Flutter integration for Supabase. This package makes it simple for developers to build secure and scalable products. -version: 2.5.2 +version: 2.5.3 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/supabase_flutter' documentation: 'https://supabase.com/docs/reference/dart/introduction' @@ -17,7 +17,7 @@ dependencies: sdk: flutter http: '>=0.13.4 <2.0.0' meta: ^1.7.0 - supabase: ^2.1.2 + supabase: ^2.1.3 url_launcher: ^6.1.2 path_provider: ^2.0.0 shared_preferences: ^2.0.0