Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
[Release Notes](https://docs.usercentrics.com/cmp_in_app_sdk/latest/about/history/)
### 2.31.0 – Sep 10, 2026
## Features
* **[Flutter]** Added edge-to-edge display support for the consent banner on Android, correctly handling system bar insets
* **[Flutter]** Added `controllerId` to the Flutter bridge options
* **[Core]** Added `controllerId` injection support to `UsercentricsOptions`
* **[Unreal]** Added native Unreal Engine bridge scaffolding for Android and iOS, wired into the UsercentricsUI compile target

## Fixes
* **[Android]** Fixed the `version` parameter in `UsercentricsOptions` being ignored when a cached settings response already exists

## Chores
* **[Core]** Bumped native Usercentrics SDK to 2.31.0
* **[Security]** Bumped `fastlane` to patch a high-severity `jwt` CVE
* **[Security]** Bumped `fast-xml-builder` to patch a high-severity CVE

### 2.30.0 – Aug 19, 2026
## Features
* **[Unity — Mediation]** Added support for Unity's End-User Consent Mode API (`EndUserConsent.SetConsentState`), mapping UC consent decisions to Unity Vector's `AnalyticsIntent`/`AdsIntent` signals — unblocks Unity Ads Vector adoption. Also fixed the dead Unity Ads link in the Consent Mediation docs
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def usercentrics_version = "2.30.0"
def usercentrics_version = "2.31.0"

group 'com.usercentrics.sdk.flutter'
version usercentrics_version
Expand Down
16 changes: 8 additions & 8 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ PODS:
- nanopb/decode (3.30910.0)
- nanopb/encode (3.30910.0)
- PromisesObjC (2.4.1)
- Usercentrics (2.30.0)
- usercentrics_sdk (2.30.0):
- Usercentrics (2.31.0)
- usercentrics_sdk (2.31.0):
- Flutter
- UsercentricsUI (= 2.30.0)
- UsercentricsUI (2.30.0):
- Usercentrics (= 2.30.0)
- UsercentricsUI (= 2.31.0)
- UsercentricsUI (2.31.0):
- Usercentrics (= 2.31.0)
- webview_flutter_wkwebview (0.0.1):
- Flutter
- FlutterMacOS
Expand Down Expand Up @@ -137,9 +137,9 @@ SPEC CHECKSUMS:
GoogleUtilities: 766ace00c6b10d8148408f329d10c4f051931850
nanopb: fad817b59e0457d11a5dfbde799381cd727c1275
PromisesObjC: 752c3227f599e3467650e47ea36f433eeb10c273
Usercentrics: 567d5a7fae74bf873d295135c2acce2569997c3d
usercentrics_sdk: c4aaf8eada36cb76c9b08d8b49010a254263fc46
UsercentricsUI: 2d82365e63124398120d2af121fc6d2e1835aaeb
Usercentrics: 907aa15a6dee4335364105859a1ce0cc4834979d
usercentrics_sdk: 15196c4608f7c2282d64a0341f4fee2544dc88fc
UsercentricsUI: d7242e2bfc4205135a258d3eb79dc4bf551669ba
webview_flutter_wkwebview: 1821ceac936eba6f7984d89a9f3bcb4dea99ebb2

PODFILE CHECKSUM: e97bfdbafeca8809c8aa9477153c465633bd1c02
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.30.0"
version: "2.31.0"
vector_math:
dependency: transitive
description:
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example_spm/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.30.0"
version: "2.31.0"
vector_math:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion ios/usercentrics_sdk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'usercentrics_sdk'
s.version = '2.30.0'
s.version = '2.31.0'
s.summary = 'Usercentrics Flutter SDK.'
s.description = <<-DESC
Usercentrics Flutter SDK.
Expand Down
4 changes: 2 additions & 2 deletions ios/usercentrics_sdk/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ let package = Package(
.library(name: "usercentrics-sdk", targets: ["usercentrics_sdk"])
],
dependencies: [
.package(url: "https://bitbucket.org/usercentricscode/usercentrics-spm-ui", exact: "2.30.0"),
.package(url: "https://bitbucket.org/usercentricscode/usercentrics-spm-sdk", exact: "2.30.0")
.package(url: "https://bitbucket.org/usercentricscode/usercentrics-spm-ui", exact: "2.31.0"),
.package(url: "https://bitbucket.org/usercentricscode/usercentrics-spm-sdk", exact: "2.31.0")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository: https://github.com/Usercentrics/flutter-sdk/
# [X] android/build.gradle
# [X] ios/usercentrics_sdk.podspec + pod install/update
# [X] CHANGELOG.md
version: 2.30.0
version: 2.31.0

environment:
sdk: ">=2.17.1 <4.0.0"
Expand Down
Loading