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

prepare 7.1.2 release #208

Merged
merged 27 commits into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c93ff06
[sc-190014] Merge 7.0 for u2c release (#143)
yusinto Feb 24, 2023
2bdb70f
[sc-190127] Update npm package-lock (#144)
yusinto Feb 24, 2023
810be76
Update yarn.lock
yusinto Feb 24, 2023
209bcb9
Update yarn.lock
yusinto Feb 24, 2023
ab63220
Update yarn.lock
yusinto Feb 24, 2023
be06f65
Update package.json
yusinto Feb 24, 2023
170aa5f
Downgrade typescript version to fix typedoc issues
yusinto Feb 24, 2023
1099b7a
Merge branch 'main' of github.com:launchdarkly/react-native-client-sdk
yusinto Feb 24, 2023
2b80354
Merge branch 'main' of github.com:launchdarkly/react-native-client-sd…
yusinto Feb 27, 2023
5299bd0
Update main.yml
yusinto Feb 27, 2023
e785d4d
merge from public after release
Feb 27, 2023
45894f7
Bump rn sdk to v7
yusinto Feb 28, 2023
b5da8a7
[sc-178013] Add android null guards for LDClient (#145)
yusinto Mar 2, 2023
9b55232
Update yarn.lock
yusinto Mar 2, 2023
cda03e6
merge from public after release
Mar 2, 2023
c501ff7
Merge branch 'main' of github.com:launchdarkly/react-native-client-sdk
louis-launchdarkly Mar 2, 2023
134681f
merge from public after release
Mar 2, 2023
9f53595
[sc-190944] Add dotenv variable for example app (#146)
yusinto Mar 3, 2023
d816728
Merge branch 'main' of github.com:launchdarkly/react-native-client-sd…
yusinto Mar 3, 2023
d0ea8cf
merge from public after release
Mar 3, 2023
43a7e73
[sc-186949] Add support for RN 0.71.x (#147)
yusinto Mar 6, 2023
81b3a3a
Merge branch 'main' of github.com:launchdarkly/react-native-client-sd…
yusinto Mar 6, 2023
15f2376
Merging public changes
yusinto Mar 6, 2023
45c45fd
merge from public after release
Mar 6, 2023
07a3530
[sc-191407] Update supported versions on README (#148)
yusinto Mar 6, 2023
bcdb3f2
merge from public after release
Mar 6, 2023
79193b8
fix: 7.x startup crash due to missing proguard file (#152)
yusinto Mar 15, 2023
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
2 changes: 1 addition & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @kinyoklion @yusinto @louis-launchdarkly
* @kinyoklion @yusinto @louis-launchdarkly @tanderson-ld
6 changes: 1 addition & 5 deletions ManualTestApp/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,7 @@ const App = () => {
};

MessageQueue.spy((msg) => {
if (
msg.module != 'LaunchdarklyReactNativeClient' &&
typeof msg.method !== 'number' &&
!msg.method.includes('LaunchdarklyReactNativeClient')
) {
if (msg.module != 'LaunchdarklyReactNativeClient' && !msg.method.includes?.('LaunchdarklyReactNativeClient')) {
return;
}
let logMsg = msg.type === 0 ? 'N->JS: ' : 'JS->N: ';
Expand Down
2 changes: 1 addition & 1 deletion ManualTestApp/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def enableSeparateBuildPerCPUArchitecture = false
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
def enableProguardInReleaseBuilds = false
def enableProguardInReleaseBuilds = true

/**
* The preferred build flavor of JavaScriptCore.
Expand Down
Loading