Skip to content

Commit 6c0b952

Browse files
merging all conflicts
2 parents b048803 + a1cc2ab commit 6c0b952

File tree

4 files changed

+1512
-113
lines changed

4 files changed

+1512
-113
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,6 @@ public/rss.xml
4343
# claude local settings
4444
.claude/*.local.*
4545
.claude/react/
46+
47+
# worktrees
48+
.worktrees/

src/content/blog/2025/12/11/denial-of-service-and-source-code-exposure-in-react-server-components.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,15 @@ _Updated January 26, 2026._
104104

105105
## 高深刻度:複数のサービス拒否攻撃 {/*high-severity-multiple-denial-of-service*/}
106106

107+
<<<<<<< HEAD
107108
**CVE**: [CVE-2026-23864](https://www.cve.org/CVERecord?id=CVE-2026-23864)
108109
**Base Score**: 7.5 (High)
109110
**Date**: January 26, 2025
111+
=======
112+
**CVEs:** [CVE-2026-23864](https://www.cve.org/CVERecord?id=CVE-2026-23864)
113+
**Base Score:** 7.5 (High)
114+
**Date**: January 26, 2026
115+
>>>>>>> a1cc2ab4bf06b530f86a7049923c402baf86aca1
110116
111117
セキュリティ研究者により、React Server Components に追加の DoS 脆弱性が残っていることが発見されました。
112118

src/content/reference/react/Activity.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,13 @@ Activity バウンダリが <CodeStep step={1}>hidden</CodeStep> になってい
4747

4848
#### 注意点 {/*caveats*/}
4949

50+
<<<<<<< HEAD
5051
- [`ViewTransition`](/reference/react/ViewTransition) の内部で Activity がレンダーされ、[`startTransition`](/reference/react/startTransition) によって引き起こされた更新の結果として表示されるようになると、`ViewTransition``enter` アニメーションが作動します。非表示になると、`exit` アニメーションが作動します。
5152
- テキストのみをレンダーする Activity は、非表示のテキストをレンダーするのではなく、何もレンダーしません。これは、可視性の変化を適用するための対応する DOM 要素がないためです。例えば、`<Activity mode="hidden"><ComponentThatJustReturnsText /></Activity>` は、`const ComponentThatJustReturnsText = () => "Hello, World!"` の場合に DOM に何も出力しません。
53+
=======
54+
- If an Activity is rendered inside of a [ViewTransition](/reference/react/ViewTransition), and it becomes visible as a result of an update caused by [startTransition](/reference/react/startTransition), it will activate the ViewTransition's `enter` animation. If it becomes hidden, it will activate its `exit` animation.
55+
- A *hidden* Activity that just renders text will not render anything rather than rendering hidden text, because there’s no corresponding DOM element to apply visibility changes to. For example, `<Activity mode="hidden"><ComponentThatJustReturnsText /></Activity>` will not produce any output in the DOM for `const ComponentThatJustReturnsText = () => "Hello, World!"`. `<Activity mode="visible"><ComponentThatJustReturnsText /></Activity>` will render visible text.
56+
>>>>>>> a1cc2ab4bf06b530f86a7049923c402baf86aca1
5257
5358
---
5459

0 commit comments

Comments
 (0)