Skip to content

Commit 29d78a2

Browse files
authored
Merge pull request #48 from rokwire/release/v0.0.3
Release/v0.0.3
2 parents 8e6941c + 9f0e6d3 commit 29d78a2

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [0.0.3] - 2022-03-17
10+
### Fixed
11+
- Wait for applyLogin in Auth2.processLoginResponse [#46](https://github.com/rokwire/app-flutter-plugin/issues/46).
12+
913
## [0.0.2] - 2022-03-07
1014
### Added
1115
- OIDC auth result codes [#25](https://github.com/rokwire/app-flutter-plugin/issues/25)

SECURITY.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ Patches for [ **illinois-app** ] will only be applied to the following versions:
66

77
| Version | Supported |
88
| ------- | ------------------ |
9+
| 0.0.3 | :white_check_mark: |
910
| 0.0.2 | :white_check_mark: |
1011
| 0.0.1 | :white_check_mark: |
11-
| < 0.0.2 | :x: |
12+
| < 0.0.1 | :x: |
1213

1314
## Reporting a Bug or Vulnerability
1415

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ packages:
631631
path: ".."
632632
relative: true
633633
source: path
634-
version: "0.0.2"
634+
version: "0.0.3"
635635
shared_preferences:
636636
dependency: transitive
637637
description:

ios/rokwire_plugin.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'rokwire_plugin'
7-
s.version = '0.0.2'
7+
s.version = '0.0.3'
88
s.summary = 'Rokwire Flutter plugin'
99
s.description = <<-DESC
1010
Rokwire Flutter plugin

lib/service/auth2.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ class Auth2 with Service, NetworkAuthProvider implements NotificationsListener {
396396
profile: _anonymousProfile ?? Auth2UserProfile.empty());
397397

398398
if ((token != null) && token.isValid && (account != null) && account.isValid) {
399-
applyLogin(account, token, params: JsonUtils.mapValue(responseJson['params']));
399+
await applyLogin(account, token, params: JsonUtils.mapValue(responseJson['params']));
400400
return true;
401401
}
402402
}

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rokwire_plugin
22
description: Rokwire Flutter plugin
3-
version: 0.0.2
3+
version: 0.0.3
44
homepage:
55

66
environment:

0 commit comments

Comments
 (0)