Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,37 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2025-09-15

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`gotrue` - `v2.15.0`](#gotrue---v2150)
- [`supabase` - `v2.9.1`](#supabase---v291)
- [`supabase_flutter` - `v2.10.1`](#supabase_flutter---v2101)

---

#### `gotrue` - `v2.15.0`

- **FEAT**(gotrue): Implement `linkIdentityWithIdToken` method ([#1206](https://github.com/supabase/supabase-flutter/issues/1206)). ([53a2427a](https://github.com/supabase/supabase-flutter/commit/53a2427ac5204e440935a45d645a485db84fc437))

#### `supabase` - `v2.9.1`

- **FIX**: Prevent web incompatibility due to import of dart:io ([#1220](https://github.com/supabase/supabase-flutter/issues/1220)). ([3c8d4db6](https://github.com/supabase/supabase-flutter/commit/3c8d4db62aec26835e5d8ff387c4b32c91ce8676))

#### `supabase_flutter` - `v2.10.1`

- **FIX**: Prevent web incompatibility due to import of dart:io ([#1220](https://github.com/supabase/supabase-flutter/issues/1220)). ([3c8d4db6](https://github.com/supabase/supabase-flutter/commit/3c8d4db62aec26835e5d8ff387c4b32c91ce8676))


## 2025-08-26

### Changes
Expand Down
4 changes: 4 additions & 0 deletions packages/gotrue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.15.0

- **FEAT**(gotrue): Implement `linkIdentityWithIdToken` method ([#1206](https://github.com/supabase/supabase-flutter/issues/1206)). ([53a2427a](https://github.com/supabase/supabase-flutter/commit/53a2427ac5204e440935a45d645a485db84fc437))

## 2.14.0

- **REFACTOR**(gotrue): Remove unused _currentUser field and update currentUser documentation. ([#1168](https://github.com/supabase/supabase-flutter/issues/1168)). ([88ed5d88](https://github.com/supabase/supabase-flutter/commit/88ed5d88508842465a7085c95c93e5059297e9c1))
Expand Down
2 changes: 1 addition & 1 deletion packages/gotrue/lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const version = '2.14.0';
const version = '2.15.0';
2 changes: 1 addition & 1 deletion packages/gotrue/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gotrue
description: A dart client library for the GoTrue API.
version: 2.14.0
version: 2.15.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'
Expand Down
4 changes: 4 additions & 0 deletions packages/supabase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.9.1

- **FIX**: Prevent web incompatibility due to import of dart:io ([#1220](https://github.com/supabase/supabase-flutter/issues/1220)). ([3c8d4db6](https://github.com/supabase/supabase-flutter/commit/3c8d4db62aec26835e5d8ff387c4b32c91ce8676))

## 2.9.0

- **FIX**: Uri encode platform information ([#1196](https://github.com/supabase/supabase-flutter/issues/1196)). ([7fe6b301](https://github.com/supabase/supabase-flutter/commit/7fe6b301414c1f4258f45bf1bd6d9f65bbe465e2))
Expand Down
2 changes: 1 addition & 1 deletion packages/supabase/lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const version = '2.9.0';
const version = '2.9.1';
4 changes: 2 additions & 2 deletions packages/supabase/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.9.0
version: 2.9.1
homepage: 'https://supabase.com'
repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/supabase'
documentation: 'https://supabase.com/docs/reference/dart/introduction'
Expand All @@ -10,7 +10,7 @@ environment:

dependencies:
functions_client: 2.4.4
gotrue: 2.14.0
gotrue: 2.15.0
http: '>=0.13.5 <2.0.0'
postgrest: 2.4.2
realtime_client: 2.5.2
Expand Down
4 changes: 4 additions & 0 deletions packages/supabase_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.10.1

- **FIX**: Prevent web incompatibility due to import of dart:io ([#1220](https://github.com/supabase/supabase-flutter/issues/1220)). ([3c8d4db6](https://github.com/supabase/supabase-flutter/commit/3c8d4db62aec26835e5d8ff387c4b32c91ce8676))

## 2.10.0

- **FIX**(supabase_flutter): Safely check if conn is not null to avoid null check operator ([#1178](https://github.com/supabase/supabase-flutter/issues/1178)). ([6a5be512](https://github.com/supabase/supabase-flutter/commit/6a5be5124026d27d48675749d2c5759d8c61a9b3))
Expand Down
2 changes: 1 addition & 1 deletion packages/supabase_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ environment:
dependencies:
flutter:
sdk: flutter
supabase_flutter: ^2.10.0
supabase_flutter: ^2.10.1

dev_dependencies:
flutter_test:
Expand Down
2 changes: 1 addition & 1 deletion packages/supabase_flutter/lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const version = '2.10.0';
const version = '2.10.1';
4 changes: 2 additions & 2 deletions packages/supabase_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.10.0
version: 2.10.1
homepage: 'https://supabase.com'
repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/supabase_flutter'
documentation: 'https://supabase.com/docs/reference/dart/introduction'
Expand All @@ -17,7 +17,7 @@ dependencies:
sdk: flutter
http: '>=0.13.4 <2.0.0'
meta: ^1.7.0
supabase: 2.9.0
supabase: 2.9.1
url_launcher: ^6.1.2
path_provider: ^2.0.0
shared_preferences: ^2.0.0
Expand Down
Loading