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
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,39 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2026-03-25

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`storage_client` - `v2.5.1`](#storage_client---v251)
- [`supabase` - `v2.10.4`](#supabase---v2104)
- [`supabase_flutter` - `v2.12.2`](#supabase_flutter---v2122)

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_flutter` - `v2.12.2`

---

#### `storage_client` - `v2.5.1`

- **FIX**(storage): make dedicated storage host opt-in via useNewHostname flag ([#1329](https://github.com/supabase/supabase-flutter/issues/1329)). ([a6640823](https://github.com/supabase/supabase-flutter/commit/a66408231ac3451c7b761425d3609908fa9394bd))

#### `supabase` - `v2.10.4`

- **FIX**(storage): make dedicated storage host opt-in via useNewHostname flag ([#1329](https://github.com/supabase/supabase-flutter/issues/1329)). ([a6640823](https://github.com/supabase/supabase-flutter/commit/a66408231ac3451c7b761425d3609908fa9394bd))


## 2026-03-24

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

- **FIX**(storage): make dedicated storage host opt-in via useNewHostname flag ([#1329](https://github.com/supabase/supabase-flutter/issues/1329)). ([a6640823](https://github.com/supabase/supabase-flutter/commit/a66408231ac3451c7b761425d3609908fa9394bd))

## 2.5.0

- **FEAT**(storage): add setHeader method for custom HTTP headers ([#1313](https://github.com/supabase/supabase-flutter/issues/1313)). ([99231538](https://github.com/supabase/supabase-flutter/commit/9923153836438c35e47482658f3156e997c8be1f))
Expand Down
2 changes: 1 addition & 1 deletion packages/storage_client/lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const version = '2.5.0';
const version = '2.5.1';
2 changes: 1 addition & 1 deletion packages/storage_client/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.5.0
version: 2.5.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'
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.10.4

- **FIX**(storage): make dedicated storage host opt-in via useNewHostname flag ([#1329](https://github.com/supabase/supabase-flutter/issues/1329)). ([a6640823](https://github.com/supabase/supabase-flutter/commit/a66408231ac3451c7b761425d3609908fa9394bd))

## 2.10.3

- Update a dependency to the latest release.
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.10.3';
const version = '2.10.4';
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.10.3
version: 2.10.4
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 @@ -14,7 +14,7 @@ dependencies:
http: '>=0.13.5 <2.0.0'
postgrest: 2.6.0
realtime_client: 2.7.1
storage_client: 2.5.0
storage_client: 2.5.1
rxdart: '>=0.27.5 <0.29.0'
yet_another_json_isolate: 2.1.0
logging: ^1.2.0
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.12.2

- Update a dependency to the latest release.

## 2.12.1

- Update a dependency to the latest release.
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.12.1
supabase_flutter: ^2.12.2
Copy link

Copilot AI Mar 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The example app's Dart SDK constraint is still >=2.15.0 <3.0.0, but supabase_flutter 2.12.x requires Dart >=3.3.0 (per the package pubspec). As-is, flutter pub get for the example will fail; update the example's environment: constraints to match the minimum Dart/Flutter versions required by supabase_flutter (or otherwise adjust the dependency strategy).

Copilot uses AI. Check for mistakes.

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.12.1';
const version = '2.12.2';
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.12.1
version: 2.12.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'
Expand All @@ -17,7 +17,7 @@ dependencies:
sdk: flutter
http: '>=0.13.4 <2.0.0'
meta: ^1.7.0
supabase: 2.10.3
supabase: 2.10.4
url_launcher: ^6.1.2
path_provider: ^2.0.0
shared_preferences: ^2.0.0
Expand Down
Loading