惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The GitHub Blog
The GitHub Blog
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
Vercel News
Vercel News
L
LangChain Blog
B
Blog RSS Feed
Y
Y Combinator Blog
IT之家
IT之家
H
Hackread – Cybersecurity News, Data Breaches, AI and More
GbyAI
GbyAI
V
V2EX
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
有赞技术团队
有赞技术团队
D
Docker
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
月光博客
月光博客

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
chore: tighten changelog unreleased detection · openclaw/...
gumadeiras · 2026-04-25 · via Recent Commits to openclaw:main

@@ -14,7 +14,13 @@ const lines = original.split("\n");

1414

const prPattern = new RegExp(`(?:\\(#${pr}\\)|openclaw#${pr})`, "i");

15151616

function findActiveSectionIndex(arr) {

17-

return arr.findIndex((line) => line.trim() === "## Unreleased");

17+

const versionUnreleasedIndex = arr.findIndex((line) =>

18+

/^##\s+.+\(\s*unreleased\s*\)\s*$/i.test(line.trim()),

19+

);

20+

if (versionUnreleasedIndex !== -1) {

21+

return versionUnreleasedIndex;

22+

}

23+

return arr.findIndex((line) => line.trim().toLowerCase() === "## unreleased");

1824

}

19252026

function findSectionEnd(arr, start) {

@@ -96,15 +102,15 @@ function sectionTailInsertIndex(arr, subsectionIndex) {

96102

return insertAt;

97103

}

9810499-

ensureActiveSection(lines);

105+

const activeHeading = lines[ensureActiveSection(lines)]?.trim() || "## Unreleased";

100106101107

const moved = [];

102108

for (let i = 0; i < lines.length; i += 1) {

103109

if (!prPattern.test(lines[i])) {

104110

continue;

105111

}

106112

const ctx = contextFor(lines, i);

107-

if (ctx.major === "## Unreleased") {

113+

if (ctx.major === activeHeading) {

108114

continue;

109115

}

110116

moved.push({

@@ -221,6 +227,28 @@ FNR == NR {

221227

file_line_count = FNR

222228

}

223229

END {

230+

active_release_line = 0

231+

bare_release_line = 0

232+

active_release_name = "unreleased"

233+

for (i = 1; i <= file_line_count; i++) {

234+

if (changelog[i] !~ /^## /) {

235+

continue

236+

}

237+

heading = tolower(changelog[i])

238+

if (heading ~ /^##[[:space:]]+.+\([[:space:]]*unreleased[[:space:]]*\)[[:space:]]*$/) {

239+

active_release_line = i

240+

active_release_name = changelog[i]

241+

break

242+

}

243+

if (heading == "## unreleased" && bare_release_line == 0) {

244+

bare_release_line = i

245+

}

246+

}

247+

if (active_release_line == 0 && bare_release_line != 0) {

248+

active_release_line = bare_release_line

249+

active_release_name = changelog[bare_release_line]

250+

}

251+224252

for (idx = 1; idx <= pr_added_count; idx++) {

225253

entry_line = pr_added_lines[idx]

226254

release_line = 0

@@ -235,8 +263,8 @@ END {

235263

break

236264

}

237265

}

238-

if (release_line == 0 || changelog[release_line] != "## Unreleased") {

239-

printf "CHANGELOG.md PR-linked entry must be in ## Unreleased: line %d: %s\n", entry_line, pr_added_text[entry_line]

266+

if (release_line == 0 || release_line != active_release_line) {

267+

printf "CHANGELOG.md PR-linked entry must be in %s: line %d: %s\n", active_release_name, entry_line, pr_added_text[entry_line]

240268

issue_count++

241269

continue

242270

}