@buildinternet/releases 0.67.2 → 0.68.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/README.md +5 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -70,14 +70,17 @@ Org-scoped: up to 10 (`--org`, optional `--source`, `--product`, `--type feature
|
|
|
70
70
|
|
|
71
71
|
### Contribute to the registry
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
None of these need an account or API key:
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
76
|
releases submit https://acme.dev/changelog # suggest a changelog / release-notes URL
|
|
77
77
|
releases feedback "tail -f reconnects slowly" # report a bug or share an idea
|
|
78
|
+
releases json validate releases.json # check a releases.json manifest before publishing
|
|
78
79
|
```
|
|
79
80
|
|
|
80
|
-
|
|
81
|
+
`submit` and `feedback` both prompt interactively when run with no argument, accept input on stdin, and take `--dry-run --json` to preview the payload without sending. `feedback --type` is `bug` / `idea` / `other`; `submit --note` carries extra context (product name, repo, feed quirks). Submissions feed the same review queue as the [web submit form](https://releases.sh/submit).
|
|
82
|
+
|
|
83
|
+
`json validate` is a read-only manifest check: it validates a [`releases.json`](https://releases.sh/docs/listing) v2 file against the published schema (pass a path or `-` for stdin) and adds `--json` for machine-readable output — no network, no submission.
|
|
81
84
|
|
|
82
85
|
### MCP & Claude Code
|
|
83
86
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.68.0",
|
|
4
4
|
"description": "The changelog & release-notes registry for developers and AI agents",
|
|
5
5
|
"bin": {
|
|
6
6
|
"releases": "bin/releases"
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@buildinternet/releases-darwin-arm64": "0.
|
|
17
|
-
"@buildinternet/releases-darwin-x64": "0.
|
|
18
|
-
"@buildinternet/releases-linux-x64": "0.
|
|
19
|
-
"@buildinternet/releases-linux-arm64": "0.
|
|
20
|
-
"@buildinternet/releases-windows-x64": "0.
|
|
16
|
+
"@buildinternet/releases-darwin-arm64": "0.68.0",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.68.0",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.68.0",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.68.0",
|
|
20
|
+
"@buildinternet/releases-windows-x64": "0.68.0"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"changelog",
|