-
Notifications
You must be signed in to change notification settings - Fork 56
Adding DPoP feature for flutter #667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 9 commits
fb1e954
59561ef
f36ce25
dcc06db
9f037ee
f97a18f
284b62f
df70633
bcf3a5a
ceb6c24
5b47793
8d7cc7e
866b1fb
3b7e369
36ebe7a
c317750
e3e6cb6
accc43b
a5f483d
a9d50cd
131f157
0e65bbf
2d46380
c3926f2
a29e2fd
8740337
e41aade
6071b97
5b8471d
16055d4
fbfb893
9cdf344
6c12e93
2ef754e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,7 @@ env: | |
| ruby: '3.3.1' | ||
| flutter: '3.x' | ||
| ios-simulator: iPhone 16 | ||
| java: 11 | ||
| java: 17 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this needs to be upgraded ? |
||
|
|
||
| jobs: | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,53 @@ | ||||||||||||||||||||||||||||
| # Migration Guide | ||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||
| ## Native SDK Version Updates | ||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||
| This release includes updates to the underlying native Auth0 SDKs to support new features including DPoP (Demonstrating Proof of Possession). These updates are **transparent** to your application code - no code changes are required unless you want to opt into new features like DPoP. | ||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||
| ### Updated SDK Versions | ||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||
| | Platform | Previous Version | New Version | Changes | | ||||||||||||||||||||||||||||
| |----------|-----------------|-------------|---------| | ||||||||||||||||||||||||||||
| | **Android** | Auth0.Android 2.11.0 | Auth0.Android 3.11.0 | DPoP support, enhanced security | | ||||||||||||||||||||||||||||
| | **iOS/macOS** | Auth0.swift 2.10.0 | Auth0.swift 2.14.0 | DPoP support, improved APIs | | ||||||||||||||||||||||||||||
| | **Web** | auth0-spa-js 2.0 | auth0-spa-js 2.9.0 | DPoP support, bug fixes | | ||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
| | **Android** | Auth0.Android 2.11.0 | Auth0.Android 3.11.0 | DPoP support, enhanced security | | |
| | **iOS/macOS** | Auth0.swift 2.10.0 | Auth0.swift 2.14.0 | DPoP support, improved APIs | | |
| | **Web** | auth0-spa-js 2.0 | auth0-spa-js 2.9.0 | DPoP support, bug fixes | | |
| | **Android** | Auth0.Android 2.11.0 | Auth0.Android 3.11.0 | DPoP support, enhanced security, major version bump | | |
| | **iOS/macOS** | Auth0.swift 2.10.0 | Auth0.swift 2.14.0 | DPoP support, improved APIs | | |
| | **Web** | auth0-spa-js 2.0 | auth0-spa-js 2.9.0 | DPoP support, bug fixes | | |
| > **Note for Android:** | |
| > The upgrade from Auth0.Android 2.11.0 to 3.11.0 is a major version bump. According to [Auth0.Android 3.x release notes](https://github.com/auth0/Auth0.Android/releases), this release includes some breaking changes at the native SDK level. However, the `auth0_flutter` plugin has been updated to maintain backward compatibility for all existing Flutter APIs. | |
| > | |
| > If you are using only the documented Flutter APIs, **no code changes are required** for this upgrade. If you use custom platform channels or depend on undocumented native behaviors, please review the [Auth0.Android 3.x migration guide](https://github.com/auth0/Auth0.Android/blob/main/MIGRATION.md) for details. | |
| > | |
| > If you encounter any issues after upgrading, please consult the [Auth0.Android 3.x release notes](https://github.com/auth0/Auth0.Android/releases) or open an issue. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: this is not just ios specific
Uh oh!
There was an error while loading. Please reload this page.