Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit cd65cae

Browse files
LaunchDarklyReleaseBotember-stevensyusintoLaunchDarklyReleaseBotdependabot[bot]
authored
prepare 9.0.0 release (#241)
## [9.0.0] - 2024-01-09 **Version 9.0 includes breaking changes in dependencies**. In version 9.0, there are no changes to the React Native SDK API or functionality. Version 9.0 of the SDK requires Java 17, in order to support React Native 0.73. The LaunchDarkly [React Native SDK version 10](https://github.com/launchdarkly/js-core/tree/main/packages/sdk/react-native) currently in development is written in pure JavaScript and compatible with Expo. For most customers, we recommend waiting for version 10. ### Added: - Support for React Native 0.73.x ### Removed: - Support for React Native 0.69.x, 0.70.x, 0.71.x, 0.72.x --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Ember Stevens <[email protected]> Co-authored-by: Ember Stevens <[email protected]> Co-authored-by: Yusinto Ngadiman <[email protected]> Co-authored-by: Yusinto Ngadiman <[email protected]> Co-authored-by: LaunchDarklyReleaseBot <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: tanderson-ld <[email protected]> Co-authored-by: Louis Chan <[email protected]> Co-authored-by: Louis Chan <[email protected]>
1 parent 1029007 commit cd65cae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+10539
-8212
lines changed

.circleci/config.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,7 @@ jobs:
106106
condition:
107107
and:
108108
- equal: [14.3.1, << parameters.xcode-version >>]
109-
- or:
110-
- equal: [0.71.13, << parameters.rn-version >>]
111-
- equal: [0.72.7, << parameters.rn-version >>]
112-
109+
- equal: [0.73.1, << parameters.rn-version >>]
113110
steps:
114111
- run:
115112
name: Build application for Android
@@ -126,5 +123,5 @@ workflows:
126123
name: rn<<matrix.rn-version>>-xc<<matrix.xcode-version>>-build-apps-using-template
127124
matrix:
128125
parameters:
129-
rn-version: ['0.69.12', '0.70.13', '0.71.13', '0.72.7']
126+
rn-version: ['0.73.1']
130127
xcode-version: ['14.3.1', '15.1']

.github/workflows/main.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v3
1010
- uses: actions/setup-node@v3
1111
with:
12-
node-version: '16.x'
12+
node-version: '18.x'
1313
cache: 'yarn'
1414
- run: yarn && yarn tsc
1515

@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v3
2121
- uses: actions/setup-node@v3
2222
with:
23-
node-version: '16.x'
23+
node-version: '18.x'
2424
cache: 'yarn'
2525
- run: yarn && yarn test
2626

@@ -31,8 +31,12 @@ jobs:
3131
- uses: actions/checkout@v3
3232
- uses: actions/setup-node@v3
3333
with:
34-
node-version: '16.x'
34+
node-version: '18.x'
3535
cache: 'yarn'
36+
- uses: actions/setup-java@v4
37+
with:
38+
distribution: 'temurin' # See 'Supported distributions' for available options
39+
java-version: '17'
3640
- run: yarn && cd android && ./gradlew test
3741

3842
# ripped from these two places:
@@ -48,7 +52,7 @@ jobs:
4852
- uses: actions/checkout@v3
4953
- uses: actions/setup-node@v3
5054
with:
51-
node-version: '16.x'
55+
node-version: '18.x'
5256
cache: 'yarn'
5357
- uses: actions/cache@v3
5458
id: cocoapods-cache

ManualTestApp/.buckconfig

Lines changed: 0 additions & 6 deletions
This file was deleted.

ManualTestApp/.eslintrc.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
module.exports = {
22
root: true,
3-
extends: '@react-native-community',
4-
rules: {
5-
'@typescript-eslint/no-unused-vars': ['error', { ignoreRestSiblings: true }],
6-
'react-native/no-inline-styles': 0,
7-
},
3+
extends: '@react-native',
84
};

ManualTestApp/.flowconfig

Lines changed: 0 additions & 65 deletions
This file was deleted.

ManualTestApp/.gitignore

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ DerivedData
2020
*.hmap
2121
*.ipa
2222
*.xcuserstate
23+
ios/.xcode.env.local
2324

2425
# Android/IntelliJ
2526
#
@@ -29,6 +30,9 @@ build/
2930
local.properties
3031
*.iml
3132
*.hprof
33+
.cxx/
34+
*.keystore
35+
!debug.keystore
3236

3337
# node.js
3438
#
@@ -51,14 +55,22 @@ buck-out/
5155
# For more information about the recommended setup visit:
5256
# https://docs.fastlane.tools/best-practices/source-control/
5357

54-
*/fastlane/report.xml
55-
*/fastlane/Preview.html
56-
*/fastlane/screenshots
58+
**/fastlane/report.xml
59+
**/fastlane/Preview.html
60+
**/fastlane/screenshots
61+
**/fastlane/test_output
5762

5863
# Bundle artifact
5964
*.jsbundle
6065

61-
# CocoaPods
66+
# Ruby / CocoaPods
6267
/ios/Pods/
68+
/vendor/bundle/
69+
70+
# Temporary files created by Metro to check the health of the file watcher
71+
.metro-health-check*
72+
73+
# testing
74+
/coverage
6375

6476
.env

ManualTestApp/.prettierrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

ManualTestApp/.prettierrc.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
arrowParens: 'avoid',
3+
bracketSameLine: true,
4+
bracketSpacing: false,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
};

ManualTestApp/.watchmanconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{}
1+
{}

0 commit comments

Comments
 (0)