Skip to content

Commit 7a6c226

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 2.23.3
1 parent ce6aa40 commit 7a6c226

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

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

33
All notable changes to the LaunchDarkly Client-side SDK for React will be documented in this file. For the source code for versions 2.13.0 and earlier, see the corresponding tags in the [js-client-sdk](https://github.com/launchdarkly/js-client-sdk) repository; this code was previously in a monorepo package there. See also the [JavaScript SDK changelog](https://github.com/launchdarkly/js-client-sdk/blob/master/CHANGELOG.md), since the React SDK inherits all of the underlying functionality of the JavaScript SDK; this file covers only changes that are specific to the React interface. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [2.23.3] - 2021-11-02
6+
### Added:
7+
- The `AsyncProviderConfig` type was added. This type is a clone of `ProviderConfig` except that `deferInitialization` is marked as deprecated; see the "Deprecated" section below for more information.
8+
9+
### Fixed:
10+
- Fixed a bug where sourcemaps did not point to released files. ([#66](https://github.com/launchdarkly/react-client-sdk/issues/66))
11+
12+
### Deprecated:
13+
- Deprecated the ability to specify `deferInitialization` in the `config` object parameter for `asyncWithLDProvider`. The `asyncWithLDProvider` function needs to be initialized at the app entry point prior to render to ensure flags and the `ldClient` are ready at the beginning of the app. As a result, initialization cannot be deferred when using `asyncWithLDProvider`. ([#99](https://github.com/launchdarkly/react-client-sdk/issues/99))
14+
515
## [2.23.2] - 2021-10-06
616
### Changed:
717
- Improved `withLDProvider` so that prop types can be provided (thanks, [dsifford](https://github.com/launchdarkly/react-client-sdk/pull/97)!)

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "launchdarkly-react-client-sdk",
3-
"version": "2.23.2",
3+
"version": "2.23.3",
44
"description": "LaunchDarkly SDK for React",
55
"author": "LaunchDarkly <[email protected]>",
66
"license": "Apache-2.0",
@@ -14,7 +14,12 @@
1414
],
1515
"main": "lib/index.js",
1616
"types": "lib/index.d.ts",
17-
"files": ["lib", "src", "!**/*.test.*", "!**/__snapshots__"],
17+
"files": [
18+
"lib",
19+
"src",
20+
"!**/*.test.*",
21+
"!**/__snapshots__"
22+
],
1823
"scripts": {
1924
"test": "jest",
2025
"test:junit": "jest --ci --reporters=default --reporters=jest-junit",

0 commit comments

Comments
 (0)