@altimateai/altimate-code 0.8.9 → 0.8.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.8.10] - 2026-06-22
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **The daily date no longer invalidates the cached system prompt across midnight.** The volatile "Today's date" line was the first entry in the cache-controlled system prefix, so a session left open across midnight within the cache TTL dropped its entire cached system prompt and paid to rebuild it. The date now rides the trailing user message — off the long-lived system-prefix cache and onto the rolling per-turn breakpoint that is rewritten every turn anyway — so the cached system bytes stay date-invariant and the agent still receives today's date each turn. (#950, fixes #949)
|
|
13
|
+
|
|
14
|
+
### Internal
|
|
15
|
+
|
|
16
|
+
- **The Windows installer Pester suite is deterministic on the updated `windows-latest` runner.** The harness now applies `PROCESSOR_*` overrides inside the child `pwsh` session instead of relying on Process-scope inheritance, which the new runner image re-initialized for the loader-managed `PROCESSOR_ARCHITECTURE` (it arrived blank → a spurious `Unsupported OS/Arch` failure). Test-only: the shipped `install.ps1` and the v0.8.9 binaries are unaffected — real users always have a populated `PROCESSOR_ARCHITECTURE`. (#959, fixes #958)
|
|
17
|
+
- **Added a v0.8.10 adversarial + coverage suite** that closes the prior test gap on the date fix — it exercises the trailing-user-message path (date reaches the model, only the last user turn is tagged, no accumulation across turns, survives an all-ignored user turn) plus a static regression guard on the Windows installer harness. (#950, #959)
|
|
18
|
+
|
|
8
19
|
## [0.8.9] - 2026-06-19
|
|
9
20
|
|
|
10
21
|
### Fixed
|
package/package.json
CHANGED
|
@@ -7,20 +7,20 @@
|
|
|
7
7
|
"scripts": {
|
|
8
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
9
9
|
},
|
|
10
|
-
"version": "0.8.
|
|
10
|
+
"version": "0.8.10",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@altimateai/altimate-core": "0.5.1"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@altimateai/altimate-code-linux-x64-baseline": "0.8.
|
|
17
|
-
"@altimateai/altimate-code-windows-x64": "0.8.
|
|
18
|
-
"@altimateai/altimate-code-linux-x64": "0.8.
|
|
19
|
-
"@altimateai/altimate-code-darwin-x64": "0.8.
|
|
20
|
-
"@altimateai/altimate-code-darwin-x64-baseline": "0.8.
|
|
21
|
-
"@altimateai/altimate-code-darwin-arm64": "0.8.
|
|
22
|
-
"@altimateai/altimate-code-windows-x64-baseline": "0.8.
|
|
23
|
-
"@altimateai/altimate-code-linux-arm64": "0.8.
|
|
16
|
+
"@altimateai/altimate-code-linux-x64-baseline": "0.8.10",
|
|
17
|
+
"@altimateai/altimate-code-windows-x64": "0.8.10",
|
|
18
|
+
"@altimateai/altimate-code-linux-x64": "0.8.10",
|
|
19
|
+
"@altimateai/altimate-code-darwin-x64": "0.8.10",
|
|
20
|
+
"@altimateai/altimate-code-darwin-x64-baseline": "0.8.10",
|
|
21
|
+
"@altimateai/altimate-code-darwin-arm64": "0.8.10",
|
|
22
|
+
"@altimateai/altimate-code-windows-x64-baseline": "0.8.10",
|
|
23
|
+
"@altimateai/altimate-code-linux-arm64": "0.8.10"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"pg": ">=8",
|