Skip to content

Commit 1ea9e70

Browse files
committed
chore(release): publish packages
- functions_client@2.1.0 - gotrue@2.6.1 - supabase_flutter@2.5.2 - supabase@2.1.2
1 parent d4f6e42 commit 1ea9e70

File tree

13 files changed

+67
-11
lines changed

13 files changed

+67
-11
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,45 @@
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-04-29
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.1.0`](#functions_client---v210)
19+
- [`gotrue` - `v2.6.1`](#gotrue---v261)
20+
- [`supabase_flutter` - `v2.5.2`](#supabase_flutter---v252)
21+
- [`supabase` - `v2.1.2`](#supabase---v212)
22+
23+
Packages with dependency updates only:
24+
25+
> 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.
26+
27+
- `supabase` - `v2.1.2`
28+
29+
---
30+
31+
#### `functions_client` - `v2.1.0`
32+
33+
- **FEAT**(functions_client): Add SSE support to invoke method ([#905](https://github.com/supabase/supabase-flutter/issues/905)). ([2e052440](https://github.com/supabase/supabase-flutter/commit/2e052440e3889e52cb97cb44a70048713e0b583e))
34+
35+
#### `gotrue` - `v2.6.1`
36+
37+
- **FIX**: Add newEmail to admin generateLink method ([#904](https://github.com/supabase/supabase-flutter/issues/904)). ([5697e206](https://github.com/supabase/supabase-flutter/commit/5697e2060de1596626026a0f9ffd846435a6967a))
38+
- **FIX**: Weak password throws `AuthWeakPasswordException`. ([#897](https://github.com/supabase/supabase-flutter/issues/897)). ([4f5b853c](https://github.com/supabase/supabase-flutter/commit/4f5b853cfb72f92bdceb8446397057ec434f1da3))
39+
40+
#### `supabase_flutter` - `v2.5.2`
41+
42+
- **FIX**: Update app_links dependency to accept v5.0.0 ([#908](https://github.com/supabase/supabase-flutter/issues/908)). ([7e9b9054](https://github.com/supabase/supabase-flutter/commit/7e9b905475c58d77078655e7cd944236f00a07a9))
43+
44+
645
## 2024-04-15
746

847
### Changes

packages/functions_client/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.1.0
2+
3+
- **FEAT**(functions_client): Add SSE support to invoke method ([#905](https://github.com/supabase/supabase-flutter/issues/905)). ([2e052440](https://github.com/supabase/supabase-flutter/commit/2e052440e3889e52cb97cb44a70048713e0b583e))
4+
15
## 2.0.0
26

37
- Graduate package to a stable release. See pre-releases prior to this version for changelog entries.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.0.0';
1+
const version = '2.1.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.0.0
3+
version: 2.1.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/gotrue/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.6.1
2+
3+
- **FIX**: Add newEmail to admin generateLink method ([#904](https://github.com/supabase/supabase-flutter/issues/904)). ([5697e206](https://github.com/supabase/supabase-flutter/commit/5697e2060de1596626026a0f9ffd846435a6967a))
4+
- **FIX**: Weak password throws `AuthWeakPasswordException`. ([#897](https://github.com/supabase/supabase-flutter/issues/897)). ([4f5b853c](https://github.com/supabase/supabase-flutter/commit/4f5b853cfb72f92bdceb8446397057ec434f1da3))
5+
16
## 2.6.0
27

38
- **FIX**: Typos in gotrue_client.dart ([#882](https://github.com/supabase/supabase-flutter/issues/882)). ([54a0b979](https://github.com/supabase/supabase-flutter/commit/54a0b979f61a0a161b805c23329964ca626000ce))

packages/gotrue/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '2.6.0';
1+
const version = '2.6.1';

packages/gotrue/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: gotrue
22
description: A dart client library for the GoTrue API.
3-
version: 2.6.0
3+
version: 2.6.1
44
homepage: 'https://supabase.com'
55
repository: 'https://github.com/supabase/supabase-flutter/tree/main/packages/gotrue'
66
documentation: 'https://supabase.com/docs/reference/dart/auth-signup'

packages/supabase/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.1.2
2+
3+
- Update a dependency to the latest release.
4+
15
## 2.1.1
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.1.1';
1+
const version = '2.1.2';

packages/supabase/pubspec.yaml

Lines changed: 3 additions & 3 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.1.1
3+
version: 2.1.2
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,8 +9,8 @@ environment:
99
sdk: '>=3.0.0 <4.0.0'
1010

1111
dependencies:
12-
functions_client: ^2.0.0
13-
gotrue: ^2.6.0
12+
functions_client: ^2.1.0
13+
gotrue: ^2.6.1
1414
http: '>=0.13.5 <2.0.0'
1515
postgrest: ^2.1.1
1616
realtime_client: ^2.0.4

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.2
2+
3+
- **FIX**: Update app_links dependency to accept v5.0.0 ([#908](https://github.com/supabase/supabase-flutter/issues/908)). ([7e9b9054](https://github.com/supabase/supabase-flutter/commit/7e9b905475c58d77078655e7cd944236f00a07a9))
4+
15
## 2.5.1
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.5.1';
1+
const version = '2.5.2';

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.1
3+
version: 2.5.2
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.1.1
20+
supabase: ^2.1.2
2121
url_launcher: ^6.1.2
2222
path_provider: ^2.0.0
2323
shared_preferences: ^2.0.0

0 commit comments

Comments
 (0)