@launchdarkly/react-sdk 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -13
- package/README.md +23 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.1.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Features
|
|
7
|
-
|
|
8
|
-
* pre-release of `@launchdarkly/react-sdk` ([#1201](https://github.com/launchdarkly/js-core/issues/1201)) ([69f4790](https://github.com/launchdarkly/js-core/commit/69f47902f5327d3d7c7f1bbca66a3d0ff95e7452))
|
|
3
|
+
## [0.1.1](https://github.com/launchdarkly/js-core/compare/react-sdk-v0.1.0...react-sdk-v0.1.1) (2026-03-24)
|
|
9
4
|
|
|
10
5
|
|
|
11
6
|
### Bug Fixes
|
|
12
7
|
|
|
13
|
-
*
|
|
14
|
-
* **deps:** update dependency next to v16.1.7 [security] ([#1196](https://github.com/launchdarkly/js-core/issues/1196)) ([1572be1](https://github.com/launchdarkly/js-core/commit/1572be1adbb25eb12102e5f03dd058d62423afb3))
|
|
8
|
+
* react prerelease docs ([#1215](https://github.com/launchdarkly/js-core/issues/1215)) ([bc69bdd](https://github.com/launchdarkly/js-core/commit/bc69bdd16f423aa84d23c255a13c6b959fa4446e))
|
|
15
9
|
|
|
10
|
+
## [0.1.0](https://github.com/launchdarkly/js-core/compare/react-sdk-v0.0.1...react-sdk-v0.1.0) (2026-03-23)
|
|
16
11
|
|
|
17
|
-
### Dependencies
|
|
18
12
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
* @launchdarkly/js-server-sdk-common bumped from ^2.18.2 to ^2.18.3
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* pre-release of `@launchdarkly/react-sdk` ([#1201](https://github.com/launchdarkly/js-core/issues/1201)) ([69f4790](https://github.com/launchdarkly/js-core/commit/69f47902f5327d3d7c7f1bbca66a3d0ff95e7452))
|
package/README.md
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
# LaunchDarkly React SDK
|
|
2
2
|
|
|
3
|
+
[![NPM][react-sdk-npm-badge]][react-sdk-npm-link]
|
|
4
|
+
[![Actions Status][react-sdk-ci-badge]][react-sdk-ci]
|
|
5
|
+
[![Documentation][react-sdk-ghp-badge]][react-sdk-ghp-link]
|
|
6
|
+
[![NPM][react-sdk-dm-badge]][react-sdk-npm-link]
|
|
7
|
+
[![NPM][react-sdk-dt-badge]][react-sdk-npm-link]
|
|
8
|
+
|
|
9
|
+
⚠️⚠️⚠️
|
|
10
|
+
|
|
3
11
|
> [!CAUTION]
|
|
4
|
-
> This
|
|
5
|
-
>
|
|
6
|
-
>
|
|
12
|
+
> This SDK is in pre-release and not subject to backwards compatibility
|
|
13
|
+
> guarantees. The API may change based on feedback.
|
|
14
|
+
>
|
|
15
|
+
> Pin to a specific minor version and review the [changelog](./CHANGELOG.md) before upgrading.
|
|
16
|
+
|
|
17
|
+
☝️☝️☝️
|
|
7
18
|
|
|
8
19
|
## About LaunchDarkly
|
|
9
20
|
|
|
@@ -19,3 +30,12 @@
|
|
|
19
30
|
- [docs.launchdarkly.com](https://docs.launchdarkly.com/ 'LaunchDarkly Documentation') for our documentation and SDK reference guides
|
|
20
31
|
- [apidocs.launchdarkly.com](https://apidocs.launchdarkly.com/ 'LaunchDarkly API Documentation') for our API documentation
|
|
21
32
|
- [blog.launchdarkly.com](https://blog.launchdarkly.com/ 'LaunchDarkly Blog Documentation') for the latest product updates
|
|
33
|
+
|
|
34
|
+
[react-sdk-ci-badge]: https://github.com/launchdarkly/js-core/actions/workflows/react.yml/badge.svg
|
|
35
|
+
[react-sdk-ci]: https://github.com/launchdarkly/js-core/actions/workflows/react.yml
|
|
36
|
+
[react-sdk-npm-badge]: https://img.shields.io/npm/v/@launchdarkly/react-sdk.svg?style=flat-square
|
|
37
|
+
[react-sdk-npm-link]: https://www.npmjs.com/package/@launchdarkly/react-sdk
|
|
38
|
+
[react-sdk-ghp-badge]: https://img.shields.io/static/v1?label=GitHub+Pages&message=API+reference&color=00add8
|
|
39
|
+
[react-sdk-ghp-link]: https://launchdarkly.github.io/js-core/packages/sdk/react/docs/
|
|
40
|
+
[react-sdk-dm-badge]: https://img.shields.io/npm/dm/@launchdarkly/react-sdk.svg?style=flat-square
|
|
41
|
+
[react-sdk-dt-badge]: https://img.shields.io/npm/dt/@launchdarkly/react-sdk.svg?style=flat-square
|
package/package.json
CHANGED