Skip to content

Commit 482e982

Browse files
committed
Released passkeys_platform_interface, passkeys_ios, passkeys_android, passkeys and corbado_auth
1 parent 83212f2 commit 482e982

File tree

16 files changed

+36
-16
lines changed

16 files changed

+36
-16
lines changed

packages/corbado_auth/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## 1.2.0
22
* Deprecate the customDomain setting (this does not have to be configured to production projects)
3+
* Bump passkeys and flutter_keychain version
34

45
## 1.1.1
56
* Bump passkeys version

packages/corbado_auth/example/lib/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class MyApp extends ConsumerWidget {
4343
routerDelegate: router.routerDelegate,
4444
routeInformationProvider: router.routeInformationProvider,
4545
theme: ThemeData(
46+
useMaterial3: false,
4647
colorScheme: ColorScheme(
4748
brightness: Brightness.light,
4849
primary: Color(0xFF1953ff),

packages/corbado_auth/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ dependencies:
1212
corbado_frontend_api_client: ^1.0.0
1313
flutter:
1414
sdk: flutter
15-
flutter_keychain: ^2.2.1
15+
flutter_keychain: ^2.4.0
1616
json_annotation: ^4.8.1
1717
jwt_decoder: ^2.0.1
18-
passkeys: ^1.2.1
18+
passkeys: ^1.3.1
1919
rxdart: ^0.27.7
2020

2121
dev_dependencies:

packages/passkeys/passkeys/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.3.1
2+
* Bump versions for passkeys_ios, passkeys_android and passkeys_platform_interface
3+
14
## 1.3.0
25
* Corbado: Deprecate the customDomain setting (this does not have to be configured to production projects)
36
* Corbado: Added new exception type (PasskeyAlreadyExistsException)

packages/passkeys/passkeys/example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '11.0'
2+
platform :ios, '11.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

packages/passkeys/passkeys/example/lib/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class MyApp extends StatelessWidget {
2020
return MaterialApp(
2121
home: HomePage(),
2222
theme: ThemeData(
23+
useMaterial3: false,
2324
colorScheme: const ColorScheme(
2425
brightness: Brightness.light,
2526
primary: Color(0xFF1953ff),

packages/passkeys/passkeys/lib/relying_party_server/corbado/corbado_passkey_backend.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CorbadoPasskeyBackend
1818
CorbadoPasskeyBackend(
1919
this._projectID, {
2020
@Deprecated('customDomain no longer needs to be set') String? customDomain,
21-
}) : _frontendAPI = 'https://$_projectID.frontendapi.corbado.io';
21+
}) : _frontendAPI = 'https://$_projectID.frontendapi.corbado.io';
2222

2323
/// Initializes the client by setting all required headers
2424
Future<void> init() async {

packages/passkeys/passkeys/lib/relying_party_server/corbado/types/exceptions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class CorbadoException implements Exception {
1717
class UserAlreadyExistsException extends CorbadoException {
1818
/// Constructor
1919
UserAlreadyExistsException(String username)
20-
: super('User with name ${username} already exists.');
20+
: super('User with name "$username" already exists.');
2121
}
2222

2323
/// Exception thrown when the user is unknown

packages/passkeys/passkeys/lib/relying_party_server/corbado/types/field.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ enum CorbadoField {
55

66
/// email field
77
email,
8-
98
code;
109

1110
factory CorbadoField.fromString(String v) {

packages/passkeys/passkeys/pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: passkeys
22
description: Flutter plugin enabling simple passkey authentication. Can be either used with a ready-to-use relying party server (Corbado) or with your custom relying party.
33
homepage: https://docs.corbado.com/overview/welcome
44
repository: https://github.com/corbado/flutter-passkeys/tree/main/packages/passkeys/passkeys
5-
version: 1.3.0
5+
version: 1.3.1
66

77
environment:
88
sdk: ">=3.0.0 <4.0.0"
@@ -24,9 +24,9 @@ dependencies:
2424
http: ^1.1.0
2525
json_annotation: ^4.8.1
2626
openapi_generator_annotations: ^4.10.0
27-
passkeys_android: ^1.1.2
28-
passkeys_ios: ^1.1.1
29-
passkeys_platform_interface: ^1.1.0
27+
passkeys_android: ^1.2.0
28+
passkeys_ios: ^1.2.0
29+
passkeys_platform_interface: ^1.2.0
3030
ua_client_hints: ^1.1.3
3131

3232
dev_dependencies:
@@ -37,4 +37,4 @@ dev_dependencies:
3737
mocktail: ^1.0.0
3838
openapi_generator: ^4.10.0
3939
plugin_platform_interface: ^2.0.0
40-
very_good_analysis: ^5.0.0
40+
very_good_analysis: ^5.0.0

0 commit comments

Comments
 (0)