@sebastienrousseau/dotfiles 0.2.521 → 0.2.522

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
@@ -4,6 +4,40 @@ This file documents all notable changes to this project.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## v0.2.522 — 2026-09-21 (Unreleased)
8
+
9
+ ### Fixed
10
+
11
+ - Classify Ghostty's macOS-native mirror separately from chezmoi-managed files
12
+ so targeted theme changes do not fail on an unmanaged mirror. Preserve
13
+ renderer diagnostics with the transaction instead of discarding errors.
14
+ - Build Go helpers with private temporary directories despite stale shell/Go
15
+ settings; preserve existing binaries and report attempted build failures.
16
+ - Wait for tracked Treesitter parser work and fail headless Neovim upgrades on
17
+ plugin errors, registry failures, or install timeouts instead of quitting early.
18
+ - Reuse valid cached chezmoi binaries in CI by parsing the actual version
19
+ output; reject mismatched, malformed, prerelease, and failing binaries.
20
+ - Preserve upgrade summaries when the progress renderer exits: contain SIGPIPE,
21
+ keep stderr open, and fall back to plain step output. Failed upgrades now
22
+ return nonzero and explain detached, untracked, or dirty source checkouts.
23
+ - Declare the tree-sitter CLI required by current Neovim parser builds in the
24
+ managed mise defaults.
25
+ - Keep manual release uploads and checksum manifests in agreement, including
26
+ raw HTML, plain text, the search index, and the Markdown source archive.
27
+ - Fail manual publication on missing outputs or checksum mismatches; reject
28
+ empty and symlinked assets and exclude build intermediates from checksums.
29
+ - Add consumer-download, tamper, missing-output, and fast-build regressions
30
+ for the next sequential patch, v0.2.522.
31
+
32
+ ### Added
33
+
34
+ - Seventy-two deterministic rendered-config baselines covering six terminal/tmux
35
+ consumers, two wallpaper families, both appearance modes and three platform
36
+ inputs, checked on Linux and macOS CI hosts.
37
+ - A schema-defined inventory of 32 legacy theme transaction targets with
38
+ adapter, format, ownership and snapshot-rollback contracts. This is audit
39
+ evidence, not the future core's mutation authority.
40
+
7
41
  ## v0.2.521 — 2026-09-20
8
42
 
9
43
  ### Changed
package/README.md CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  <p align="center">
16
16
  <a href="https://github.com/sebastienrousseau/dotfiles/actions"><img src="https://img.shields.io/github/actions/workflow/status/sebastienrousseau/dotfiles/ci.yml?style=for-the-badge&logo=githubactions&logoColor=white" alt="Build" /></a>
17
- <a href="https://github.com/sebastienrousseau/dotfiles/releases/latest"><img src="https://img.shields.io/badge/Version-v0.2.521-blue?style=for-the-badge&logo=semanticrelease&logoColor=white" alt="Version" /></a>
17
+ <a href="https://github.com/sebastienrousseau/dotfiles/releases/latest"><img src="https://img.shields.io/badge/Version-v0.2.522-blue?style=for-the-badge&logo=semanticrelease&logoColor=white" alt="Version" /></a>
18
18
  <a href="https://www.npmjs.com/package/@sebastienrousseau/dotfiles"><img src="https://img.shields.io/npm/v/@sebastienrousseau/dotfiles?style=for-the-badge&logo=npm&logoColor=white&label=npm" alt="npm" /></a>
19
19
  <a href="https://doc.dotfiles.io/"><img src="https://img.shields.io/badge/Manual-doc.dotfiles.io-66c2a5?style=for-the-badge&labelColor=555555&logo=materialformkdocs&logoColor=white" alt="Manual" /></a>
20
20
  <a href="https://github.com/sebastienrousseau/dotfiles/releases"><img src="https://img.shields.io/github/downloads/sebastienrousseau/dotfiles/total?style=for-the-badge&logo=github&logoColor=white" alt="Downloads" /></a>
@@ -83,11 +83,11 @@ release process are documented in
83
83
 
84
84
  ```bash
85
85
  curl -fsSL -o /tmp/dotfiles-install.sh \
86
- https://github.com/sebastienrousseau/dotfiles/releases/download/v0.2.521/dotfiles-install-0.2.521.sh
86
+ https://github.com/sebastienrousseau/dotfiles/releases/download/v0.2.522/dotfiles-install-0.2.522.sh
87
87
  if command -v sha256sum >/dev/null 2>&1; then
88
- echo "704e278f970d4aa53362204a89d044caefd64823b7d1cdf3a815c08cac971a89 /tmp/dotfiles-install.sh" | sha256sum -c -
88
+ echo "07ef5a3fbf3a98d7cb4cf6dc787ecce516121ca5a33b5ac793645bdcab6eaf03 /tmp/dotfiles-install.sh" | sha256sum -c -
89
89
  else
90
- echo "704e278f970d4aa53362204a89d044caefd64823b7d1cdf3a815c08cac971a89 /tmp/dotfiles-install.sh" | shasum -a 256 -c -
90
+ echo "07ef5a3fbf3a98d7cb4cf6dc787ecce516121ca5a33b5ac793645bdcab6eaf03 /tmp/dotfiles-install.sh" | shasum -a 256 -c -
91
91
  fi
92
92
  bash /tmp/dotfiles-install.sh
93
93
  ```
@@ -106,10 +106,10 @@ directory. The archive
106
106
  carries SLSA build provenance (keyless, via Fulcio + Rekor):
107
107
 
108
108
  ```bash
109
- gh release download v0.2.521 --repo sebastienrousseau/dotfiles --pattern 'dot-*.tar.gz'
110
- gh attestation verify dot-0.2.521.tar.gz --repo sebastienrousseau/dotfiles
111
- tar -xzf dot-0.2.521.tar.gz
112
- make -C dot-0.2.521 install PREFIX=/usr/local
109
+ gh release download v0.2.522 --repo sebastienrousseau/dotfiles --pattern 'dot-*.tar.gz'
110
+ gh attestation verify dot-0.2.522.tar.gz --repo sebastienrousseau/dotfiles
111
+ tar -xzf dot-0.2.522.tar.gz
112
+ make -C dot-0.2.522 install PREFIX=/usr/local
113
113
  ```
114
114
 
115
115
  [`release-install-smoke.yml`](.github/workflows/release-install-smoke.yml)
@@ -305,7 +305,7 @@ every push.
305
305
  bash /tmp/dotfiles-install.sh # after the verified download above
306
306
 
307
307
  # Only the dot CLI, from the attested release archive
308
- gh release download v0.2.521 --repo sebastienrousseau/dotfiles --pattern 'dot-*.tar.gz'
308
+ gh release download v0.2.522 --repo sebastienrousseau/dotfiles --pattern 'dot-*.tar.gz'
309
309
 
310
310
  # The Go satellites are (re)built on apply by
311
311
  # defaults/run_onchange_24-build-dot-ui.sh.tmpl
@@ -867,7 +867,7 @@ design is
867
867
 
868
868
  ```toml
869
869
  # defaults/.chezmoidata.toml — repo-wide defaults, schema-checked in CI
870
- dotfiles_version = "0.2.521"
870
+ dotfiles_version = "0.2.522"
871
871
 
872
872
  [features]
873
873
  alias_wrapper = false # confirm destructive aliases
package/install.sh CHANGED
@@ -71,7 +71,7 @@ show_help() {
71
71
  Usage: install.sh [version] [options]
72
72
 
73
73
  Arguments:
74
- version The version (tag or branch) to install (default: v0.2.521)
74
+ version The version (tag or branch) to install (default: v0.2.522)
75
75
 
76
76
  Options:
77
77
  --help Show this help message
@@ -87,7 +87,7 @@ EOF
87
87
  }
88
88
 
89
89
  main() {
90
- local version="v0.2.521"
90
+ local version="v0.2.522"
91
91
  local version_set=0
92
92
  local minimal=0
93
93
  local provision="${DOTFILES_PROVISION:-0}"
@@ -117,7 +117,7 @@ main() {
117
117
  # like `foobar` doesn't trigger a 30s+ network download attempt.
118
118
  # Caught by the install.sh fuzz harness (#881).
119
119
  if [[ ! "$arg" =~ ^v?[0-9]+\.[0-9]+\.[0-9]+([-+][a-zA-Z0-9.-]+)?$ ]]; then
120
- error "Unrecognized positional argument '$arg' — expected a semver version (e.g. v0.2.521)."
120
+ error "Unrecognized positional argument '$arg' — expected a semver version (e.g. v0.2.522)."
121
121
  fi
122
122
  version="$arg"
123
123
  version_set=1
@@ -435,7 +435,7 @@ main() {
435
435
  # 6. Initialize & Apply
436
436
  step "Applying Configuration..."
437
437
 
438
- # ── Auto-migration for v0.2.521 reorg ─────────────────────────────────
438
+ # ── Auto-migration for v0.2.522 reorg ─────────────────────────────────
439
439
  # If the user is upgrading from a pre-0.2.503 install, run the
440
440
  # migration script BEFORE `chezmoi apply` so the reorg's source-
441
441
  # path moves don't cause chezmoi to delete deployed files.
@@ -444,7 +444,7 @@ main() {
444
444
  for migrate_src in "$SOURCE_DIR" "$LEGACY_SOURCE_DIR"; do
445
445
  migrate_script="$migrate_src/install/migrate/migrate-v0_2-to-v0_2_503.sh"
446
446
  if [[ -x "$migrate_script" ]]; then
447
- echo " Running v0.2.521 migration (idempotent; safe on fresh installs)..."
447
+ echo " Running v0.2.522 migration (idempotent; safe on fresh installs)..."
448
448
  "$migrate_script" || echo " migration exited non-zero — continuing apply"
449
449
  break
450
450
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sebastienrousseau/dotfiles",
3
- "version": "0.2.521",
3
+ "version": "0.2.522",
4
4
  "description": "The Trusted Shell Platform — Universal dotfiles managed by Chezmoi. Features Bash & Zsh for macOS, Linux & WSL. Rust modern tooling & enterprise-grade security.",
5
5
  "main": "install.sh",
6
6
  "bin": {