Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- `@kkdev92/vscode-ext-kit` `^3.0.0` → `^4.0.0`. The framework raised its own
`engines.vscode` to `^1.134.0`, which this extension already declares, so the
two now agree instead of the extension quietly requiring more than the library
it is built on.

**One byte of the bundle changes, and it is meant to.** Built both ways and
compared: the esbuild output differs in exactly one byte out of 348,529 —
`KIT_VERSION` in `src/core/build.ts`, which the build inlines so the state
report can name the kit a bundle was actually compiled against rather than
the semver range. It now correctly reports `4.0.0`. Nothing else moves: the
published 3.0.0 and 4.0.0 packages differ only in
`testing/fakes/fake-filewatcher`, which reaches callers through the
`./testing` subpath and never enters a bundle, and all 105 `.d.ts` are
identical.

## [0.4.0] - 2026-08-29

### Changed
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@
"clean": "rimraf dist coverage .vsix-verify-temp quick-utils.vsix"
},
"dependencies": {
"@kkdev92/vscode-ext-kit": "^3.0.0"
"@kkdev92/vscode-ext-kit": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
Expand Down