diff --git a/CHANGELOG.md b/CHANGELOG.md index d12720418..51b83d04d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,5 @@ # Changelog -## 2026.1.12 - -### Changes -- Deps: update pi-agent-core/pi-ai/pi-coding-agent/pi-tui and refresh the pi-ai patch. -- Dev: bump @types/node. - ## 2026.1.11 ### Highlights @@ -15,6 +9,8 @@ - Agents: automatic pre-compaction memory flush turn to store durable memories before compaction. ### Changes +- Deps: update pi-agent-core/pi-ai/pi-coding-agent/pi-tui and refresh the pi-ai patch. +- Dev: bump @types/node. - macOS: add wizard debug CLI and share wizard parsing helpers. - CLI/Onboarding: simplify MiniMax auth choice to a single M2.1 option. - CLI: configure section selection now loops until Continue. diff --git a/src/providers/google-shared.test.ts b/src/providers/google-shared.test.ts index b75d4968c..585aeded2 100644 --- a/src/providers/google-shared.test.ts +++ b/src/providers/google-shared.test.ts @@ -560,7 +560,8 @@ describe("google-shared convertMessages", () => { const contents = convertMessages(model, context); const parts = contents.flatMap((content) => content.parts ?? []); const toolCallPart = parts.find( - (part) => typeof part === "object" && part !== null && "functionCall" in part, + (part) => + typeof part === "object" && part !== null && "functionCall" in part, ); const toolResponsePart = parts.find( (part) =>