@altimateai/altimate-code 0.3.0 → 0.3.1

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 CHANGED
@@ -5,6 +5,25 @@ 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.3.1] - 2026-03-15
9
+
10
+ ### Fixed
11
+
12
+ - Database migration crash when upgrading from v0.2.x — backfill NULL migration names for Drizzle beta.16 compatibility (#161)
13
+ - Install banner not visible during `npm install` — moved output from stdout to stderr (#161)
14
+ - Verbose changelog dump removed from CLI startup (#161)
15
+ - `altimate upgrade` detection broken — `method()` and `latest()` referenced upstream `opencode-ai` package names instead of `@altimateai/altimate-code` (#161)
16
+ - Brew formula detection and upgrade referencing `opencode` instead of `altimate-code` (#161)
17
+ - Homebrew tap updated to v0.3.0 (was stuck at 0.1.4 due to expired `HOMEBREW_TAP_TOKEN`) (#161)
18
+ - `.opencode/memory/` references in docs updated to `.altimate-code/memory/` (#161)
19
+ - Stale `@opencode-ai/plugin` reference in CONTRIBUTING.md (#161)
20
+
21
+ ### Changed
22
+
23
+ - CI now uses path-based change detection to skip unaffected jobs (saves ~100s on non-TS changes) (#161)
24
+ - Release workflow gated on test job passing (#157)
25
+ - Upstream merge restricted to published GitHub releases only (#150)
26
+
8
27
  ## [0.3.0] - 2026-03-15
9
28
 
10
29
  ### Added
package/package.json CHANGED
@@ -7,20 +7,20 @@
7
7
  "scripts": {
8
8
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
9
9
  },
10
- "version": "v0.3.0",
10
+ "version": "v0.3.1",
11
11
  "license": "MIT",
12
12
  "optionalDependencies": {
13
- "@altimateai/altimate-code-linux-x64": "v0.3.0",
14
- "@altimateai/altimate-code-windows-arm64": "v0.3.0",
15
- "@altimateai/altimate-code-linux-arm64-musl": "v0.3.0",
16
- "@altimateai/altimate-code-darwin-x64": "v0.3.0",
17
- "@altimateai/altimate-code-windows-x64": "v0.3.0",
18
- "@altimateai/altimate-code-linux-x64-musl": "v0.3.0",
19
- "@altimateai/altimate-code-darwin-x64-baseline": "v0.3.0",
20
- "@altimateai/altimate-code-linux-x64-baseline-musl": "v0.3.0",
21
- "@altimateai/altimate-code-linux-x64-baseline": "v0.3.0",
22
- "@altimateai/altimate-code-linux-arm64": "v0.3.0",
23
- "@altimateai/altimate-code-darwin-arm64": "v0.3.0",
24
- "@altimateai/altimate-code-windows-x64-baseline": "v0.3.0"
13
+ "@altimateai/altimate-code-linux-x64": "v0.3.1",
14
+ "@altimateai/altimate-code-windows-arm64": "v0.3.1",
15
+ "@altimateai/altimate-code-linux-arm64-musl": "v0.3.1",
16
+ "@altimateai/altimate-code-darwin-x64": "v0.3.1",
17
+ "@altimateai/altimate-code-windows-x64": "v0.3.1",
18
+ "@altimateai/altimate-code-linux-x64-musl": "v0.3.1",
19
+ "@altimateai/altimate-code-darwin-x64-baseline": "v0.3.1",
20
+ "@altimateai/altimate-code-linux-x64-baseline-musl": "v0.3.1",
21
+ "@altimateai/altimate-code-linux-x64-baseline": "v0.3.1",
22
+ "@altimateai/altimate-code-linux-arm64": "v0.3.1",
23
+ "@altimateai/altimate-code-darwin-arm64": "v0.3.1",
24
+ "@altimateai/altimate-code-windows-x64-baseline": "v0.3.1"
25
25
  }
26
26
  }
package/postinstall.mjs CHANGED
@@ -106,11 +106,13 @@ function printWelcome(version) {
106
106
  const empty = ` │ ${" ".repeat(contentWidth)} │`
107
107
  const row = (s) => ` │ ${pad(s)} │`
108
108
 
109
- console.log(top)
110
- console.log(empty)
111
- console.log(row(` ${v}`))
112
- for (const line of lines) console.log(row(line))
113
- console.log(bot)
109
+ // Use stderr — npm v7+ silences postinstall stdout
110
+ const out = (s) => process.stderr.write(s + "\n")
111
+ out(top)
112
+ out(empty)
113
+ out(row(` ${v}`))
114
+ for (const line of lines) out(row(line))
115
+ out(bot)
114
116
  }
115
117
 
116
118
  /**