@buildinternet/releases 0.67.3 → 0.69.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 +10 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -4,11 +4,16 @@
|
|
|
4
4
|
[](https://github.com/buildinternet/releases-cli/actions/workflows/release.yml)
|
|
5
5
|
[](https://github.com/buildinternet/releases-cli/actions/workflows/test.yml)
|
|
6
6
|
[](./LICENSE)
|
|
7
|
+
[](https://github.com/buildinternet/releases)
|
|
7
8
|
[](https://skills.sh/buildinternet/releases-cli)
|
|
8
9
|
[](https://deepwiki.com/buildinternet/releases-cli)
|
|
9
10
|
|
|
11
|
+
**[releases.sh](https://releases.sh)** · **[Backend monorepo →](https://github.com/buildinternet/releases)** · [Install](#install) · [Usage](#usage) · [Authentication](#authentication)
|
|
12
|
+
|
|
10
13
|
The changelog & release-notes registry for developers and AI agents — a lean HTTP client for [releases.sh](https://releases.sh). Search and browse release notes from GitHub, RSS/Atom/JSON feeds, and product changelog pages, with no local infrastructure.
|
|
11
14
|
|
|
15
|
+
This repo is the **CLI** only. The backend that powers `api.releases.sh` — the API worker, MCP server, web frontend, and ingest pipeline — is open source in its own repo: [buildinternet/releases](https://github.com/buildinternet/releases).
|
|
16
|
+
|
|
12
17
|
The CLI talks to the hosted registry at `api.releases.sh`. **Search and browse work out of the box — no account or config.** Sign in with `releases login` to follow orgs and products, get a personalized feed, and manage outbound webhooks; it mints a personal **read-only** API key (and earns you higher rate limits as those roll out). Write/admin access (`releases admin …`) is a separate, closed beta — open an issue for early access.
|
|
13
18
|
|
|
14
19
|
## Install
|
|
@@ -70,14 +75,17 @@ Org-scoped: up to 10 (`--org`, optional `--source`, `--product`, `--type feature
|
|
|
70
75
|
|
|
71
76
|
### Contribute to the registry
|
|
72
77
|
|
|
73
|
-
|
|
78
|
+
None of these need an account or API key:
|
|
74
79
|
|
|
75
80
|
```bash
|
|
76
81
|
releases submit https://acme.dev/changelog # suggest a changelog / release-notes URL
|
|
77
82
|
releases feedback "tail -f reconnects slowly" # report a bug or share an idea
|
|
83
|
+
releases json validate releases.json # check a releases.json manifest before publishing
|
|
78
84
|
```
|
|
79
85
|
|
|
80
|
-
|
|
86
|
+
`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).
|
|
87
|
+
|
|
88
|
+
`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
89
|
|
|
82
90
|
### MCP & Claude Code
|
|
83
91
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.69.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.69.0",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.69.0",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.69.0",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.69.0",
|
|
20
|
+
"@buildinternet/releases-windows-x64": "0.69.0"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"changelog",
|