Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare 2.20.2 release #50

Merged
merged 37 commits into from
Sep 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
d7d3e4d
Initial commit
yusinto Dec 17, 2019
ad4e40b
Delete extraneous files from lib.
yusinto Dec 17, 2019
11cbc6e
Merge branch 'master' into yus/include-package-version
yusinto Dec 17, 2019
a8da84e
Update initLDClient.test.ts
yusinto Dec 17, 2019
400bf91
Update withLDProvider.tsx (#18)
bwoskow-ld Feb 7, 2020
6b6dd3c
update JS SDK dependency to 2.16.3
eli-darkly Feb 10, 2020
c2b165d
merge from public after release
LaunchDarklyCI Feb 11, 2020
06740cb
use JS SDK 2.17.0
eli-darkly Feb 14, 2020
6fe7dc8
improve tests to clarify which options we're passing in and which one…
eli-darkly Feb 14, 2020
8ea62ee
Merge branch 'master' into yus/include-package-version
eli-darkly Feb 14, 2020
5f571b2
set wrapperName to react-client-sdk
eli-darkly Feb 14, 2020
861f3a5
lint
eli-darkly Feb 14, 2020
643cc66
Merge pull request #14 from launchdarkly/yus/include-package-version
eli-darkly Feb 14, 2020
0120afa
Merge branch 'master' of github.com:launchdarkly/react-client-sdk
eli-darkly Feb 20, 2020
5139887
Update withLDProvider.test.tsx
yusinto Mar 2, 2020
b9d12a4
Merge pull request #20 from launchdarkly/yus/ch67846/remove-test-only…
yusinto Mar 2, 2020
79fae1b
update JS SDK to 2.17.5 + a few dev dependency bumps (#21)
eli-darkly May 19, 2020
2712355
merge from public after release
LaunchDarklyCI May 19, 2020
8bbb2fa
downgrade typescript to 3.8.3 (#22)
bwoskow-ld May 27, 2020
e8e9eff
merge from public after release
LaunchDarklyCI May 27, 2020
aff2ffc
[Fixes for] Expose LDProvider as a standalone component (#31)
Morton Jun 12, 2020
1bb5eb0
Merge branch 'contrib' of github.com:launchdarkly/react-client-sdk
bwoskow-ld Jun 12, 2020
8b557ab
remove startsWith usage (#23)
bwoskow-ld Jul 13, 2020
70c3b3e
Fix the broken build (#24)
bwoskow-ld Jul 14, 2020
6db0f08
Expose ld provider (#40)
bezreyhan Jul 15, 2020
352a155
Merge branch 'contrib' of github.com:launchdarkly/react-client-sdk
bwoskow-ld Jul 15, 2020
9e7b06e
merge from public after release
LaunchDarklyCI Jul 15, 2020
919f25b
update to JS SDK 2.18.0 (adds disableSyncEventPost) (#25)
eli-darkly Jul 17, 2020
c8ca3e3
merge from public after release
LaunchDarklyCI Jul 17, 2020
2244420
Merge branch 'master' of github.com:launchdarkly/react-client-sdk int…
bwoskow-ld Aug 13, 2020
65627a6
45 fix providers to respect subscribed flags (#46)
clayembry Aug 13, 2020
ab0aa0d
Merge branch 'contrib' of github.com:launchdarkly/react-client-sdk
bwoskow-ld Aug 13, 2020
5df4e95
targetflags simplified logic (#26)
bwoskow-ld Aug 19, 2020
c724bbc
merge from public after release
LaunchDarklyCI Aug 19, 2020
95a8f54
remove client-side ids from examples (#27)
bwoskow-ld Sep 2, 2020
87d390a
update JS SDK to 2.18.1
eli-darkly Sep 14, 2020
099c4e8
Merge pull request #28 from launchdarkly/eb/ch89575/update-js-sdk
eli-darkly Sep 14, 2020
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 examples/async-provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ yarn
Follow these steps to run the example app:

* In client/index.js, set `clientSideID` to your own Client-side ID. You can find
this in your ld portal under Account settings / Projects.
this in your LaunchDarkly portal under Account settings / Projects.

* Create a flag called `dev-test-flag` in your project. Make sure you
make the flag available to the client-side SDK.
Expand Down
4 changes: 3 additions & 1 deletion examples/async-provider/src/client/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import { asyncWithLDProvider } from 'launchdarkly-react-client-sdk';
import App from '../universal/app';

(async () => {
const LDProvider = await asyncWithLDProvider({ clientSideID: '59b2b2596d1a250b1c78baa4' });
// Set clientSideID to your own Client-side ID. You can find this in
// your LaunchDarkly portal under Account settings / Projects
const LDProvider = await asyncWithLDProvider({ clientSideID: 'YOUR_CLIENT_SIDE_ID_HERE' });

render(
<BrowserRouter>
Expand Down
2 changes: 1 addition & 1 deletion examples/hoc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ yarn
Follow these steps to run the example app:

* In app.js, set `clientSideID` to your own Client-side ID. You can find
this in your ld portal under Account settings / Projects.
this in your LaunchDarkly portal under Account settings / Projects.

* Create a flag called `dev-test-flag` in your project. Make sure you
make the flag available to the client-side SDK.
Expand Down
4 changes: 2 additions & 2 deletions examples/hoc/src/universal/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ const App = () => (
);

// Set clientSideID to your own Client-side ID. You can find this in
// your ld portal under Account settings / Projects
export default withLDProvider({ clientSideID: '59b2b2596d1a250b1c78baa4' })(App);
// your LaunchDarkly portal under Account settings / Projects
export default withLDProvider({ clientSideID: 'YOUR_CLIENT_SIDE_ID_HERE' })(App);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"typescript": "~3.8.3"
},
"dependencies": {
"launchdarkly-js-client-sdk": "2.18.0",
"launchdarkly-js-client-sdk": "2.18.1",
"lodash.camelcase": "^4.3.0",
"uuid": "^3.3.2"
},
Expand Down