@buildinternet/releases 0.63.0 → 0.64.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 +16 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
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
11
|
|
|
12
|
-
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
|
|
12
|
+
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
13
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
@@ -54,6 +54,20 @@ releases unfollow vercel
|
|
|
54
54
|
|
|
55
55
|
Following an organization includes all of its products.
|
|
56
56
|
|
|
57
|
+
### Outbound webhooks
|
|
58
|
+
|
|
59
|
+
Receive signed `release.created` POSTs in real time — for everything you follow or a single org:
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
releases webhook add --scope follows --url https://your.app/hook
|
|
63
|
+
releases webhook add --org vercel --url https://your.app/hook --description "prod"
|
|
64
|
+
releases webhook list
|
|
65
|
+
releases webhook test <id>
|
|
66
|
+
releases webhook verify --key … --signature … --timestamp … --body-file capture.json
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Org-scoped: up to 10 (`--org`, optional `--source`, `--product`, `--type feature|rollup`). Follows-scoped: one webhook (`--scope follows`) that tracks your current follow graph; optional `--type` narrows delivery. Signing keys are shown once on `add` / `rotate-secret`. You can also manage webhooks in the browser at [releases.sh/account/notifications](https://releases.sh/account/notifications). Operator/admin webhooks (`releases admin webhook …`) are a separate root-key surface.
|
|
70
|
+
|
|
57
71
|
### Contribute to the registry
|
|
58
72
|
|
|
59
73
|
Neither needs an account or API key:
|
|
@@ -89,7 +103,7 @@ releases skills install # or, without the CLI: npx skills add buildintern
|
|
|
89
103
|
|
|
90
104
|
## Authentication
|
|
91
105
|
|
|
92
|
-
Search and browse need no auth. Signing in
|
|
106
|
+
Search and browse need no auth. Signing in powers the personal surfaces — **follows, feed, and outbound webhooks** — and mints a personal **read-only** key (it can't write to the catalog or run `admin` commands; it identifies you for `/v1/me/*` account routes). The easiest way in is your browser — nothing to copy or paste:
|
|
93
107
|
|
|
94
108
|
```bash
|
|
95
109
|
releases login # opens your browser to approve, then saves the key
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.64.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.64.0",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.64.0",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.64.0",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.64.0",
|
|
20
|
+
"@buildinternet/releases-windows-x64": "0.64.0"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"changelog",
|