We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9da8e9 commit 67a8d85Copy full SHA for 67a8d85
apps/changelog/package.json
@@ -21,19 +21,19 @@
21
"@auth/prisma-adapter": "^1.2.0",
22
"@google-cloud/storage": "^7.7.0",
23
"@prisma/client": "^5.8.1",
24
- "@radix-ui/react-icons": "^1.3.0",
25
- "@radix-ui/react-toolbar": "^1.0.4",
26
- "@radix-ui/themes": "^2.0.3",
+ "@radix-ui/react-icons": "^1.3.2",
+ "@radix-ui/react-toolbar": "^1.1.0",
+ "@radix-ui/themes": "^3.1.3",
27
"@sentry/nextjs": "8.36.0",
28
"@spotlightjs/spotlight": "^2.1.1",
29
- "next": "15.0.0-rc.1",
+ "next": "15.0.3",
30
"next-auth": "^4.24.5",
31
"next-mdx-remote": "^4.4.1",
32
"nextjs-toploader": "^1.6.6",
33
"nuqs": "^1.17.7",
34
"prism-sentry": "^1.0.2",
35
- "react": "19.0.0-rc-cd22717c-20241013",
36
- "react-dom": "19.0.0-rc-cd22717c-20241013",
+ "react": "rc",
+ "react-dom": "rc",
37
"react-select": "^5.7.3",
38
"react-textarea-autosize": "^8.5.3",
39
"rehype-prism-plus": "^1.6.3",
@@ -66,4 +66,4 @@
66
"@types/react": "npm:[email protected]",
67
"@types/react-dom": "npm:[email protected]"
68
}
69
-}
+}
package.json
@@ -50,12 +50,14 @@
50
"@radix-ui/react-icons": "^1.3.2",
51
"@radix-ui/react-tabs": "^1.1.1",
52
"@radix-ui/react-toolbar": "^1.1.0",
53
- "@radix-ui/themes": "^3.1.3",
54
"@radix-ui/react-tooltip": "^1.1.4",
55
"@sentry-internal/global-search": "^1.1.0",
56
57
+ "@types/dompurify": "^3.0.5",
58
"@types/mdx": "^2.0.9",
59
"algoliasearch": "^4.23.3",
60
+ "dompurify": "3.1.6",
61
"esbuild": "^0.19.8",
62
"framer-motion": "^10.12.16",
63
"gray-matter": "^4.0.3",
@@ -131,4 +133,4 @@
131
133
"node": "20.11.0",
132
134
"yarn": "1.22.21"
135
136
scripts/no-vercel-json-redirects.mjs
@@ -1,4 +1,5 @@
1
import {readFileSync} from 'fs';
2
+
3
const vercelConfig = JSON.parse(readFileSync('./vercel.json', 'utf8'));
4
5
if (vercelConfig.redirects && vercelConfig.redirects.length > 0) {
src/components/search/index.tsx
@@ -8,7 +8,7 @@ import {
8
SentryGlobalSearch,
9
standardSDKSlug,
10
} from '@sentry-internal/global-search';
11
-import DOMPurify from 'dompurify';
+import * as DOMPurify from 'dompurify';
12
import Link from 'next/link';
13
import {usePathname, useRouter} from 'next/navigation';
14
import algoliaInsights from 'search-insights';
src/mdx-deflist.ts
@@ -36,8 +36,8 @@ const isdeflist = (node: Node, i: number, parent: Parent) =>
export default function deflist(): Transformer {
return tree => {
- visit(tree, ['paragraph'], (node, i, parent: Parent) => {
40
- const isdef = isdeflist(node, i!, parent as Parent);
+ visit(tree, 'paragraph', (node: Node, i, parent: Parent) => {
+ const isdef = isdeflist(node, i!, parent);
41
if (!isdef) {
42
return;
43
src/remark-component-spacing.ts
@@ -24,8 +24,8 @@ const remarkComponentSpacing: Plugin<void[], Root> = function () {
node.type === 'mdxJsxTextElement' &&
affectedComponents.includes(node.name ?? '')
) {
- componentNode = node;
- componentNodeParent = parent;
+ componentNode = node as Node;
+ componentNodeParent = parent as Node;
});
};
yarn.lock
0 commit comments