docs: add changelog entries for faux provider and ModelRegistry

This commit is contained in:
Mario Zechner
2026-03-29 21:10:36 +02:00
parent 350d17d1f3
commit 182ebe5a95
2 changed files with 8 additions and 0 deletions

View File

@@ -2,6 +2,10 @@
## [Unreleased]
### Added
- Added opt-in faux provider helpers for deterministic tests and scripted demos: `registerFauxProvider()`, `fauxAssistantMessage()`, `fauxText()`, `fauxThinking()`, and `fauxToolCall()`.
## [0.63.2] - 2026-03-29
## [0.63.1] - 2026-03-27

View File

@@ -2,6 +2,10 @@
## [Unreleased]
### Breaking Changes
- `ModelRegistry` no longer has a public constructor. SDK callers and tests must use `ModelRegistry.create(authStorage, modelsJsonPath?)` for file-backed registries or `ModelRegistry.inMemory(authStorage)` for built-in-only registries. Direct `new ModelRegistry(...)` calls no longer compile.
### Added
- Added `ToolDefinition.prepareArguments` hook to prepare raw tool call arguments before schema validation, enabling compatibility shims for resumed sessions with outdated tool schemas