Skip to content

Commit

Permalink
Merge pull request #378 from ForgeRock/SDKS-2854
Browse files Browse the repository at this point in the history
ForgeRock Android SDK 4.3.0 Release Preparation
  • Loading branch information
spetrov authored Dec 28, 2023
2 parents 7b68b68 + cc8cf3c commit 256c8f3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 26 deletions.
34 changes: 10 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,15 @@
## [4.X.X]
## [4.3.0]
#### Added
- Allow developer to customize the cookie header to the outgoing request from the SDK [SDKS-2780]
```kotlin
RequestInterceptorRegistry.getInstance()
.register(object : CustomCookieInterceptor {
override fun intercept(cookies: List<Cookie>): List<Cookie> {
val updated = mutableListOf<Cookie>()
updated.add(Cookie.Builder().domain("localhost").name("test").value("testValue")
.build())
updated.addAll(cookies)
return updated
}
})

private interface CustomCookieInterceptor : FRRequestInterceptor<Action>,
CookieInterceptor {
override fun intercept(request: Request, tag: Action): Request {
return request
}
}
```
- Added the ability to customize cookie headers in outgoing requests from the SDK [SDKS-2780]
- Added the ability to insert custom claims when performing device signing verification [SDKS-2787]
- Added client-side support for the `AppIntegrity` callback [SDKS-2631]


#### Fixed
- Use auth-per-use Key for Device Binding [SDKS-2792]
- Handle WebAuthn cancellation inconsistency [SDKS-2819]
- Making `forgerock_url`, `forgerock_realm`, and `forgerock_cookie_name` params mandatory for dynamically configuring the SDK [SDKS-2782]
- The SDK now uses `auth-per-use` keys for Device Binding [SDKS-2797]
- Improved handling of WebAuthn cancellations [SDKS-2819]
- Made `forgerock_url`, `forgerock_realm`, and `forgerock_cookie_name` params mandatory when dynamically configuring the SDK [SDKS-2782]
- Addressed `woodstox-core:6.2.4` library security vulnerability (CVE-2022-40152) [SDKS-2751]

## [4.2.0]
#### Added
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ kotlin.code.style=official
android.useAndroidX=true

GROUP=org.forgerock
VERSION=4.2.0
VERSION_CODE=18
VERSION=4.3.0
VERSION_CODE=19
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false

0 comments on commit 256c8f3

Please sign in to comment.