smart-web-mcp 0.6.1 → 0.6.3
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 +22 -0
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,28 @@ The format is based on Keep a Changelog[^1] and this project uses SemVer.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.6.3] - 2026-03-28
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- the changelog automation workflow and nearest-tag test now handle repos whose default branch is not named `main`, which prevents release CI from failing on branch-name assumptions during scripted release-note generation
|
|
14
|
+
|
|
15
|
+
## [0.6.2] - 2026-03-28
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- `npm run changelog:generate -- <version>` now drafts a Keep-a-Changelog style release section from commits since the previous tag so releases no longer start from a blank file
|
|
20
|
+
- `npm run release:notes -- <version>` now extracts the matching changelog section for reuse in release automation and manual review
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- GitHub release automation now publishes the committed changelog section as the release body instead of relying on generic auto-generated notes
|
|
25
|
+
- the release playbook now requires editing the generated draft into a human-quality summary before tagging a release
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- metadata checks now fail when `CHANGELOG.md` is missing the current package version section, which prevents version bumps from shipping with empty or stale release notes
|
|
30
|
+
|
|
9
31
|
## [0.6.1] - 2026-03-27
|
|
10
32
|
|
|
11
33
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "smart-web-mcp",
|
|
3
3
|
"mcpName": "io.github.rich-jojo/smart-web",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.3",
|
|
5
5
|
"packageManager": "npm@10.8.2",
|
|
6
6
|
"description": "Portable MCP server for web search, direct-URL fetch, site crawling, and docs export.",
|
|
7
7
|
"homepage": "https://github.com/rich-jojo/smart-web",
|
|
@@ -34,13 +34,16 @@
|
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "rm -rf dist && tsc -p tsconfig.json",
|
|
37
|
+
"changelog:generate": "node scripts/generate-changelog-entry.mjs",
|
|
38
|
+
"release:notes": "node scripts/extract-changelog-section.mjs",
|
|
37
39
|
"dev": "tsx src/index.ts",
|
|
38
40
|
"dev:mcp": "node dist/dev.js",
|
|
39
41
|
"dev:watch": "tsc -p tsconfig.json --watch --preserveWatchOutput",
|
|
40
42
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
41
|
-
"test": "node --import tsx --test src/shared.test.ts src/assets.test.ts src/dev-runtime.test.ts src/render.test.ts src/providers.test.ts src/smartcrawl.test.ts src/smartcrawl-export.test.ts src/provider-policy.test.ts src/archive-fallback.test.ts src/mcp.test.ts",
|
|
43
|
+
"test": "node --import tsx --test src/shared.test.ts src/assets.test.ts src/dev-runtime.test.ts src/release-scripts.test.ts src/render.test.ts src/providers.test.ts src/smartcrawl.test.ts src/smartcrawl-export.test.ts src/provider-policy.test.ts src/archive-fallback.test.ts src/mcp.test.ts",
|
|
42
44
|
"check:meta": "node scripts/check-metadata.mjs",
|
|
43
|
-
"check": "
|
|
45
|
+
"check:workflow": "node scripts/verify-release-workflow.mjs",
|
|
46
|
+
"check": "npm run build && npm run check:meta && npm run check:workflow && npm run test",
|
|
44
47
|
"hooks:install": "node scripts/install-git-hooks.mjs",
|
|
45
48
|
"prepare": "npm run build && npm run hooks:install"
|
|
46
49
|
},
|