Skip to content

Commit

Permalink
[Security] Upgrade next to 14.2.3 (#1369)
Browse files Browse the repository at this point in the history
* Upgrade next to 14.2.3

* Update lock file

* Add Suspense

* Keep js tests version
  • Loading branch information
anafilipadealmeida committed May 17, 2024
1 parent 2b7288d commit c9ecb28
Show file tree
Hide file tree
Showing 6 changed files with 1,464 additions and 146 deletions.
6 changes: 3 additions & 3 deletions tests/js/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"graphql-request": "6.1.0",
"ky": "0.33.3",
"launchdarkly-react-client-sdk": "3.0.8",
"next": "14.0.3",
"next": "14.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-syntax-highlighter": "15.5.0",
Expand Down
2 changes: 1 addition & 1 deletion ui/apps/dev-server-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"graphql-request": "6.1.0",
"lodash.debounce": "4.0.8",
"monaco-editor": "0.34.1",
"next": "14.0.3",
"next": "14.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.5",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use client';

import { Suspense } from 'react';
import { useRouter, useSearchParams } from 'next/navigation';

import SlideOver from '@/components/SlideOver';
Expand All @@ -25,4 +26,12 @@ const StreamSlideOver = () => {
);
};

export default StreamSlideOver;
const StreamWrapper = () => {
return (
<Suspense>
<StreamSlideOver />
</Suspense>
);
};

export default StreamWrapper;
2 changes: 1 addition & 1 deletion ui/packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dayjs": "1.11.7",
"framer-motion": "10.16.4",
"monaco-editor": "0.34.1",
"next": "14.0.3",
"next": "14.2.3",
"react": "18.2.0",
"react-day-picker": "8.10.0",
"react-dom": "18.2.0",
Expand Down
Loading

0 comments on commit c9ecb28

Please sign in to comment.