-
Notifications
You must be signed in to change notification settings - Fork 16
Release: 2.27.1 #241
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
Release: 2.27.1 #241
Changes from all commits
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| val usercentricsVersion = "2.30.0" | ||
| val usercentricsVersion = "2.27.1" | ||
|
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. [CRITICAL_BUG] The usercentricsVersion was changed from "2.30.0" to "2.27.1" (a downgrade). Confirm this is intentional. If you intended to bump the native SDK, set the correct newer version; if you intended to pin to 2.27.1, ensure downstream Android build files and publication metadata (Maven coordinates, dependency availability) are consistent. Run a full Android build (assemblePublish / ./gradlew assemble) and integration tests to verify no missing artifacts or API incompatibilities. Also ensure this value stays in sync with any iOS/native version metadata. // If the intent is to truly bump to 2.27.1 (rollback from 2.30.0),
// keep Android/iOS/native metadata consistent as already done in package.json
// and changelog. Consider adding a short comment to document why this
// version is lower than the previous tag to avoid future confusion.
val usercentricsVersion = "2.27.1" |
||
| val reactNativeVersion = "+" | ||
|
|
||
| fun BooleanProperty(name: String): Boolean { | ||
|
|
@@ -97,4 +97,4 @@ afterEvaluate { | |
| dependsOn(":usercentrics_react-native-sdk:generateReleaseResValues") | ||
| } | ||
| } | ||
| } | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,13 @@ | ||
| { | ||
| "name": "@usercentrics/react-native-sdk", | ||
| "version": "2.30.0", | ||
| "version": "2.27.1", | ||
| "description": "Usercentrics SDK", | ||
| "homepage": "https://usercentrics.com", | ||
| "main": "lib/index.js", | ||
| "types": "lib/index.d.ts", | ||
| "author": "Usercentrics <developer@usercentrics.com>", | ||
| "iosPackageName": "react-native-usercentrics", | ||
| "iosPackageVersion": "2.30.0", | ||
| "iosPackageVersion": "2.27.1", | ||
|
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. [VALIDATION] You updated "iosPackageVersion" to "2.27.1". If this is meant to reflect the native iOS SDK version, confirm that the iOS Podspec (react-native-usercentrics.podspec), any CocoaPods/publish metadata, and native iOS binary used in the ios/ folder are updated to match. Run pod install / a sample iOS build to verify the specified version is resolvable and the API is compatible with the JS bridge. {
"name": "@usercentrics/react-native-sdk",
"version": "2.27.1",
"description": "Usercentrics SDK",
"homepage": "https://usercentrics.com",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Usercentrics <developer@usercentrics.com>",
"iosPackageName": "react-native-usercentrics",
"iosPackageVersion": "2.27.1",
"license": "SEE LICENSE IN LICENSE",
"files": [
"android",
"ios",
"lib",
"src",
"react-native-usercentrics.podspec",
"react-native.config.js",
"!.DS_Store",
"!.gradle",
"!.idea",
"!build",
"!gradle",
"!*.iml",
"!gradlew",
"!gradlew.bat",
"!local.properties",
"!project.xcworkspace",
"!xcshareddata",
"!xcuserdata"
]
} |
||
| "license": "SEE LICENSE IN LICENSE", | ||
| "files": [ | ||
| "android", | ||
|
|
||
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.
[NITPICK] The new 2.27.1 entry was inserted above the existing 2.30.0 entry, which is confusing because 2.30.0 is a later release. Keep changelog entries in descending chronological order. Also clarify in the entry that this change only updates the native Usercentrics SDK dependency (and whether this is a downgrade), so readers understand the scope (native-only vs. JS/API changes).