altimate-code 0.5.6 → 0.5.7

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 +25 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -5,6 +5,31 @@ 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.7] - 2026-03-22
9
+
10
+ ### Added
11
+
12
+ - **Impact analysis tool** — analyze downstream blast radius of dbt model/column changes across the DAG with severity classification (SAFE/LOW/MEDIUM/HIGH) and actionable recommendations (#350)
13
+ - **Training import tool** — bulk import training entries from markdown style guides, glossaries, and playbooks with dry-run preview and capacity management (#350)
14
+ - **CI check command** — `/ci-check` template for pre-merge SQL validation that analyzes changed files, checks dbt integrity, and generates CI-friendly reports (#350)
15
+ - **`--max-turns` budget limit** — CLI option to cap agent steps for CI/enterprise governance (#350)
16
+ - **LM Studio provider** — local Qwen model support via LM Studio (#340)
17
+ - **Improved onboarding** — first-time user hints on home screen, beginner-focused tips, practical quickstart examples (#350)
18
+ - **Expanded `/discover`** — detects additional cloud warehouse credentials (Snowflake, BigQuery, PostgreSQL, Databricks, Redshift) (#350)
19
+ - **Automated test discovery** — `/test-discovery` command for hourly test generation with critic validation (#364, #365, #366, #367)
20
+
21
+ ### Fixed
22
+
23
+ - Yolo mode now respects explicit deny rules from session config instead of auto-approving everything (#350)
24
+ - Training limits increased from 20→50 entries per kind and 16KB→48KB budget for enterprise teams (#350)
25
+
26
+ ### Testing
27
+
28
+ - E2E tests for trace viewer with adversarial cases (#353)
29
+ - Bash tool PATH injection tests (#366)
30
+ - `fn()` wrapper and `skillSource` trust classification tests (#367)
31
+ - `AsyncQueue`/`work()` utility and `State.invalidate` coverage (#364)
32
+
8
33
  ## [0.5.6] - 2026-03-22
9
34
 
10
35
  ### Added
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.6",
17
+ "version": "0.5.7",
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.6",
24
- "@altimateai/altimate-code-windows-arm64": "0.5.6",
25
- "@altimateai/altimate-code-linux-arm64-musl": "0.5.6",
26
- "@altimateai/altimate-code-darwin-x64": "0.5.6",
27
- "@altimateai/altimate-code-windows-x64": "0.5.6",
28
- "@altimateai/altimate-code-linux-x64-musl": "0.5.6",
29
- "@altimateai/altimate-code-darwin-x64-baseline": "0.5.6",
30
- "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.6",
31
- "@altimateai/altimate-code-linux-x64-baseline": "0.5.6",
32
- "@altimateai/altimate-code-linux-arm64": "0.5.6",
33
- "@altimateai/altimate-code-darwin-arm64": "0.5.6",
34
- "@altimateai/altimate-code-windows-x64-baseline": "0.5.6"
23
+ "@altimateai/altimate-code-linux-x64": "0.5.7",
24
+ "@altimateai/altimate-code-windows-arm64": "0.5.7",
25
+ "@altimateai/altimate-code-linux-arm64-musl": "0.5.7",
26
+ "@altimateai/altimate-code-darwin-x64": "0.5.7",
27
+ "@altimateai/altimate-code-windows-x64": "0.5.7",
28
+ "@altimateai/altimate-code-linux-x64-musl": "0.5.7",
29
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.5.7",
30
+ "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.7",
31
+ "@altimateai/altimate-code-linux-x64-baseline": "0.5.7",
32
+ "@altimateai/altimate-code-linux-arm64": "0.5.7",
33
+ "@altimateai/altimate-code-darwin-arm64": "0.5.7",
34
+ "@altimateai/altimate-code-windows-x64-baseline": "0.5.7"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "pg": ">=8",