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

Commit fe01992

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 5.0.1
1 parent da098cd commit fe01992

File tree

5 files changed

+22
-3
lines changed

5 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to the LaunchDarkly React Native SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [5.0.1] - 2021-09-03
6+
### Fixed:
7+
- Android: Fixed an inconsistency in the argument type given to all flags listeners. On Android the callback was given a string with a JSON representation of an array of strings, rather than an actual array of strings. (Thanks, [rodperottoni](https://github.com/launchdarkly/react-native-client-sdk/pull/91)!) ([#89](https://github.com/launchdarkly/react-native-client-sdk/issues/89))
8+
- Android: Fixed runtime crashes caused by code shrinking when compiling with Proguard/R8. The SDK now specifies consumer Proguard rules for Android SDK methods accessed with runtime reflection.
9+
- Android: Removed the `android:allowBackup` tag from the SDK's `AndroidManifest.xml` file to avoid requiring applications to explicitly replace the tag if given a different value. ([#138](https://github.com/launchdarkly/android-client-sdk/issues/138))
10+
- Android: Changed the SDK's network detection check to consider network transport over a VPN as a connected state. This fixes an issue where the SDK would prevent network requests on a VPN due to considering the network to be unavailable. (Thanks, [lguipeng](https://github.com/launchdarkly/android-client-sdk/pull/137)!)
11+
512
## [5.0.0] - 2021-08-20
613
### Added:
714
- The SDK now supports the ability to control the proportion of traffic allocation to an experiment. This works in conjunction with a new platform feature now available to early access customers.

docs/typedoc.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
out: './docs/build/html',
3+
exclude: [
4+
'**/node_modules/**',
5+
'test-types.ts'
6+
],
7+
name: "LaunchDarkly Client-Side SDK for React Native (5.0.1)",
8+
readme: 'none', // don't add a home page with a copy of README.md
9+
mode: 'file', // don't treat "index.d.ts" itself as a parent module
10+
includeDeclarations: true, // allows it to process a .d.ts file instead of actual TS code
11+
entryPoint: '"launchdarkly-react-native-client-sdk"' // note extra quotes - workaround for a TypeDoc bug
12+
};

ios/LaunchdarklyReactNativeClient.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::Spec.new do |s|
33
s.name = "LaunchdarklyReactNativeClient"
4-
s.version = "5.0.0"
4+
s.version = "5.0.1"
55
s.summary = "LaunchdarklyReactNativeClient"
66
s.description = <<-DESC
77
LaunchdarklyReactNativeClient

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "launchdarkly-react-native-client-sdk",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"description": "",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)