@extension.dev/mcp 3.17.0 → 4.0.8

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
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.0.8
4
+
5
+ Tracks the `extension` 4.0.8 suite (the versioning convention: this package's
6
+ version follows the CLI suite release it pairs with). One tool was added since
7
+ 3.17.0, `extension_release_promote`, bringing the surface to 27 tools.
8
+
9
+ - Bump `extension-create`, `extension-develop`, `extension-install` from
10
+ ^3.13.5 to ^4.0.8. All consumed APIs (`extensionCreate`, `extensionBuild`,
11
+ `extensionInstall`, `getManagedBrowsersCacheRoot`) and all CLI verbs the
12
+ tools shell out to (`dev`, `start`, `preview`, `logs`, `eval`, `storage`,
13
+ `reload`, `open`, `inspect`, `publish`, including `--allow-control`,
14
+ `--allow-eval` and `--no-browser`) are unchanged in 4.x; verified
15
+ end-to-end (create -> build -> dev ready contract -> manifest validate).
16
+ - `package.json` version now matches the published line (was a stale 0.0.1)
17
+ and the server reports its version from `package.json` instead of a
18
+ hardcoded string (previously stuck at 3.13.5).
19
+ - `browser-extension-manifest-fields` ^2.2.8 -> ^2.2.9.
20
+ - vitest config: resolve the extension-* test aliases from the packages'
21
+ exports maps; 4.x dropped the CJS entry, so `require.resolve` on the bare
22
+ specifier no longer works.
23
+
3
24
  ## 3.17.0
4
25
 
5
26
  First stable release on npm. The registry previously carried only canary
@@ -3,7 +3,7 @@ import {startServer, runCli} from '../dist/module.js'
3
3
 
4
4
  const [, , cmd, ...rest] = process.argv
5
5
 
6
- if (cmd && ['login', 'logout', 'whoami'].includes(cmd)) {
6
+ if (cmd && ['login', 'logout', 'whoami', 'release'].includes(cmd)) {
7
7
  runCli(cmd, rest)
8
8
  .then((code) => process.exit(code))
9
9
  .catch((err) => {