|
1 | 1 | # Changelog
|
2 | 2 |
|
3 | 3 | ## [Unreleased]
|
4 |
| -- Added web redirect authentication flow option [#173] |
5 |
| - - Must use at least version 2.13.1 of MSAL library from MS in index.html |
6 |
| - - Calculates an appropriate default redirect URI on mobile and web if not provided |
7 | 4 |
|
8 |
| -## [0.4.1-beta.2] - 20220919 |
9 |
| - |
10 |
| -- Fix exception behavior for the web version [#170]. |
11 |
| - |
12 |
| -## [0.4.1-beta.1] - 20220916 |
13 |
| - |
14 |
| -- Breaking: Improve exceptions handling [#168]. |
15 |
| -- Fix login error when changing user password [#164]. |
16 |
| -- Add loader while render web page in WebView [#162]. |
| 5 | +## [0.4.1] - 20221124 |
| 6 | +- Added web redirect authentication flow option https://github.com/Earlybyte/aad_oauth/pull/174. |
| 7 | + - Must use at least version 2.13.1 of MSAL library from MS in index.html. |
| 8 | + - Calculates an appropriate default redirect URI on mobile and web if not provided. |
| 9 | +- Add userAgent parameter to WebView https://github.com/Earlybyte/aad_oauth/pull/181 |
| 10 | +- Fix exception behavior for the web version https://github.com/Earlybyte/aad_oauth/pull/170. |
| 11 | +- Breaking: Improve exceptions handling https://github.com/Earlybyte/aad_oauth/pull/168. |
| 12 | +- Fix login error when changing user password https://github.com/Earlybyte/aad_oauth/pull/164. |
| 13 | +- Add loader while render web page in WebView https://github.com/Earlybyte/aad_oauth/pull/162. |
17 | 14 |
|
18 | 15 | ## [0.4.0] - 20220523
|
19 | 16 |
|
20 |
| -- Breaking: Use webview_flutter plugin (requires android minSDK >= 20) [#121], [#124] |
| 17 | +- Breaking: Use webview_flutter plugin (requires android minSDK >= 20) https://github.com/Earlybyte/aad_oauth/pull/121, https://github.com/Earlybyte/aad_oauth/pull/124 |
21 | 18 | - Requires passing the same navigatorKey to Config() and MaterialApp() to support
|
22 | 19 | interactive login.
|
23 | 20 | - Removed unnecessary calls to set screen size - calls to these APIs must be
|
24 | 21 | removed from apps (setWebViewScreenSize and setWebViewScreenSizeFromMedia).
|
25 | 22 | - webview_flutter automatically adjusts the webview size.
|
26 |
| -- Update flutter_secure_storage and add android options to config [#128], [#134] |
| 23 | +- Update flutter_secure_storage and add android options to config https://github.com/Earlybyte/aad_oauth/pull/128, https://github.com/Earlybyte/aad_oauth/pull/134 |
27 | 24 |
|
28 | 25 | ## [0.3.1] - 20200808
|
29 | 26 |
|
30 |
| -- Add flutter_web support [#106](https://github.com/Earlybyte/aad_oauth/pull/106) |
| 27 | +- Add flutter_web support https://github.com/Earlybyte/aad_oauth/pull/106 |
31 | 28 |
|
32 | 29 | ## [0.3.0] - 20200725
|
33 | 30 |
|
34 |
| -- Migrate package and examples to sound null safety [#105](https://github.com/Earlybyte/aad_oauth/pull/105) |
| 31 | +- Migrate package and examples to sound null safety https://github.com/Earlybyte/aad_oauth/pull/105 |
35 | 32 |
|
36 | 33 | ## [0.2.2] - 20200702
|
37 | 34 |
|
38 |
| -- Add refreshIfAvailable flag to login() [#94](https://github.com/Earlybyte/aad_oauth/pull/94) |
39 |
| -- Update Flutter Webview Plugin [#112](https://github.com/Earlybyte/aad_oauth/pull/112) |
40 |
| -- Bumped to version 0.2.1 with latest http support [#113](https://github.com/Earlybyte/aad_oauth/pull/113) |
41 |
| -- Upgrade packages and fix problems [#114](https://github.com/Earlybyte/aad_oauth/pull/114) |
| 35 | +- Add refreshIfAvailable flag to login() https://github.com/Earlybyte/aad_oauth/pull/94 |
| 36 | +- Update Flutter Webview Plugin https://github.com/Earlybyte/aad_oauth/pull/112 |
| 37 | +- Bumped to version 0.2.1 with latest http support https://github.com/Earlybyte/aad_oauth/pull/113 |
| 38 | +- Upgrade packages and fix problems https://github.com/Earlybyte/aad_oauth/pull/114 |
42 | 39 |
|
43 | 40 | ## [0.2.1] - 20210119
|
44 | 41 |
|
45 |
| -- Enable to resize webview after init #68 |
46 |
| -- Add dartdoc to most important elements #75 |
47 |
| -- Fix token init #89 |
48 |
| -- Upgrade plugins #88 |
| 42 | +- Enable to resize webview after init https://github.com/Earlybyte/aad_oauth/pull/68 |
| 43 | +- Add dartdoc to most important elements https://github.com/Earlybyte/aad_oauth/pull/75 |
| 44 | +- Fix token init https://github.com/Earlybyte/aad_oauth/pull/89 |
| 45 | +- Upgrade plugins https://github.com/Earlybyte/aad_oauth/pull/88 |
49 | 46 |
|
50 | 47 | ## [0.2.0] - 20201007
|
51 | 48 |
|
52 |
| -- Add additional config options #66 |
53 |
| -- Throw Exception on return #55 |
54 |
| -- Fix Example App #65 |
55 |
| -- Comply Pub Dev Requirements #67 |
| 49 | +- Add additional config options https://github.com/Earlybyte/aad_oauth/pull/66 |
| 50 | +- Throw Exception on return https://github.com/Earlybyte/aad_oauth/pull/55 |
| 51 | +- Fix Example App https://github.com/Earlybyte/aad_oauth/pull/65 |
| 52 | +- Comply Pub Dev Requirements https://github.com/Earlybyte/aad_oauth/pull/67 |
56 | 53 |
|
57 | 54 | ## [0.1.9] - 20200529
|
58 | 55 |
|
|
0 commit comments