@altimateai/altimate-code 0.5.1 → 0.5.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -5,6 +5,29 @@ 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.5.2] - 2026-03-19
9
+
10
+ ### Added
11
+
12
+ - Trace history dialog (`/trace` command) — browse, search, and open past session traces from the TUI (#297)
13
+ - Docs showcase examples with screenshots (#292)
14
+
15
+ ### Fixed
16
+
17
+ - TUI trace dialog now respects custom `tracing.dir` config — previously always used default directory (#307)
18
+ - WebFetch `clearTimeout` leak — DNS failures no longer leak timer handles (#307)
19
+ - WebFetch User-Agent strategy inverted to honest-bot-first — reduces 403 blocks from TLS fingerprint mismatch (#303)
20
+ - Snowflake SDK stdout log noise suppressed in TUI via `additionalLogToConsole: false` (#305, #301)
21
+ - `cleanTitle` fallback in trace dialog no longer returns empty string (#307)
22
+ - Error logging added to `openTraceInBrowser` for debuggability (#307)
23
+ - `altimate_change` markers added to `webfetch.ts` for upstream merge compatibility (#307)
24
+
25
+ ### Changed
26
+
27
+ - Snowflake SDK minimum version bumped to `^2.0.3` for log suppression support (#305)
28
+ - Removed brew from docs and README (#299)
29
+ - Fixed README typo (`altimate` → `altimate-code`) (#293)
30
+
8
31
  ## [0.5.1] - 2026-03-19
9
32
 
10
33
  ### Added
package/package.json CHANGED
@@ -7,24 +7,24 @@
7
7
  "scripts": {
8
8
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
9
9
  },
10
- "version": "0.5.1",
10
+ "version": "0.5.2",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
13
  "@altimateai/altimate-core": "^0.2.5"
14
14
  },
15
15
  "optionalDependencies": {
16
- "@altimateai/altimate-code-linux-x64": "0.5.1",
17
- "@altimateai/altimate-code-windows-arm64": "0.5.1",
18
- "@altimateai/altimate-code-linux-arm64-musl": "0.5.1",
19
- "@altimateai/altimate-code-darwin-x64": "0.5.1",
20
- "@altimateai/altimate-code-windows-x64": "0.5.1",
21
- "@altimateai/altimate-code-linux-x64-musl": "0.5.1",
22
- "@altimateai/altimate-code-darwin-x64-baseline": "0.5.1",
23
- "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.1",
24
- "@altimateai/altimate-code-linux-x64-baseline": "0.5.1",
25
- "@altimateai/altimate-code-linux-arm64": "0.5.1",
26
- "@altimateai/altimate-code-darwin-arm64": "0.5.1",
27
- "@altimateai/altimate-code-windows-x64-baseline": "0.5.1"
16
+ "@altimateai/altimate-code-linux-x64": "0.5.2",
17
+ "@altimateai/altimate-code-windows-arm64": "0.5.2",
18
+ "@altimateai/altimate-code-linux-arm64-musl": "0.5.2",
19
+ "@altimateai/altimate-code-darwin-x64": "0.5.2",
20
+ "@altimateai/altimate-code-windows-x64": "0.5.2",
21
+ "@altimateai/altimate-code-linux-x64-musl": "0.5.2",
22
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.5.2",
23
+ "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.2",
24
+ "@altimateai/altimate-code-linux-x64-baseline": "0.5.2",
25
+ "@altimateai/altimate-code-linux-arm64": "0.5.2",
26
+ "@altimateai/altimate-code-darwin-arm64": "0.5.2",
27
+ "@altimateai/altimate-code-windows-x64-baseline": "0.5.2"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "pg": ">=8",