Skip to content

Commit 4cf97d8

Browse files
authored
chore(release): publish packages (#1330)
- storage_client@2.5.1 - supabase@2.10.4 - supabase_flutter@2.12.2
1 parent a664082 commit 4cf97d8

11 files changed

Lines changed: 54 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,39 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2026-03-25
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`storage_client` - `v2.5.1`](#storage_client---v251)
19+
- [`supabase` - `v2.10.4`](#supabase---v2104)
20+
- [`supabase_flutter` - `v2.12.2`](#supabase_flutter---v2122)
21+
22+
Packages with dependency updates only:
23+
24+
> 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.
25+
26+
- `supabase_flutter` - `v2.12.2`
27+
28+
---
29+
30+
#### `storage_client` - `v2.5.1`
31+
32+
- **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))
33+
34+
#### `supabase` - `v2.10.4`
35+
36+
- **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))
37+
38+
639
## 2026-03-24
740

841
### Changes

packages/storage_client/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.5.1
2+
3+
- **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))
4+
15
## 2.5.0
26

37
- **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))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.5.0';
1+
const version = '2.5.1';

packages/storage_client/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: storage_client
22
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.
3-
version: 2.5.0
3+
version: 2.5.1
44
homepage: 'https://supabase.com'
55
repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/storage_client'
66
documentation: 'https://supabase.com/docs/reference/dart/storage-createbucket'

packages/supabase/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.10.4
2+
3+
- **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))
4+
15
## 2.10.3
26

37
- Update a dependency to the latest release.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.10.3';
1+
const version = '2.10.4';

packages/supabase/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: supabase
22
description: A dart client for Supabase. This client makes it simple for developers to build secure and scalable products.
3-
version: 2.10.3
3+
version: 2.10.4
44
homepage: 'https://supabase.com'
55
repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/supabase'
66
documentation: 'https://supabase.com/docs/reference/dart/introduction'
@@ -14,7 +14,7 @@ dependencies:
1414
http: '>=0.13.5 <2.0.0'
1515
postgrest: 2.6.0
1616
realtime_client: 2.7.1
17-
storage_client: 2.5.0
17+
storage_client: 2.5.1
1818
rxdart: '>=0.27.5 <0.29.0'
1919
yet_another_json_isolate: 2.1.0
2020
logging: ^1.2.0

packages/supabase_flutter/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.12.2
2+
3+
- Update a dependency to the latest release.
4+
15
## 2.12.1
26

37
- Update a dependency to the latest release.

packages/supabase_flutter/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
supabase_flutter: ^2.12.1
14+
supabase_flutter: ^2.12.2
1515

1616
dev_dependencies:
1717
flutter_test:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.12.1';
1+
const version = '2.12.2';

0 commit comments

Comments
 (0)