domain-search-mcp 1.2.25 → 1.2.26
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/.github/release-drafter.yml +56 -0
- package/.github/workflows/release-drafter.yml +27 -0
- package/.github/workflows/release.yml +6 -3
- package/CHANGELOG.md +37 -0
- package/README.md +4 -0
- package/docs/RELEASE.md +15 -0
- package/package.json +1 -1
- package/server.json +2 -2
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
name-template: "v$RESOLVED_VERSION"
|
|
2
|
+
tag-template: "v$RESOLVED_VERSION"
|
|
3
|
+
|
|
4
|
+
categories:
|
|
5
|
+
- title: "Breaking Changes"
|
|
6
|
+
labels:
|
|
7
|
+
- "breaking"
|
|
8
|
+
- title: "Features"
|
|
9
|
+
labels:
|
|
10
|
+
- "feature"
|
|
11
|
+
- "enhancement"
|
|
12
|
+
- title: "Fixes"
|
|
13
|
+
labels:
|
|
14
|
+
- "fix"
|
|
15
|
+
- "bug"
|
|
16
|
+
- title: "Docs"
|
|
17
|
+
labels:
|
|
18
|
+
- "docs"
|
|
19
|
+
- title: "Chore"
|
|
20
|
+
labels:
|
|
21
|
+
- "chore"
|
|
22
|
+
- "refactor"
|
|
23
|
+
- title: "Security"
|
|
24
|
+
labels:
|
|
25
|
+
- "security"
|
|
26
|
+
|
|
27
|
+
change-template: "- $TITLE (#$NUMBER) by @$AUTHOR"
|
|
28
|
+
|
|
29
|
+
version-resolver:
|
|
30
|
+
major:
|
|
31
|
+
labels:
|
|
32
|
+
- "breaking"
|
|
33
|
+
minor:
|
|
34
|
+
labels:
|
|
35
|
+
- "feature"
|
|
36
|
+
- "enhancement"
|
|
37
|
+
patch:
|
|
38
|
+
labels:
|
|
39
|
+
- "fix"
|
|
40
|
+
- "bug"
|
|
41
|
+
- "docs"
|
|
42
|
+
- "chore"
|
|
43
|
+
- "refactor"
|
|
44
|
+
- "security"
|
|
45
|
+
default: patch
|
|
46
|
+
|
|
47
|
+
exclude-labels:
|
|
48
|
+
- "skip-changelog"
|
|
49
|
+
|
|
50
|
+
template: |
|
|
51
|
+
## What's Changed
|
|
52
|
+
|
|
53
|
+
$CHANGES
|
|
54
|
+
|
|
55
|
+
## Full Changelog
|
|
56
|
+
https://github.com/dorukardahan/domain-search-mcp/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
name: Release Drafter
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
types:
|
|
9
|
+
- opened
|
|
10
|
+
- reopened
|
|
11
|
+
- synchronize
|
|
12
|
+
- labeled
|
|
13
|
+
- unlabeled
|
|
14
|
+
- ready_for_review
|
|
15
|
+
|
|
16
|
+
permissions:
|
|
17
|
+
contents: write
|
|
18
|
+
pull-requests: write
|
|
19
|
+
|
|
20
|
+
jobs:
|
|
21
|
+
update_release_draft:
|
|
22
|
+
runs-on: ubuntu-latest
|
|
23
|
+
steps:
|
|
24
|
+
- name: Update release draft
|
|
25
|
+
uses: release-drafter/release-drafter@v6
|
|
26
|
+
env:
|
|
27
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -34,7 +34,10 @@ jobs:
|
|
|
34
34
|
env:
|
|
35
35
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
36
36
|
|
|
37
|
-
- name:
|
|
38
|
-
uses:
|
|
37
|
+
- name: Publish release notes
|
|
38
|
+
uses: release-drafter/release-drafter@v6
|
|
39
39
|
with:
|
|
40
|
-
|
|
40
|
+
publish: true
|
|
41
|
+
tag: ${{ github.ref_name }}
|
|
42
|
+
env:
|
|
43
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
### Added
|
|
10
|
+
- -
|
|
11
|
+
|
|
12
|
+
## [1.2.26] - 2025-12-30
|
|
13
|
+
### Added
|
|
14
|
+
- Release Drafter automation for release notes (labels -> changelog).
|
|
15
|
+
|
|
16
|
+
## [1.2.25] - 2025-12-30
|
|
17
|
+
### Added
|
|
18
|
+
- GitHub Actions release workflow that publishes with provenance and creates GitHub Releases.
|
|
19
|
+
|
|
20
|
+
## [1.2.24] - 2025-12-30
|
|
21
|
+
### Added
|
|
22
|
+
- Release workflow documentation and local publish scripts (canary/latest).
|
|
23
|
+
|
|
24
|
+
## [1.2.23] - 2025-12-30
|
|
25
|
+
### Added
|
|
26
|
+
- Sedo public feed lookup for aftermarket auction hints (configurable TTL + feed URL).
|
|
27
|
+
|
|
28
|
+
## [1.2.22] - 2025-12-30
|
|
29
|
+
### Changed
|
|
30
|
+
- Removed Dynadot backend usage due to ToS restrictions.
|
|
31
|
+
|
|
32
|
+
[Unreleased]: https://github.com/dorukardahan/domain-search-mcp/compare/v1.2.26...HEAD
|
|
33
|
+
[1.2.26]: https://github.com/dorukardahan/domain-search-mcp/compare/v1.2.25...v1.2.26
|
|
34
|
+
[1.2.25]: https://github.com/dorukardahan/domain-search-mcp/compare/v1.2.24...v1.2.25
|
|
35
|
+
[1.2.24]: https://github.com/dorukardahan/domain-search-mcp/compare/v1.2.23...v1.2.24
|
|
36
|
+
[1.2.23]: https://github.com/dorukardahan/domain-search-mcp/compare/v1.2.22...v1.2.23
|
|
37
|
+
[1.2.22]: https://github.com/dorukardahan/domain-search-mcp/compare/v1.2.21...v1.2.22
|
package/README.md
CHANGED
|
@@ -191,6 +191,10 @@ npm run build # compile to dist/
|
|
|
191
191
|
See `docs/RELEASE.md` for the canary -> latest publish flow. Tags like `v1.2.24`
|
|
192
192
|
trigger GitHub Releases + npm publish via CI.
|
|
193
193
|
|
|
194
|
+
## Changelog
|
|
195
|
+
|
|
196
|
+
See `CHANGELOG.md` for release history.
|
|
197
|
+
|
|
194
198
|
## Security Notes
|
|
195
199
|
|
|
196
200
|
- Do not commit API keys or `.mcpregistry_*` files.
|
package/docs/RELEASE.md
CHANGED
|
@@ -5,8 +5,10 @@ Use this flow to publish safely and keep MCP clients stable.
|
|
|
5
5
|
## Checklist
|
|
6
6
|
|
|
7
7
|
- Bump versions in `package.json`, `package-lock.json`, and `server.json`.
|
|
8
|
+
- Update `CHANGELOG.md` (add a new version section).
|
|
8
9
|
- Run `npm run test` (or at least `npm run build`).
|
|
9
10
|
- Ensure GitHub secret `NPM_TOKEN` is set (used by CI).
|
|
11
|
+
- Label PRs so Release Drafter can generate clean notes (see below).
|
|
10
12
|
- Confirm no secrets are included in the package (`npm pack --dry-run` if needed).
|
|
11
13
|
|
|
12
14
|
## Canary Publish (Local)
|
|
@@ -40,6 +42,19 @@ git tag v1.2.24
|
|
|
40
42
|
git push origin v1.2.24
|
|
41
43
|
```
|
|
42
44
|
|
|
45
|
+
## Release Drafter Labels
|
|
46
|
+
|
|
47
|
+
Use these labels so release notes are auto-generated cleanly:
|
|
48
|
+
|
|
49
|
+
- `breaking`
|
|
50
|
+
- `feature`, `enhancement`
|
|
51
|
+
- `fix`, `bug`
|
|
52
|
+
- `docs`
|
|
53
|
+
- `chore`, `refactor`
|
|
54
|
+
- `security`
|
|
55
|
+
|
|
56
|
+
Use `skip-changelog` to exclude a PR from release notes.
|
|
57
|
+
|
|
43
58
|
## Notes
|
|
44
59
|
|
|
45
60
|
- CI publishes with `--provenance` for supply-chain integrity.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "domain-search-mcp",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.26",
|
|
4
4
|
"mcpName": "io.github.dorukardahan/domain-search-mcp",
|
|
5
5
|
"description": "Fast domain availability MCP server. RDAP/WHOIS availability with backend pricing (Porkbun) and smart suggestions.",
|
|
6
6
|
"main": "dist/server.js",
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/dorukardahan/domain-search-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.2.
|
|
9
|
+
"version": "1.2.26",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "domain-search-mcp",
|
|
14
|
-
"version": "1.2.
|
|
14
|
+
"version": "1.2.26",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
},
|