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
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.7.0 (August 31, 2023)
- Updated @splitsoftware/splitio-commons package to version 1.9.0 that includes a minor improvement:
- Updated streaming architecture implementation to apply feature flag updates from the notification received which is now enhanced, improving efficiency and reliability of the whole update system.
- Updated some transitive dependencies for vulnerability fixes.
- Updated Android build.gradle config for compatibility with upcoming React Native v0.73 while keeping backward compatibility (Related to https://github.com/splitio/react-native-client/pull/54).

0.6.3 (May 15, 2023)
- Updated @splitsoftware/splitio-commons package to version 1.8.2 that includes updated terminology on codebase to be more aligned with current standard without causing a breaking change. The core change is the term split for feature flag on things like logs and IntelliSense comments.
- Updated some transitive dependencies for vulnerability fixes.
Expand Down
16 changes: 15 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,22 @@ def safeExtGet(name, fallback) {

apply plugin: "com.android.library"

def isAGPVersionGreaterThan(version) {
try {
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
return agpVersion > version
} catch (Exception e) {
return false
}
}

android {
namespace = "io.split.rnsplit"
// From https://github.com/react-native-community/discussions-and-proposals/issues/671
// to keep backwards compatibility with RN < 0.71 & AGP < 8
if (isAGPVersionGreaterThan(7)) {
namespace "io.split.rnsplit"
}

compileSdkVersion safeExtGet("compileSdkVersion", 28)

defaultConfig {
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ PODS:
- React-jsi (= 0.70.5)
- React-logger (= 0.70.5)
- React-perflogger (= 0.70.5)
- RNSplit (0.6.1):
- RNSplit (0.7.0):
- React
- SocketRocket (0.6.0)
- Yoga (1.14.0)
Expand Down Expand Up @@ -546,7 +546,7 @@ SPEC CHECKSUMS:
React-RCTVibration: 8e5c8c5d17af641f306d7380d8d0fe9b3c142c48
React-runtimeexecutor: 7401c4a40f8728fd89df4a56104541b760876117
ReactCommon: c9246996e73bf75a2c6c3ff15f1e16707cdc2da9
RNSplit: 2f4afcaa91d798520af515acdc5b58ceead4b772
RNSplit: 8155d3ca0f1f9f272f1477bc618ed151aea4ea68
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
Yoga: eca980a5771bf114c41a754098cd85e6e0d90ed7
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
Expand Down
199 changes: 131 additions & 68 deletions example/package-lock.json

Large diffs are not rendered by default.

Loading