Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .changeset/initial-release.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/release-worker-agent-auth-proxy-a6734c39.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/release-worker-agent-auth-proxy-f905f24b.md

This file was deleted.

This file was deleted.

18 changes: 18 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# @reaatech/agent-auth-proxy-client

## 2.0.0

### Major Changes

- [#9](https://github.com/reaatech/agent-auth-proxy/pull/9) [`53ad1e3`](https://github.com/reaatech/agent-auth-proxy/commit/53ad1e30373c4f2f42662c15962d2c28bf01756c) Thanks [@reaatech](https://github.com/reaatech)! - Initial public release. Splits the agent-auth-proxy into three publishable packages:

- `@reaatech/agent-auth-proxy-core` — shared zod schemas, OAuth/scope types, and error classes.
- `@reaatech/agent-auth-proxy-client` — typed `AgentClient` and `AdminClient` SDKs (fetch-based, framework-free) for talking to the proxy server.
- `@reaatech/agent-auth-proxy-server` — Fastify-based proxy server, embeddable via `buildApp()`/`start()` or runnable via the `agent-auth-proxy-server` bin.

### Patch Changes

- [`40462ce`](https://github.com/reaatech/agent-auth-proxy/commit/40462cee685ec90d394d0857a39b129f5e2f85a1) Thanks [@reaatech](https://github.com/reaatech)! - - **@reaatech/agent-auth-proxy-client** (patch): Re-exports the error classes (AppError, AuthError, ScopeError, UpstreamError, ValidationError) from @reaatech/agent-auth-proxy-core, expanding the client's public API surface and enabling downstream consumers to perform instanceof checks on thrown errors.

- Updated dependencies [[`53ad1e3`](https://github.com/reaatech/agent-auth-proxy/commit/53ad1e30373c4f2f42662c15962d2c28bf01756c), [`f905f24`](https://github.com/reaatech/agent-auth-proxy/commit/f905f24b951f0fe946c4acc4643eb471acb6eecb)]:
- @reaatech/agent-auth-proxy-core@2.0.0
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-auth-proxy-client",
"version": "1.0.0",
"version": "2.0.0",
"description": "Typed HTTP client SDK for the agent-auth-proxy server",
"type": "module",
"main": "./dist/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# @reaatech/agent-auth-proxy-core

## 2.0.0

### Major Changes

- [#9](https://github.com/reaatech/agent-auth-proxy/pull/9) [`53ad1e3`](https://github.com/reaatech/agent-auth-proxy/commit/53ad1e30373c4f2f42662c15962d2c28bf01756c) Thanks [@reaatech](https://github.com/reaatech)! - Initial public release. Splits the agent-auth-proxy into three publishable packages:

- `@reaatech/agent-auth-proxy-core` — shared zod schemas, OAuth/scope types, and error classes.
- `@reaatech/agent-auth-proxy-client` — typed `AgentClient` and `AdminClient` SDKs (fetch-based, framework-free) for talking to the proxy server.
- `@reaatech/agent-auth-proxy-server` — Fastify-based proxy server, embeddable via `buildApp()`/`start()` or runnable via the `agent-auth-proxy-server` bin.

### Minor Changes

- [`f905f24`](https://github.com/reaatech/agent-auth-proxy/commit/f905f24b951f0fe946c4acc4643eb471acb6eecb) Thanks [@reaatech](https://github.com/reaatech)! - - **@reaatech/agent-auth-proxy-core** (minor): Gains a new public API surface: the error class types (AppError, AuthError, ScopeError, UpstreamError, ValidationError) are now exported from core and re-exported by the sibling packages, giving downstream consumers a first-class, documented way to catch and handle proxy errors without depending on internal paths.
- **@reaatech/agent-auth-proxy-server** (patch): Ships the previously-missing package README on the npm registry page, which materially improves discoverability and onboarding for downstream consumers and closes issue [#14](https://github.com/reaatech/agent-auth-proxy/issues/14); the package itself was effectively un-presented on npm without it.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-auth-proxy-core",
"version": "1.0.0",
"version": "2.0.0",
"description": "Shared types, zod schemas, and error classes for agent-auth-proxy",
"type": "module",
"main": "./dist/index.js",
Expand Down
24 changes: 24 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# @reaatech/agent-auth-proxy-server

## 2.0.0

### Major Changes

- [#9](https://github.com/reaatech/agent-auth-proxy/pull/9) [`53ad1e3`](https://github.com/reaatech/agent-auth-proxy/commit/53ad1e30373c4f2f42662c15962d2c28bf01756c) Thanks [@reaatech](https://github.com/reaatech)! - Initial public release. Splits the agent-auth-proxy into three publishable packages:

- `@reaatech/agent-auth-proxy-core` — shared zod schemas, OAuth/scope types, and error classes.
- `@reaatech/agent-auth-proxy-client` — typed `AgentClient` and `AdminClient` SDKs (fetch-based, framework-free) for talking to the proxy server.
- `@reaatech/agent-auth-proxy-server` — Fastify-based proxy server, embeddable via `buildApp()`/`start()` or runnable via the `agent-auth-proxy-server` bin.

### Patch Changes

- [`f905f24`](https://github.com/reaatech/agent-auth-proxy/commit/f905f24b951f0fe946c4acc4643eb471acb6eecb) Thanks [@reaatech](https://github.com/reaatech)! - - **@reaatech/agent-auth-proxy-core** (minor): Gains a new public API surface: the error class types (AppError, AuthError, ScopeError, UpstreamError, ValidationError) are now exported from core and re-exported by the sibling packages, giving downstream consumers a first-class, documented way to catch and handle proxy errors without depending on internal paths.

- **@reaatech/agent-auth-proxy-server** (patch): Ships the previously-missing package README on the npm registry page, which materially improves discoverability and onboarding for downstream consumers and closes issue [#14](https://github.com/reaatech/agent-auth-proxy/issues/14); the package itself was effectively un-presented on npm without it.

- [#15](https://github.com/reaatech/agent-auth-proxy/pull/15) [`379840c`](https://github.com/reaatech/agent-auth-proxy/commit/379840c27df44a733f1ff98c5578232f213d8176) Thanks [@reaatech](https://github.com/reaatech)! - Fix: Missing README for @reaatech/agent-auth-proxy-server package

Closes [#14](https://github.com/reaatech/agent-auth-proxy/issues/14)

- Updated dependencies [[`53ad1e3`](https://github.com/reaatech/agent-auth-proxy/commit/53ad1e30373c4f2f42662c15962d2c28bf01756c), [`f905f24`](https://github.com/reaatech/agent-auth-proxy/commit/f905f24b951f0fe946c4acc4643eb471acb6eecb)]:
- @reaatech/agent-auth-proxy-core@2.0.0
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-auth-proxy-server",
"version": "1.0.0",
"version": "2.0.0",
"description": "Identity-aware proxy server for agent-to-service communication — Fastify-based",
"type": "module",
"main": "./dist/app.js",
Expand Down