internet-archive-mcp 3.1.2 → 3.3.0
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 +23 -0
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## [3.3.0](https://github.com/Mearman/mcp-wayback-machine/compare/v3.2.0...v3.3.0) (2026-05-09)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **ci:** run dependabot auto-merge on schedule and manually ([7a1c162](https://github.com/Mearman/mcp-wayback-machine/commit/7a1c162c3e2eece0f9a296e9022751e2343df257))
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **ci:** add checkout step to dependabot auto-merge ([1c8494d](https://github.com/Mearman/mcp-wayback-machine/commit/1c8494db6df25c21ee4bf21f4a3f92c02bed916d))
|
|
10
|
+
* **ci:** use single quotes in dependabot auto-merge condition ([f72f3ee](https://github.com/Mearman/mcp-wayback-machine/commit/f72f3ee8eb90ea64cf927f55e0b9a9c397e202ba))
|
|
11
|
+
* **ci:** wait for CI before auto-merging dependabot PRs ([61d2393](https://github.com/Mearman/mcp-wayback-machine/commit/61d2393b20ad42b29e00c84184354e056a218b80))
|
|
12
|
+
|
|
13
|
+
### CI
|
|
14
|
+
|
|
15
|
+
* add pnpm audit step and fix fast-uri vulnerability ([4080d25](https://github.com/Mearman/mcp-wayback-machine/commit/4080d253382c167dea464f38945d6e445a3aecc4))
|
|
16
|
+
* **deps:** bump pnpm/action-setup from 6 to 6.0.5 ([5281e0d](https://github.com/Mearman/mcp-wayback-machine/commit/5281e0da4def6ba7f00ec878a48e96f721317dca))
|
|
17
|
+
|
|
18
|
+
## [3.2.0](https://github.com/Mearman/mcp-wayback-machine/compare/v3.1.2...v3.2.0) (2026-05-09)
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add subpath exports for programmatic usage ([e146a6f](https://github.com/Mearman/mcp-wayback-machine/commit/e146a6fc78756354cdfd68abc556fe5e9722bb4d))
|
|
23
|
+
|
|
1
24
|
## [3.1.2](https://github.com/Mearman/mcp-wayback-machine/compare/v3.1.1...v3.1.2) (2026-05-09)
|
|
2
25
|
|
|
3
26
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "internet-archive-mcp",
|
|
3
3
|
"mcpName": "io.github.Mearman/mcp-wayback-machine",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.3.0",
|
|
5
5
|
"description": "MCP server and CLI tool for interacting with the Wayback Machine without API keys",
|
|
6
6
|
"main": "./dist/bin.js",
|
|
7
7
|
"type": "module",
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
".": {
|
|
14
14
|
"types": "./dist/bin.d.ts",
|
|
15
15
|
"import": "./dist/bin.js"
|
|
16
|
+
},
|
|
17
|
+
"./*": {
|
|
18
|
+
"types": "./dist/*.d.ts",
|
|
19
|
+
"import": "./dist/*.js"
|
|
16
20
|
}
|
|
17
21
|
},
|
|
18
22
|
"files": [
|