Skip to content

Commit

Permalink
Merge pull request #168 from okta/jn-prepare-0.6.0-BETA
Browse files Browse the repository at this point in the history
Prepare 0.6.0-BETA.
  • Loading branch information
JayNewstrom authored Jun 3, 2022
2 parents 12b8bc4 + 805abae commit 58b3677
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# Changelog

## [0.6.0-BETA] - 2022-06-03

[Commits](https://github.com/okta/okta-mobile-kotlin/compare/0.5.0-BETA...0.6.0-BETA)

### Added
- `SessionTokenFlow` which aids migration from legacy Authn APIs.
- Cache .well-known/openid-configuration results.

### Changed
- Made most of `OidcConfiguration` internal, use `AuthFoundationDefaults` for customization.
- Add extra parameters to the `DeviceAuthorizationFlow`.
- Remove the default on `Credential.revoke`.
- Expose `JwtParser.parse` instead of `OidcClient.parseJwt`.

### Fixed
- Listen for configuration changes in `ForegroundActivity`.
- Fix missing slash in SDK version.

## [0.5.0-BETA] - 2022-05-10

[Commits](https://github.com/okta/okta-mobile-kotlin/compare/0.4.0-BETA...0.5.0-BETA)

### Changed
- `OidcClient.refresh` no longer accepts scopes, as they are not used.
- Changed the way id token validation customization happens.
Expand All @@ -13,6 +34,9 @@
- Properly support backgrounded internal Activities during web authentication.

## [0.4.0-BETA] - 2022-04-25

[Commits](https://github.com/okta/okta-mobile-kotlin/compare/0.3.0-BETA...0.4.0-BETA)

### Added
- Legacy token migration - migrate tokens from okta-oidc-android, see [migrate.md](migrate.md).
- Consumer proguard rules, allowing R8 including with full mode.
Expand All @@ -30,6 +54,9 @@
- Fixed an issue where the chrome custom tab would linger after authentication.

## [0.3.0-BETA] - 2022-04-14

[Commits](https://github.com/okta/okta-mobile-kotlin/compare/0.2.0-BETA...0.3.0-BETA)

### Added
- Added CredentialBootstrap for handling common `Credential` use cases.
- Added a tag to OkHttp requests with the associated `Credential`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Add the `Okta Mobile Kotlin` dependencies to your `build.gradle` file:

```gradle
// Ensure all dependencies are compatible using the Bill of Materials (BOM).
implementation(platform('com.okta.kotlin:bom:0.5.0-BETA'))
implementation(platform('com.okta.kotlin:bom:0.6.0-BETA'))
// Add the dependencies to your project.
implementation('com.okta.kotlin:auth-foundation')
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ POM_LICENSE_DIST=repo
POM_DEVELOPER_ID=okta
POM_DEVELOPER_NAME=Okta

VERSION_NAME=0.5.0-BETA
VERSION_NAME=0.6.0-BETA

0 comments on commit 58b3677

Please sign in to comment.