You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: release v1.0.0; publish middleware to npm + mirror to GitHub Packages
The publish workflow's `find -maxdepth 2` silently skipped the middleware
packages (which live at `packages/middleware/<name>/package.json`, depth 3),
so @agentruntimecontrolprotocol/node, /express, /fastify, /hono, /bun, and
/middleware-otel were never reaching npm. Bumped to depth 3 and added a
parallel publish step that mirrors every workspace package to GitHub
Packages (registry npm.pkg.github.com) using the built-in GITHUB_TOKEN
with packages:write.
Graduates the workspace to v1.0.0: peerDependency cascade under the
`linked` group escalates the requested minor across the graph, which is
the deliberate signal we want for the first full release that includes
the middleware family.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
- Publish the middleware packages (`@agentruntimecontrolprotocol/node`, `/express`, `/fastify`, `/hono`, `/bun`, `/middleware-otel`) to npm for the first time, and start mirroring every published package to GitHub Packages alongside npm. The publish workflow now walks `packages/middleware/*` so middleware manifests are no longer silently skipped.
Copy file name to clipboardExpand all lines: packages/client/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@agentruntimecontrolprotocol/client",
3
-
"version": "0.1.0",
3
+
"version": "1.0.0",
4
4
"description": "Client implementation of the Agent Runtime Control Protocol (ARCP). Install alongside a transport from @agentruntimecontrolprotocol/core to talk to an @agentruntimecontrolprotocol/runtime server.",
- Publish the middleware packages (`@agentruntimecontrolprotocol/node`, `/express`, `/fastify`, `/hono`, `/bun`, `/middleware-otel`) to npm for the first time, and start mirroring every published package to GitHub Packages alongside npm. The publish workflow now walks `packages/middleware/*` so middleware manifests are no longer silently skipped.
Copy file name to clipboardExpand all lines: packages/core/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@agentruntimecontrolprotocol/core",
3
-
"version": "0.1.0",
3
+
"version": "1.0.0",
4
4
"description": "Shared primitives for the Agent Runtime Control Protocol (ARCP): envelope, errors, messages, transports, store, auth, and session state. Used by @agentruntimecontrolprotocol/client and @agentruntimecontrolprotocol/runtime.",
- Publish the middleware packages (`@agentruntimecontrolprotocol/node`, `/express`, `/fastify`, `/hono`, `/bun`, `/middleware-otel`) to npm for the first time, and start mirroring every published package to GitHub Packages alongside npm. The publish workflow now walks `packages/middleware/*` so middleware manifests are no longer silently skipped.
Copy file name to clipboardExpand all lines: packages/middleware/bun/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@agentruntimecontrolprotocol/bun",
3
-
"version": "0.1.0",
3
+
"version": "1.0.0",
4
4
"description": "Bun runtime helpers for the Agent Runtime Control Protocol (ARCP). Uses Bun's native WebSocket server (Bun.serve) to terminate ARCP connections; no external dependency on `ws`.",
- Publish the middleware packages (`@agentruntimecontrolprotocol/node`, `/express`, `/fastify`, `/hono`, `/bun`, `/middleware-otel`) to npm for the first time, and start mirroring every published package to GitHub Packages alongside npm. The publish workflow now walks `packages/middleware/*` so middleware manifests are no longer silently skipped.
0 commit comments