Skip to content

Commit 821cad9

Browse files
authored
chore(release): Publish packages supabase_flutter@2.5.10 (#988)
chore(release): publish packages - functions_client@2.3.0 - supabase@2.2.6 - supabase_flutter@2.5.10
1 parent e072ff7 commit 821cad9

File tree

10 files changed

+52
-8
lines changed

10 files changed

+52
-8
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
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+
## 2024-07-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+
- [`functions_client` - `v2.3.0`](#functions_client---v230)
19+
- [`supabase` - `v2.2.6`](#supabase---v226)
20+
- [`supabase_flutter` - `v2.5.10`](#supabase_flutter---v2510)
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` - `v2.2.6`
27+
- `supabase_flutter` - `v2.5.10`
28+
29+
---
30+
31+
#### `functions_client` - `v2.3.0`
32+
33+
- **FIX**(functions_client): Add `toString` to `FunctionException` ([#985](https://github.com/supabase/supabase-flutter/issues/985)). ([e072ff74](https://github.com/supabase/supabase-flutter/commit/e072ff74c71858ea3c9ede3361d2cdf710b22388))
34+
- **FEAT**: Support MultipartRequest in functions invoke ([#977](https://github.com/supabase/supabase-flutter/issues/977)). ([09698edf](https://github.com/supabase/supabase-flutter/commit/09698edfba348794aee52e28d55903941cc49bcf))
35+
36+
637
## 2024-07-21
738

839
### Changes

packages/functions_client/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.3.0
2+
3+
- **FIX**(functions_client): Add `toString` to `FunctionException` ([#985](https://github.com/supabase/supabase-flutter/issues/985)). ([e072ff74](https://github.com/supabase/supabase-flutter/commit/e072ff74c71858ea3c9ede3361d2cdf710b22388))
4+
- **FEAT**: Support MultipartRequest in functions invoke ([#977](https://github.com/supabase/supabase-flutter/issues/977)). ([09698edf](https://github.com/supabase/supabase-flutter/commit/09698edfba348794aee52e28d55903941cc49bcf))
5+
16
## 2.2.0
27

38
- **FEAT**(functions): Invoke function with custom query params ([#926](https://github.com/supabase/supabase-flutter/issues/926)). ([7ded898d](https://github.com/supabase/supabase-flutter/commit/7ded898dee07004cbb20e4d7c209f94a507fad3b))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.2.0';
1+
const version = '2.3.0';

packages/functions_client/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: functions_client
22
description: A dart client library for the Supabase functions.
3-
version: 2.2.0
3+
version: 2.3.0
44
homepage: 'https://supabase.com'
55
repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/functions_client'
66
documentation: 'https://supabase.com/docs/reference/dart/functions-invoke'

packages/supabase/CHANGELOG.md

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

37
- **FIX**: Add error messages for when the session or expiresAt was missing while making API requests. ([#976](https://github.com/supabase/supabase-flutter/issues/976)). ([a25993cb](https://github.com/supabase/supabase-flutter/commit/a25993cbe5270c862023c23741fa0be048bb4731))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.2.5';
1+
const version = '2.2.6';

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.2.5
3+
version: 2.2.6
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'
@@ -9,7 +9,7 @@ environment:
99
sdk: '>=3.0.0 <4.0.0'
1010

1111
dependencies:
12-
functions_client: 2.2.0
12+
functions_client: 2.3.0
1313
gotrue: 2.8.3
1414
http: '>=0.13.5 <2.0.0'
1515
postgrest: 2.1.2

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.5.10
2+
3+
- Update a dependency to the latest release.
4+
15
## 2.5.9
26

37
- **FIX**(gotrue): Ensure a single `initialSession` is emitted. ([#975](https://github.com/supabase/supabase-flutter/issues/975)). ([6323f9fd](https://github.com/supabase/supabase-flutter/commit/6323f9fd40564b36027a1fc48004822baa063e19))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.5.9';
1+
const version = '2.5.10';

packages/supabase_flutter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: supabase_flutter
22
description: Flutter integration for Supabase. This package makes it simple for developers to build secure and scalable products.
3-
version: 2.5.9
3+
version: 2.5.10
44
homepage: 'https://supabase.com'
55
repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/supabase_flutter'
66
documentation: 'https://supabase.com/docs/reference/dart/introduction'
@@ -17,7 +17,7 @@ dependencies:
1717
sdk: flutter
1818
http: '>=0.13.4 <2.0.0'
1919
meta: ^1.7.0
20-
supabase: 2.2.5
20+
supabase: 2.2.6
2121
url_launcher: ^6.1.2
2222
path_provider: ^2.0.0
2323
shared_preferences: ^2.0.0

0 commit comments

Comments
 (0)