From e3b5a220616b7bccf8801b7a53c81b36eb3672e9 Mon Sep 17 00:00:00 2001 From: dshukertjr Date: Wed, 31 Jan 2024 13:35:01 +0900 Subject: [PATCH] chore(release): publish packages - gotrue@2.5.0 - storage_client@2.0.1 - supabase_flutter@2.3.2 - supabase@2.0.7 --- CHANGELOG.md | 38 +++++++++++++++++++ packages/gotrue/CHANGELOG.md | 4 ++ packages/gotrue/lib/src/version.dart | 2 +- packages/gotrue/pubspec.yaml | 2 +- packages/storage_client/CHANGELOG.md | 4 ++ packages/storage_client/lib/src/version.dart | 2 +- packages/storage_client/pubspec.yaml | 2 +- packages/supabase/CHANGELOG.md | 4 ++ packages/supabase/lib/src/version.dart | 2 +- packages/supabase/pubspec.yaml | 6 +-- packages/supabase_flutter/CHANGELOG.md | 4 ++ .../supabase_flutter/lib/src/version.dart | 2 +- packages/supabase_flutter/pubspec.yaml | 4 +- 13 files changed, 65 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4201d82..8615d9f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,44 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2024-01-31 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`gotrue` - `v2.5.0`](#gotrue---v250) + - [`storage_client` - `v2.0.1`](#storage_client---v201) + - [`supabase_flutter` - `v2.3.2`](#supabase_flutter---v232) + - [`supabase` - `v2.0.7`](#supabase---v207) + +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.0.7` + +--- + +#### `gotrue` - `v2.5.0` + + - **FEAT**: Add token hash to verifyOtp ([#813](https://github.com/supabase/supabase-flutter/issues/813)). ([a789d795](https://github.com/supabase/supabase-flutter/commit/a789d7954f8a66e0e8eaa271b82cd2daf274e6de)) + +#### `storage_client` - `v2.0.1` + + - **FIX**: Use per client fetch instance ([#818](https://github.com/supabase/supabase-flutter/issues/818)). ([0f3182c4](https://github.com/supabase/supabase-flutter/commit/0f3182c4f34ca5096b6dd747edf6ade0d1ec1c9e)) + +#### `supabase_flutter` - `v2.3.2` + + - **FIX**: Remove platform check to start deep link observer on every platform including Linux ([#815](https://github.com/supabase/supabase-flutter/issues/815)). ([9b05eeac](https://github.com/supabase/supabase-flutter/commit/9b05eeac559a1f2da6289e1d70b3fa89e262fa3c)) + + ## 2024-01-23 ### Changes diff --git a/packages/gotrue/CHANGELOG.md b/packages/gotrue/CHANGELOG.md index 09f0b00b..a700a080 100644 --- a/packages/gotrue/CHANGELOG.md +++ b/packages/gotrue/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.5.0 + + - **FEAT**: Add token hash to verifyOtp ([#813](https://github.com/supabase/supabase-flutter/issues/813)). ([a789d795](https://github.com/supabase/supabase-flutter/commit/a789d7954f8a66e0e8eaa271b82cd2daf274e6de)) + ## 2.4.1 - **FIX**(gotrue): Set _currentUser when setting initial session ([#806](https://github.com/supabase/supabase-flutter/issues/806)). ([042f3c6d](https://github.com/supabase/supabase-flutter/commit/042f3c6dde7db6f479088ad788a4bbcbba640808)) diff --git a/packages/gotrue/lib/src/version.dart b/packages/gotrue/lib/src/version.dart index b6a2119a..726228b1 100644 --- a/packages/gotrue/lib/src/version.dart +++ b/packages/gotrue/lib/src/version.dart @@ -1 +1 @@ -const version = '2.4.1'; +const version = '2.5.0'; diff --git a/packages/gotrue/pubspec.yaml b/packages/gotrue/pubspec.yaml index 63e8c795..b22e89cf 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.4.1 +version: 2.5.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/storage_client/CHANGELOG.md b/packages/storage_client/CHANGELOG.md index 01587401..43ba97e5 100644 --- a/packages/storage_client/CHANGELOG.md +++ b/packages/storage_client/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.1 + + - **FIX**: Use per client fetch instance ([#818](https://github.com/supabase/supabase-flutter/issues/818)). ([0f3182c4](https://github.com/supabase/supabase-flutter/commit/0f3182c4f34ca5096b6dd747edf6ade0d1ec1c9e)) + ## 2.0.0 - Graduate package to a stable release. See pre-releases prior to this version for changelog entries. diff --git a/packages/storage_client/lib/src/version.dart b/packages/storage_client/lib/src/version.dart index 06bbd557..47734ae9 100644 --- a/packages/storage_client/lib/src/version.dart +++ b/packages/storage_client/lib/src/version.dart @@ -1 +1 @@ -const version = '2.0.0'; +const version = '2.0.1'; diff --git a/packages/storage_client/pubspec.yaml b/packages/storage_client/pubspec.yaml index aac86118..fa73bdcc 100644 --- a/packages/storage_client/pubspec.yaml +++ b/packages/storage_client/pubspec.yaml @@ -1,6 +1,6 @@ name: storage_client description: Dart client library to interact with Supabase Storage. Supabase Storage provides an interface for managing Files stored in S3, using Postgres to manage permissions. -version: 2.0.0 +version: 2.0.1 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/storage_client' documentation: 'https://supabase.com/docs/reference/dart/storage-createbucket' diff --git a/packages/supabase/CHANGELOG.md b/packages/supabase/CHANGELOG.md index 78802efd..3b428def 100644 --- a/packages/supabase/CHANGELOG.md +++ b/packages/supabase/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.7 + + - Update a dependency to the latest release. + ## 2.0.6 - Update a dependency to the latest release. diff --git a/packages/supabase/lib/src/version.dart b/packages/supabase/lib/src/version.dart index 383acb75..2fdcccab 100644 --- a/packages/supabase/lib/src/version.dart +++ b/packages/supabase/lib/src/version.dart @@ -1 +1 @@ -const version = '2.0.6'; +const version = '2.0.7'; diff --git a/packages/supabase/pubspec.yaml b/packages/supabase/pubspec.yaml index b7aaf397..a2fcbe33 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.0.6 +version: 2.0.7 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/supabase' documentation: 'https://supabase.com/docs/reference/dart/introduction' @@ -10,11 +10,11 @@ environment: dependencies: functions_client: ^2.0.0 - gotrue: ^2.4.1 + gotrue: ^2.5.0 http: '>=0.13.5 <2.0.0' postgrest: ^2.1.0 realtime_client: ^2.0.0 - storage_client: ^2.0.0 + storage_client: ^2.0.1 rxdart: ^0.27.5 yet_another_json_isolate: ^2.0.0 diff --git a/packages/supabase_flutter/CHANGELOG.md b/packages/supabase_flutter/CHANGELOG.md index 4bea2498..8cde7597 100644 --- a/packages/supabase_flutter/CHANGELOG.md +++ b/packages/supabase_flutter/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.3.2 + + - **FIX**: Remove platform check to start deep link observer on every platform including Linux ([#815](https://github.com/supabase/supabase-flutter/issues/815)). ([9b05eeac](https://github.com/supabase/supabase-flutter/commit/9b05eeac559a1f2da6289e1d70b3fa89e262fa3c)) + ## 2.3.1 - Update a dependency to the latest release. diff --git a/packages/supabase_flutter/lib/src/version.dart b/packages/supabase_flutter/lib/src/version.dart index da3b31f5..c380776c 100644 --- a/packages/supabase_flutter/lib/src/version.dart +++ b/packages/supabase_flutter/lib/src/version.dart @@ -1 +1 @@ -const version = '2.3.1'; +const version = '2.3.2'; diff --git a/packages/supabase_flutter/pubspec.yaml b/packages/supabase_flutter/pubspec.yaml index 4f89a7c6..d53360f8 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.3.1 +version: 2.3.2 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/supabase_flutter' documentation: 'https://supabase.com/docs/reference/dart/introduction' @@ -19,7 +19,7 @@ dependencies: hive_flutter: ^1.1.0 http: '>=0.13.4 <2.0.0' meta: ^1.7.0 - supabase: ^2.0.6 + supabase: ^2.0.7 url_launcher: ^6.1.2 path_provider: ^2.0.0 shared_preferences: ^2.0.0