From f62105d56c597af9ceceb1fd4db2f9eae7edd616 Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot Date: Tue, 28 May 2024 20:20:19 +0000 Subject: [PATCH] Releasing version 3.3.2 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35a17d4..1e18402 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ 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/main/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). +## [3.3.2] - 2024-05-28 +### Fixed: +- Set esbuild to target ES2015 aka ES6 so the build is backwards compatible. This is needed because `rollup-plugin-esbuild` [v6](https://github.com/egoist/rollup-plugin-esbuild/releases/tag/v6.0.0) now defaults to es2020 by default and no longer respects tsconfig.json's target. Fixes this [issue](https://github.com/launchdarkly/react-client-sdk/issues/283#issuecomment-2133796297) in #283. + ## [3.3.1] - 2024-05-28 ### Fixed: - Fixed a bug introduced after the init timeout change. The ldClient object was omitted from provider state, causing the useLDClient hook to return undefined. diff --git a/package.json b/package.json index 60d3552..c955639 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "launchdarkly-react-client-sdk", - "version": "3.3.1", + "version": "3.3.2", "description": "LaunchDarkly SDK for React", "author": "LaunchDarkly ", "license": "Apache-2.0",