Skip to content

Commit 4e2968c

Browse files
Upgrade JS-commons
1 parent 51a2e00 commit 4e2968c

File tree

9 files changed

+33
-29
lines changed

9 files changed

+33
-29
lines changed

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.1.0 (January 17, 2025)
2+
- Added support for the new impressions tracking toggle available on feature flags, both respecting the setting and including the new field being returned on `SplitView` type objects. Read more in our docs.
3+
- Updated @splitsoftware/splitio-commons package to version 2.1.0.
4+
15
1.0.1 (November 11, 2024)
26
- Bugfixing - Revert removal of TypeScript `SplitIO` namespace at `/types/splitio.d.ts` to allow explicit imports of types from the React Native SDK package. E.g., `import type { IReactNativeSettings } from '@splitsoftware/splitio-react-native/types/splitio';`.
37

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ For a comprehensive list of open source projects visit our [Github page](https:/
7878

7979
**Learn more about Split:**
8080

81-
Visit [split.io/product](https://www.split.io/product) for an overview of Split, or visit our documentation at [help.split.io](http://help.split.io) for more detailed information.
81+
Visit [split.io/product](https://www.split.io/product) for an overview of Split, or visit our documentation at [help.split.io](https://help.split.io) for more detailed information.

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ PODS:
387387
- React-jsi (= 0.72.15)
388388
- React-logger (= 0.72.15)
389389
- React-perflogger (= 0.72.15)
390-
- RNSplit (0.9.1):
390+
- RNSplit (1.1.0):
391391
- React
392392
- SocketRocket (0.6.1)
393393
- Yoga (1.14.0)
@@ -558,7 +558,7 @@ SPEC CHECKSUMS:
558558
React-runtimescheduler: b360635f6f804ec42fa875500620882a6b97d2f5
559559
React-utils: 8eb3c12fd4a4da6df3824f7d9a961d73a6ed6e5d
560560
ReactCommon: 317bddf4a70fca9e542343e942a504285282971c
561-
RNSplit: efee4efe8f9560ceda131939ef19fde32e74ff4b
561+
RNSplit: bcbde38a99cd41eeafdccecf5eae9b1fb0e66a73
562562
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
563563
Yoga: 6f5ab94cd8b1ecd04b6e973d0bc583ede2a598cc
564564

example/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splitsoftware/splitio-react-native",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Split SDK for React Native",
55
"main": "lib/commonjs/index.js",
66
"module": "lib/module/index.js",
@@ -61,7 +61,7 @@
6161
},
6262
"homepage": "https://github.com/splitio/react-native-client#readme",
6363
"dependencies": {
64-
"@splitsoftware/splitio-commons": "2.0.0"
64+
"@splitsoftware/splitio-commons": "2.1.0"
6565
},
6666
"devDependencies": {
6767
"@react-native-community/eslint-config": "^3.2.0",

src/settings/defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type SplitIO from '@splitsoftware/splitio-commons/types/splitio';
22
import { CONSENT_GRANTED } from '@splitsoftware/splitio-commons/src/utils/constants';
33

4-
const packageVersion = '1.0.1';
4+
const packageVersion = '1.1.0';
55

66
export const defaults = {
77
startup: {

types/full/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Declaration file for React Native Split Software SDK
2-
// Project: http://www.split.io/
2+
// Project: https://www.split.io/
33
// Definitions by: Nico Zelaya <https://github.com/NicoZelaya/>
44

55
/// <reference path="../splitio.d.ts" />

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Declaration file for React Native Split Software SDK
2-
// Project: http://www.split.io/
2+
// Project: https://www.split.io/
33
// Definitions by: Nico Zelaya <https://github.com/NicoZelaya/>
44

55
/// <reference path="./splitio.d.ts" />

0 commit comments

Comments
 (0)