From cd614c1bfb74cef247ca32713f7a87995799f2a7 Mon Sep 17 00:00:00 2001 From: Tyler <18113850+dshukertjr@users.noreply.github.com> Date: Wed, 13 Sep 2023 09:26:46 +0900 Subject: [PATCH] chore(release): publish packages (#622) - realtime_client@1.2.2 - supabase@1.11.4 - supabase_flutter@1.10.17 --- CHANGELOG.md | 30 +++++++++++++++++++ packages/realtime_client/CHANGELOG.md | 4 +++ packages/realtime_client/lib/src/version.dart | 2 +- packages/realtime_client/pubspec.yaml | 2 +- packages/supabase/CHANGELOG.md | 4 +++ packages/supabase/lib/src/version.dart | 2 +- packages/supabase/pubspec.yaml | 4 +-- packages/supabase_flutter/CHANGELOG.md | 4 +++ .../supabase_flutter/lib/src/version.dart | 2 +- packages/supabase_flutter/pubspec.yaml | 4 +-- 10 files changed, 50 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 725b6825..76e746e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,36 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2023-09-10 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`realtime_client` - `v1.2.2`](#realtime_client---v122) + - [`supabase` - `v1.11.4`](#supabase---v1114) + - [`supabase_flutter` - `v1.10.17`](#supabase_flutter---v11017) + +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` - `v1.11.4` + - `supabase_flutter` - `v1.10.17` + +--- + +#### `realtime_client` - `v1.2.2` + + - **FIX**(realtime_client): No exception is thrown when connection is closed. ([#620](https://github.com/supabase/supabase-flutter/issues/620)). ([64b8b968](https://github.com/supabase/supabase-flutter/commit/64b8b9689d089c056e1f1665df749aa21b893aad)) + + ## 2023-09-05 ### Changes diff --git a/packages/realtime_client/CHANGELOG.md b/packages/realtime_client/CHANGELOG.md index d80d40ed..ac5259f1 100644 --- a/packages/realtime_client/CHANGELOG.md +++ b/packages/realtime_client/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.2.2 + + - **FIX**(realtime_client): No exception is thrown when connection is closed. ([#620](https://github.com/supabase/supabase-flutter/issues/620)). ([64b8b968](https://github.com/supabase/supabase-flutter/commit/64b8b9689d089c056e1f1665df749aa21b893aad)) + ## 1.2.1 - **FIX**(realtime_client,supabase): pass apikey as the initial access token for realtime client ([#596](https://github.com/supabase/supabase-flutter/issues/596)). ([af8e368b](https://github.com/supabase/supabase-flutter/commit/af8e368bdb0b2a07f9cf9806c854456f8e9d198e)) diff --git a/packages/realtime_client/lib/src/version.dart b/packages/realtime_client/lib/src/version.dart index 31d8ffd9..c76777b2 100644 --- a/packages/realtime_client/lib/src/version.dart +++ b/packages/realtime_client/lib/src/version.dart @@ -1 +1 @@ -const version = '1.2.1'; +const version = '1.2.2'; diff --git a/packages/realtime_client/pubspec.yaml b/packages/realtime_client/pubspec.yaml index 88bb900e..59c20172 100644 --- a/packages/realtime_client/pubspec.yaml +++ b/packages/realtime_client/pubspec.yaml @@ -1,6 +1,6 @@ name: realtime_client description: Listens to changes in a PostgreSQL Database and via websockets. This is for usage with Supabase Realtime server. -version: 1.2.1 +version: 1.2.2 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/realtime_client' documentation: 'https://supabase.com/docs/reference/dart/subscribe' diff --git a/packages/supabase/CHANGELOG.md b/packages/supabase/CHANGELOG.md index 66216d88..f4bc8ecd 100644 --- a/packages/supabase/CHANGELOG.md +++ b/packages/supabase/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.11.4 + + - Update a dependency to the latest release. + ## 1.11.3 - Update a dependency to the latest release. diff --git a/packages/supabase/lib/src/version.dart b/packages/supabase/lib/src/version.dart index a31b311f..d2dcd070 100644 --- a/packages/supabase/lib/src/version.dart +++ b/packages/supabase/lib/src/version.dart @@ -1 +1 @@ -const version = '1.11.3'; +const version = '1.11.4'; diff --git a/packages/supabase/pubspec.yaml b/packages/supabase/pubspec.yaml index a8770b04..21cead1c 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: 1.11.3 +version: 1.11.4 homepage: 'https://supabase.com' repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/supabase' documentation: 'https://supabase.com/docs/reference/dart/introduction' @@ -13,7 +13,7 @@ dependencies: gotrue: ^1.12.1 http: '>=0.13.5 <2.0.0' postgrest: ^1.5.0 - realtime_client: ^1.2.1 + realtime_client: ^1.2.2 storage_client: ^1.5.2 rxdart: ^0.27.5 yet_another_json_isolate: ^1.1.1 diff --git a/packages/supabase_flutter/CHANGELOG.md b/packages/supabase_flutter/CHANGELOG.md index 5a51524b..da5fdd8f 100644 --- a/packages/supabase_flutter/CHANGELOG.md +++ b/packages/supabase_flutter/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.10.17 + + - Update a dependency to the latest release. + ## 1.10.16 - 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 5e70fd02..99eb9fd7 100644 --- a/packages/supabase_flutter/lib/src/version.dart +++ b/packages/supabase_flutter/lib/src/version.dart @@ -1 +1 @@ -const version = '1.10.16'; +const version = '1.10.17'; diff --git a/packages/supabase_flutter/pubspec.yaml b/packages/supabase_flutter/pubspec.yaml index 7e935794..dae677e1 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: 1.10.16 +version: 1.10.17 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: http: '>=0.13.4 <2.0.0' meta: ^1.7.0 sign_in_with_apple: '>=4.3.0 <6.0.0' - supabase: ^1.11.3 + supabase: ^1.11.4 url_launcher: ^6.1.2 webview_flutter: ^4.0.0 path_provider: ^2.0.0