Skip to content

Commit ec0f85e

Browse files
committed
Add 545-551
1 parent d516f2c commit ec0f85e

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 2.1.3
4+
5+
- Add 545-551
6+
37
## 2.1.2
48

59
- Add 544

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-error-decoder",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "⚛︎ Decode React minified error message",
55
"keywords": [
66
"react",

src/test.ts.snapshot

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ exports[`react-error-decoder > updated snapshot 1`] = `
468468
"479": "Cannot update optimistic state while rendering.",
469469
"480": "File/Blob fields are not yet supported in progressive forms. Will fallback to client hydration.",
470470
"481": "Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.",
471-
"482": "async/await is not yet supported in Client Components, only Server Components. This error is often caused by accidentally adding \`'use client'\` to a module that was originally written for the server.",
471+
"482": "An unknown Component is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding \`'use client'\` to a module that was originally written for the server.",
472472
"483": "Hooks are not supported inside an async component. This error is often caused by accidentally adding \`'use client'\` to a module that was originally written for the server.",
473473
"484": "A Server Component was postponed. The reason is omitted in production builds to avoid leaking sensitive details.",
474474
"485": "Cannot update form state while rendering.",
@@ -530,6 +530,13 @@ exports[`react-error-decoder > updated snapshot 1`] = `
530530
"541": "Compared context values must be arrays",
531531
"542": "Suspense Exception: This is not a real error! It's an implementation detail of \`useActionState\` to interrupt the current render. You must either rethrow it immediately, or move the \`useActionState\` call outside of the \`try/catch\` block. Capturing without rethrowing will lead to unexpected behavior.\\n\\nTo handle async errors, wrap your component in an error boundary.",
532532
"543": "Expected a ResourceEffectUpdate to be pushed together with ResourceEffectIdentity. This is a bug in React.",
533-
"544": "Found a pair with an auto name. This is a bug in React."
533+
"544": "Found a pair with an auto name. This is a bug in React.",
534+
"545": "The %s tag may only be rendered once.",
535+
"546": "useEffect CRUD overload is not enabled in this build of React.",
536+
"547": "startGesture cannot be called during server rendering.",
537+
"548": "Finished rendering the gesture lane but there were no pending gestures. React should not have started a render in this case. This is a bug in React.",
538+
"549": "Cannot start a gesture with a disconnected AnimationTimeline.",
539+
"550": "useSwipeTransition is not yet supported in react-art.",
540+
"551": "useSwipeTransition is not yet supported in React Native."
534541
}
535542
`;

0 commit comments

Comments
 (0)