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
10 changes: 10 additions & 0 deletions packages/clerk_auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.0.11-beta

* fix: ensure all params are trimmed [#236]
* fix: amend persistor docs [#235]
* fix: allow email address to be edited for verification [#226]
* fix: enable legal consent confirmation [#222]
* fix: resolve issues with the sessionTokenStream [#221]
* fix: support offline better [#212]
* fix: make google authentication work directly with tokens [#207]

## 0.0.10-beta

* fix: added Facebook as strategy [#172]
Expand Down
2 changes: 1 addition & 1 deletion packages/clerk_auth/lib/src/_version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/clerk_auth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: clerk_auth
description: Package that will allow you to authenticate and use Clerk from Dart code.
version: 0.0.10-beta
version: 0.0.11-beta
homepage: https://clerk.com/docs
repository: https://github.com/clerk/clerk-sdk-flutter/tree/main/packages/clerk_auth
issue_tracker: https://github.com/clerk/clerk-sdk-flutter/labels/clerk_auth
topics:
- authentication

environment:
sdk: '>=3.0.0 <4.0.0'
sdk: '>=3.6.2 <4.0.0'

dependencies:
collection: '>=1.17.1 <2.0.0'
Expand Down
4 changes: 4 additions & 0 deletions packages/clerk_backend_api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.11-beta

* chore: align release version with `clerk_flutter` package

## 0.0.10-beta

* chore: align release version with `clerk_flutter` package
Expand Down
4 changes: 2 additions & 2 deletions packages/clerk_backend_api/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
#

name: 'clerk_backend_api'
version: '0.0.10-beta'
version: '0.0.11-beta'
description: 'The Clerk REST Backend API, meant to be accessed by backend servers.'
homepage: 'https://clerk.com/docs'
repository: https://github.com/clerk/clerk-sdk-flutter/tree/main/packages/clerk_backend_api

environment:
sdk: '>=3.0.0 <4.0.0'
sdk: '>=3.6.2 <4.0.0'

dependencies:
collection: '>1.17.0 <2.0.0'
Expand Down
16 changes: 16 additions & 0 deletions packages/clerk_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.0.11-beta

* feat: **BREAKING** Upgrade to Flutter 3.27.4 and Dart 3.6.2 [#242]
* fix: re-enable email link in signIn [#241]
* fix: restrict sign up fields to known entities [#227]
* fix: allow email address to be edited for verification [#226]
* fix: allow landscape logos to look better in components [#225]
* fix: remove branding if required in dashboard [#224]
* fix: allow obscuration on sign in password to be togglable [#223]
* fix: enable legal consent confirmation [#222]
* fix: resolve issues with the sessionTokenStream [#221]
* fix: make ui respond better when wifi is unavailable [#212]
* fix: refactor sign-in panel to keep password and confirmation together [#208]
* fix: make google authentication work directly with tokens [#207]
* fix: minor refactoring to caching [#204]

## 0.0.10-beta

* feat: allow app-defined redirects aka deep-links (with example) [#170]
Expand Down
8 changes: 4 additions & 4 deletions packages/clerk_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ publish_to: 'none'
version: 0.1.0

environment:
sdk: '>=3.2.0 <4.0.0'
flutter: '>=3.10.0'
sdk: '>=3.6.2 <4.0.0'
flutter: '>=3.27.4'

dependencies:
flutter:
sdk: flutter
clerk_flutter: '>=0.0.10-beta'
clerk_auth: '>=0.0.10-beta'
clerk_flutter: '>=0.0.11-beta'
clerk_auth: '>=0.0.11-beta'
app_links: ^3.5.1
url_launcher_ios: 6.2.0
google_sign_in: ^7.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ class ClerkLoadingOverlay {
_displayTimer ??= Timer(
startupDuration,
() {
if (!overlay.isDisplaying(_loadingWidget!)) {
if (!overlay.isDisplaying(_loadingWidget)) {
_hideAfter = DateTime.timestamp().add(minimumOnScreenDuration);
overlay.insert(_loadingWidget!);
overlay.insert(_loadingWidget);
}
},
);
Expand All @@ -60,17 +60,17 @@ class ClerkLoadingOverlay {
_displayTimer?.cancel();
_displayTimer = null;

if (_hideTimer == null && overlay.isDisplaying(_loadingWidget!)) {
if (_hideTimer == null && overlay.isDisplaying(_loadingWidget)) {
final now = DateTime.timestamp();
if (_hideAfter.isBefore(now)) {
overlay.remove(_loadingWidget!);
overlay.remove(_loadingWidget);
} else {
_hideTimer = Timer(
_hideAfter.difference(now),
() {
_hideTimer = null;
if (overlay.mounted) {
overlay.remove(_loadingWidget!);
overlay.remove(_loadingWidget);
}
},
);
Expand Down
8 changes: 4 additions & 4 deletions packages/clerk_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: clerk_flutter
description: Package that will allow you to authenticate and use Clerk from Flutter code.
version: 0.0.10-beta
version: 0.0.11-beta
homepage: https://clerk.com/docs
repository: https://github.com/clerk/clerk-sdk-flutter/tree/main/packages/clerk_flutter
issue_tracker: https://github.com/clerk/clerk-sdk-flutter/labels/clerk_flutter
Expand All @@ -9,15 +9,15 @@ topics:


environment:
sdk: '>=3.0.0 <4.0.0'
flutter: '>=3.10.0'
sdk: '>=3.6.2 <4.0.0'
flutter: '>=3.27.4'

dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
clerk_auth: '>=0.0.10-beta <1.0.0'
clerk_auth: '>=0.0.11-beta <1.0.0'
collection: '>=1.17.1 <2.0.0'
email_validator: ^3.0.0
flutter_svg: ^2.0.10+1
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: clerk_sdk
version: 0.0.9-beta
version: 0.0.11-beta
description: >
Clerk SDK containing all packages that define use of Clerk
services for Dart and Flutter code.
environment:
sdk: '>=3.2.0 <4.0.0'
sdk: '>=3.6.2 <4.0.0'
flutter: '>=3.27.4'

dev_dependencies:
Expand Down