altimate-code 0.5.10 → 0.5.11

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 (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +8 -5
  3. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ 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.11] - 2026-03-25
9
+
10
+ ### Fixed
11
+
12
+ - **README changelog gap** — updated README to reflect releases v0.5.1 through v0.5.11; previous README only listed up to v0.5.0
13
+ - **npm publish transient 404s** — added retry logic (3 attempts with backoff) to `publish.ts` for concurrent scoped package publishes that hit npm registry race conditions
14
+
8
15
  ## [0.5.10] - 2026-03-24
9
16
 
10
17
  ### Added
package/README.md CHANGED
@@ -178,11 +178,14 @@ Contributions welcome — docs, SQL rules, warehouse connectors, and TUI improve
178
178
 
179
179
  ## Changelog
180
180
 
181
- - **v0.5.0** (March 2026) — smooth streaming mode, builtin skills via postinstall, `/configure-claude` and `/configure-codex` commands, warehouse auth hardening
182
- - **v0.4.9** (March 2026) — Snowflake auth overhaul (all auth methods), dbt tool regression fixes, parallel CI builds
183
- - **v0.4.2** (March 2026) — yolo mode, Python engine elimination (all-native TypeScript), tool consolidation, path sandboxing hardening, altimate-dbt CLI, unscoped npm package
184
- - **v0.4.0** (March 2026) — data visualization skill, 100+ tools, training system
185
- - **v0.3.x** — [See full changelog →](CHANGELOG.md)
181
+ - **v0.5.11** (March 2026) — `altimate-code check` CLI command, data-viz improvements, Codespaces support, session tracing, 52 CI test fix
182
+ - **v0.5.7** (March 2026) — impact analysis tool, training import, CI check command, `--max-turns` budget, LM Studio provider
183
+ - **v0.5.6** (March 2026) — skill CLI & TUI management, GitHub skill install, Snowflake Cortex provider
184
+ - **v0.5.5** (March 2026) — auto-discover MCP servers from VS Code, Cursor, Claude Code, Copilot configs
185
+ - **v0.5.3** (March 2026) bundle skills/dbt-tools in npm binary, marker guard CI
186
+ - **v0.5.1** (March 2026) — simplified 3-mode agents (builder/analyst/plan), SQL write access control
187
+ - **v0.5.0** (March 2026) — smooth streaming mode, builtin skills, `/configure-claude` and `/configure-codex` commands
188
+ - **v0.4.x and earlier** — [See full changelog →](CHANGELOG.md)
186
189
 
187
190
  ## License
188
191
 
package/package.json CHANGED
@@ -14,24 +14,24 @@
14
14
  "scripts": {
15
15
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
16
16
  },
17
- "version": "0.5.10",
17
+ "version": "0.5.11",
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
20
  "@altimateai/altimate-core": "^0.2.5"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@altimateai/altimate-code-linux-x64": "0.5.10",
24
- "@altimateai/altimate-code-windows-arm64": "0.5.10",
25
- "@altimateai/altimate-code-linux-arm64-musl": "0.5.10",
26
- "@altimateai/altimate-code-darwin-x64": "0.5.10",
27
- "@altimateai/altimate-code-windows-x64": "0.5.10",
28
- "@altimateai/altimate-code-linux-x64-musl": "0.5.10",
29
- "@altimateai/altimate-code-darwin-x64-baseline": "0.5.10",
30
- "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.10",
31
- "@altimateai/altimate-code-linux-x64-baseline": "0.5.10",
32
- "@altimateai/altimate-code-linux-arm64": "0.5.10",
33
- "@altimateai/altimate-code-darwin-arm64": "0.5.10",
34
- "@altimateai/altimate-code-windows-x64-baseline": "0.5.10"
23
+ "@altimateai/altimate-code-linux-arm64": "0.5.11",
24
+ "@altimateai/altimate-code-windows-x64": "0.5.11",
25
+ "@altimateai/altimate-code-windows-x64-baseline": "0.5.11",
26
+ "@altimateai/altimate-code-darwin-x64": "0.5.11",
27
+ "@altimateai/altimate-code-windows-arm64": "0.5.11",
28
+ "@altimateai/altimate-code-linux-x64-baseline": "0.5.11",
29
+ "@altimateai/altimate-code-linux-arm64-musl": "0.5.11",
30
+ "@altimateai/altimate-code-linux-x64-musl": "0.5.11",
31
+ "@altimateai/altimate-code-linux-x64": "0.5.11",
32
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.5.11",
33
+ "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.11",
34
+ "@altimateai/altimate-code-darwin-arm64": "0.5.11"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "pg": ">=8",