diff --git a/apps/marquee-demo/CHANGELOG.md b/apps/marquee-demo/CHANGELOG.md index 2958335..7a8abec 100644 --- a/apps/marquee-demo/CHANGELOG.md +++ b/apps/marquee-demo/CHANGELOG.md @@ -1,5 +1,12 @@ # marquee-demo +## 0.1.4 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 0.1.3 ### Patch Changes diff --git a/apps/marquee-demo/package.json b/apps/marquee-demo/package.json index 22a0b2b..0f229da 100644 --- a/apps/marquee-demo/package.json +++ b/apps/marquee-demo/package.json @@ -1,6 +1,6 @@ { "name": "marquee-demo", - "version": "0.1.3", + "version": "0.1.4", "private": true, "scripts": { "dev": "next dev --port 3001", diff --git a/examples/basic-agent/CHANGELOG.md b/examples/basic-agent/CHANGELOG.md index 6059a06..fed32fe 100644 --- a/examples/basic-agent/CHANGELOG.md +++ b/examples/basic-agent/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-example-basic-agent +## 0.0.7 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 0.0.6 ### Patch Changes diff --git a/examples/basic-agent/package.json b/examples/basic-agent/package.json index aa20cc0..edb9460 100644 --- a/examples/basic-agent/package.json +++ b/examples/basic-agent/package.json @@ -2,7 +2,7 @@ "name": "@glinr/theauth-example-basic-agent", "private": true, "type": "module", - "version": "0.0.6", + "version": "0.0.7", "scripts": { "start": "tsx src/index.ts", "typecheck": "tsc --noEmit" diff --git a/examples/migrate-from-auth0/CHANGELOG.md b/examples/migrate-from-auth0/CHANGELOG.md new file mode 100644 index 0000000..1760fa5 --- /dev/null +++ b/examples/migrate-from-auth0/CHANGELOG.md @@ -0,0 +1,8 @@ +# @glinr/theauth-example-migrate-from-auth0 + +## 0.0.2 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 diff --git a/examples/migrate-from-auth0/package.json b/examples/migrate-from-auth0/package.json index 4ac2417..157c9c6 100644 --- a/examples/migrate-from-auth0/package.json +++ b/examples/migrate-from-auth0/package.json @@ -2,7 +2,7 @@ "name": "@glinr/theauth-example-migrate-from-auth0", "private": true, "type": "module", - "version": "0.0.1", + "version": "0.0.2", "description": "Runnable companion to docs/migrate/from-auth0.mdx. Demonstrates the AFTER patterns: TheAuth instance, M2M-as-agent with scoped permissions, rotation, policy constraints.", "scripts": { "start": "tsx src/index.ts", diff --git a/examples/migrate-from-better-auth-agent-plugin/CHANGELOG.md b/examples/migrate-from-better-auth-agent-plugin/CHANGELOG.md new file mode 100644 index 0000000..81a5c4d --- /dev/null +++ b/examples/migrate-from-better-auth-agent-plugin/CHANGELOG.md @@ -0,0 +1,8 @@ +# @glinr/theauth-example-migrate-from-better-auth-agent-plugin + +## 0.0.2 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 diff --git a/examples/migrate-from-better-auth-agent-plugin/package.json b/examples/migrate-from-better-auth-agent-plugin/package.json index df221ea..ac4f194 100644 --- a/examples/migrate-from-better-auth-agent-plugin/package.json +++ b/examples/migrate-from-better-auth-agent-plugin/package.json @@ -2,7 +2,7 @@ "name": "@glinr/theauth-example-migrate-from-better-auth-agent-plugin", "private": true, "type": "module", - "version": "0.0.1", + "version": "0.0.2", "description": "Runnable companion to docs/migrate/from-better-auth-agent-plugin.mdx. Demonstrates: AgentIdentity creation, multi-hop delegation chains, cascading revocation, authorizeByToken.", "scripts": { "start": "tsx src/index.ts", diff --git a/packages/adapters/astro/CHANGELOG.md b/packages/adapters/astro/CHANGELOG.md index 57a222e..e05ebde 100644 --- a/packages/adapters/astro/CHANGELOG.md +++ b/packages/adapters/astro/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-astro +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/astro/package.json b/packages/adapters/astro/package.json index 95b698c..43de5cf 100644 --- a/packages/adapters/astro/package.json +++ b/packages/adapters/astro/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-astro", - "version": "3.0.2", + "version": "3.0.3", "description": "Astro adapter for TheAuth - exposes agent auth as HTTP REST endpoints", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/express/CHANGELOG.md b/packages/adapters/express/CHANGELOG.md index 38c43a0..adcf4d7 100644 --- a/packages/adapters/express/CHANGELOG.md +++ b/packages/adapters/express/CHANGELOG.md @@ -1,5 +1,28 @@ # @glinr/theauth-express +## 3.1.0 + +### Minor Changes + +- TheAuth is now the canonical naming across the SDK (`TheAuthClient`, + `TheAuthProvider`, `TheAuthError`, `createTheAuth`, and per-adapter + equivalents like `theAuthExpress`/`theAuthHono`). This resolves a + three-way naming collision: an earlier pass renamed `Kavach*` to `Auth*`, + this pass supersedes that with `TheAuth*` as canonical. + + Non-breaking. Both `Auth*` and `Kavach*` names remain as deprecated + aliases pointing at the same implementation and will keep working until + a future major version. No behavior changed, only naming. + + Also fixes two adapters (`express`, `hono`) that were missed by the + earlier `Auth*` rename entirely and still only exported `kavach`-prefixed + names. + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/express/package.json b/packages/adapters/express/package.json index 2a92eff..dc212fa 100644 --- a/packages/adapters/express/package.json +++ b/packages/adapters/express/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-express", - "version": "3.0.2", + "version": "3.1.0", "description": "Express adapter for TheAuth - exposes agent auth as HTTP REST endpoints", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/fastify/CHANGELOG.md b/packages/adapters/fastify/CHANGELOG.md index e432e1b..a139b4c 100644 --- a/packages/adapters/fastify/CHANGELOG.md +++ b/packages/adapters/fastify/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-fastify +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/fastify/package.json b/packages/adapters/fastify/package.json index ac30053..44087b8 100644 --- a/packages/adapters/fastify/package.json +++ b/packages/adapters/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-fastify", - "version": "3.0.2", + "version": "3.0.3", "description": "Fastify adapter for TheAuth - exposes agent auth as HTTP REST endpoints", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/hono/CHANGELOG.md b/packages/adapters/hono/CHANGELOG.md index bef2d6b..719afb2 100644 --- a/packages/adapters/hono/CHANGELOG.md +++ b/packages/adapters/hono/CHANGELOG.md @@ -1,5 +1,28 @@ # @glinr/theauth-hono +## 3.1.0 + +### Minor Changes + +- TheAuth is now the canonical naming across the SDK (`TheAuthClient`, + `TheAuthProvider`, `TheAuthError`, `createTheAuth`, and per-adapter + equivalents like `theAuthExpress`/`theAuthHono`). This resolves a + three-way naming collision: an earlier pass renamed `Kavach*` to `Auth*`, + this pass supersedes that with `TheAuth*` as canonical. + + Non-breaking. Both `Auth*` and `Kavach*` names remain as deprecated + aliases pointing at the same implementation and will keep working until + a future major version. No behavior changed, only naming. + + Also fixes two adapters (`express`, `hono`) that were missed by the + earlier `Auth*` rename entirely and still only exported `kavach`-prefixed + names. + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/hono/package.json b/packages/adapters/hono/package.json index bb9acb4..358e557 100644 --- a/packages/adapters/hono/package.json +++ b/packages/adapters/hono/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-hono", - "version": "3.0.2", + "version": "3.1.0", "description": "Hono adapter for TheAuth - exposes agent auth as HTTP REST endpoints", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/nestjs/CHANGELOG.md b/packages/adapters/nestjs/CHANGELOG.md index 84b2619..d34c961 100644 --- a/packages/adapters/nestjs/CHANGELOG.md +++ b/packages/adapters/nestjs/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-nestjs +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/nestjs/package.json b/packages/adapters/nestjs/package.json index 9d0aefe..1eaf78c 100644 --- a/packages/adapters/nestjs/package.json +++ b/packages/adapters/nestjs/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-nestjs", - "version": "3.0.2", + "version": "3.0.3", "description": "NestJS adapter for TheAuth", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/nextjs/CHANGELOG.md b/packages/adapters/nextjs/CHANGELOG.md index 042c183..0b50f3b 100644 --- a/packages/adapters/nextjs/CHANGELOG.md +++ b/packages/adapters/nextjs/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-nextjs +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/nextjs/package.json b/packages/adapters/nextjs/package.json index 87f5f22..52127fa 100644 --- a/packages/adapters/nextjs/package.json +++ b/packages/adapters/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-nextjs", - "version": "3.0.2", + "version": "3.0.3", "description": "Next.js App Router adapter for TheAuth - exposes agent auth as HTTP REST endpoints", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/nuxt/CHANGELOG.md b/packages/adapters/nuxt/CHANGELOG.md index 2d884ca..4fc2b79 100644 --- a/packages/adapters/nuxt/CHANGELOG.md +++ b/packages/adapters/nuxt/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-nuxt +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/nuxt/package.json b/packages/adapters/nuxt/package.json index 869d83a..9639c76 100644 --- a/packages/adapters/nuxt/package.json +++ b/packages/adapters/nuxt/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-nuxt", - "version": "3.0.2", + "version": "3.0.3", "description": "Nuxt adapter for TheAuth - exposes agent auth as HTTP REST endpoints via H3", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/prisma/CHANGELOG.md b/packages/adapters/prisma/CHANGELOG.md index 2d1e7a5..b0f2109 100644 --- a/packages/adapters/prisma/CHANGELOG.md +++ b/packages/adapters/prisma/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-prisma +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/prisma/package.json b/packages/adapters/prisma/package.json index 5f40194..3129378 100644 --- a/packages/adapters/prisma/package.json +++ b/packages/adapters/prisma/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-prisma", - "version": "3.0.2", + "version": "3.0.3", "description": "Prisma database adapter for TheAuth - use PrismaClient as your TheAuth database backend", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/solidstart/CHANGELOG.md b/packages/adapters/solidstart/CHANGELOG.md index 6e81bb6..4f229e3 100644 --- a/packages/adapters/solidstart/CHANGELOG.md +++ b/packages/adapters/solidstart/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-solidstart +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/solidstart/package.json b/packages/adapters/solidstart/package.json index cab3265..8073944 100644 --- a/packages/adapters/solidstart/package.json +++ b/packages/adapters/solidstart/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-solidstart", - "version": "3.0.2", + "version": "3.0.3", "description": "SolidStart adapter for TheAuth", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/sveltekit/CHANGELOG.md b/packages/adapters/sveltekit/CHANGELOG.md index f4f49bc..2438eb9 100644 --- a/packages/adapters/sveltekit/CHANGELOG.md +++ b/packages/adapters/sveltekit/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-sveltekit +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/sveltekit/package.json b/packages/adapters/sveltekit/package.json index f800db4..c3e68da 100644 --- a/packages/adapters/sveltekit/package.json +++ b/packages/adapters/sveltekit/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-sveltekit", - "version": "3.0.2", + "version": "3.0.3", "description": "SvelteKit adapter for TheAuth - exposes agent auth as HTTP REST endpoints", "type": "module", "main": "dist/index.js", diff --git a/packages/adapters/tanstack/CHANGELOG.md b/packages/adapters/tanstack/CHANGELOG.md index b9aae4b..0fd3471 100644 --- a/packages/adapters/tanstack/CHANGELOG.md +++ b/packages/adapters/tanstack/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-tanstack +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/adapters/tanstack/package.json b/packages/adapters/tanstack/package.json index ac8a73a..558c3ca 100644 --- a/packages/adapters/tanstack/package.json +++ b/packages/adapters/tanstack/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-tanstack", - "version": "3.0.2", + "version": "3.0.3", "description": "TanStack Start adapter for TheAuth", "type": "module", "main": "dist/index.js", diff --git a/packages/auth/email/CHANGELOG.md b/packages/auth/email/CHANGELOG.md index 64a8802..9eacb99 100644 --- a/packages/auth/email/CHANGELOG.md +++ b/packages/auth/email/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-email +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/auth/email/package.json b/packages/auth/email/package.json index c7f6cdd..44334e3 100644 --- a/packages/auth/email/package.json +++ b/packages/auth/email/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-email", - "version": "3.0.2", + "version": "3.0.3", "description": "Email and password authentication for TheAuth", "type": "module", "main": "dist/index.js", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index f079e86..7059db5 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # @glinr/theauth-cli +## 0.1.5 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + - @glinr/theauth-hono@4.0.0 + ## 0.1.4 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 68d322c..6e8d238 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-cli", - "version": "0.1.4", + "version": "0.1.5", "description": "TheAuth CLI - setup wizard, dashboard launcher, and development tools", "type": "module", "bin": { diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 9a1e5fd..5600fc8 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,23 @@ # @glinr/theauth-client +## 0.2.0 + +### Minor Changes + +- TheAuth is now the canonical naming across the SDK (`TheAuthClient`, + `TheAuthProvider`, `TheAuthError`, `createTheAuth`, and per-adapter + equivalents like `theAuthExpress`/`theAuthHono`). This resolves a + three-way naming collision: an earlier pass renamed `Kavach*` to `Auth*`, + this pass supersedes that with `TheAuth*` as canonical. + + Non-breaking. Both `Auth*` and `Kavach*` names remain as deprecated + aliases pointing at the same implementation and will keep working until + a future major version. No behavior changed, only naming. + + Also fixes two adapters (`express`, `hono`) that were missed by the + earlier `Auth*` rename entirely and still only exported `kavach`-prefixed + names. + ## 0.1.0 ### Minor Changes diff --git a/packages/client/package.json b/packages/client/package.json index 0c050c2..fc7a966 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-client", - "version": "0.1.0", + "version": "0.2.0", "description": "TypeScript client for the TheAuth REST API", "license": "MIT", "author": "TheAuth ", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 5e2540f..c92dff3 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,23 @@ # theauth +## 0.5.0 + +### Minor Changes + +- TheAuth is now the canonical naming across the SDK (`TheAuthClient`, + `TheAuthProvider`, `TheAuthError`, `createTheAuth`, and per-adapter + equivalents like `theAuthExpress`/`theAuthHono`). This resolves a + three-way naming collision: an earlier pass renamed `Kavach*` to `Auth*`, + this pass supersedes that with `TheAuth*` as canonical. + + Non-breaking. Both `Auth*` and `Kavach*` names remain as deprecated + aliases pointing at the same implementation and will keep working until + a future major version. No behavior changed, only naming. + + Also fixes two adapters (`express`, `hono`) that were missed by the + earlier `Auth*` rename entirely and still only exported `kavach`-prefixed + names. + ## 0.4.2 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index a33cd6e..7fb65b0 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth", - "version": "0.4.2", + "version": "0.5.0", "description": "The auth OS for AI agents - identity, permissions, delegation, and audit for the agentic era", "type": "module", "main": "dist/index.js", diff --git a/packages/electron/CHANGELOG.md b/packages/electron/CHANGELOG.md index 066b9ff..0823291 100644 --- a/packages/electron/CHANGELOG.md +++ b/packages/electron/CHANGELOG.md @@ -1,5 +1,23 @@ # @glinr/theauth-electron +## 0.2.0 + +### Minor Changes + +- TheAuth is now the canonical naming across the SDK (`TheAuthClient`, + `TheAuthProvider`, `TheAuthError`, `createTheAuth`, and per-adapter + equivalents like `theAuthExpress`/`theAuthHono`). This resolves a + three-way naming collision: an earlier pass renamed `Kavach*` to `Auth*`, + this pass supersedes that with `TheAuth*` as canonical. + + Non-breaking. Both `Auth*` and `Kavach*` names remain as deprecated + aliases pointing at the same implementation and will keep working until + a future major version. No behavior changed, only naming. + + Also fixes two adapters (`express`, `hono`) that were missed by the + earlier `Auth*` rename entirely and still only exported `kavach`-prefixed + names. + ## 0.1.0 ### Minor Changes diff --git a/packages/electron/package.json b/packages/electron/package.json index 523679a..d2a86c9 100644 --- a/packages/electron/package.json +++ b/packages/electron/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-electron", - "version": "0.1.0", + "version": "0.2.0", "description": "TheAuth auth client for Electron desktop apps", "type": "module", "main": "dist/index.js", diff --git a/packages/expo/CHANGELOG.md b/packages/expo/CHANGELOG.md index 4e9b44b..d24093b 100644 --- a/packages/expo/CHANGELOG.md +++ b/packages/expo/CHANGELOG.md @@ -1,5 +1,23 @@ # @glinr/theauth-expo +## 0.2.0 + +### Minor Changes + +- TheAuth is now the canonical naming across the SDK (`TheAuthClient`, + `TheAuthProvider`, `TheAuthError`, `createTheAuth`, and per-adapter + equivalents like `theAuthExpress`/`theAuthHono`). This resolves a + three-way naming collision: an earlier pass renamed `Kavach*` to `Auth*`, + this pass supersedes that with `TheAuth*` as canonical. + + Non-breaking. Both `Auth*` and `Kavach*` names remain as deprecated + aliases pointing at the same implementation and will keep working until + a future major version. No behavior changed, only naming. + + Also fixes two adapters (`express`, `hono`) that were missed by the + earlier `Auth*` rename entirely and still only exported `kavach`-prefixed + names. + ## 0.1.0 ### Minor Changes diff --git a/packages/expo/package.json b/packages/expo/package.json index 68e2573..a9f9457 100644 --- a/packages/expo/package.json +++ b/packages/expo/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-expo", - "version": "0.1.0", + "version": "0.2.0", "description": "React Native / Expo client for TheAuth auth", "type": "module", "main": "dist/index.js", diff --git a/packages/gateway/CHANGELOG.md b/packages/gateway/CHANGELOG.md index 14480db..4a5abb3 100644 --- a/packages/gateway/CHANGELOG.md +++ b/packages/gateway/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-gateway +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/gateway/package.json b/packages/gateway/package.json index 3d0d3b6..28c9021 100644 --- a/packages/gateway/package.json +++ b/packages/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-gateway", - "version": "3.0.2", + "version": "3.0.3", "description": "Standalone auth proxy for TheAuth - enforces auth, authorization, and audit in front of any API or MCP server", "type": "module", "main": "dist/index.js", diff --git a/packages/plugins/discovery/CHANGELOG.md b/packages/plugins/discovery/CHANGELOG.md index 6291316..56e1654 100644 --- a/packages/plugins/discovery/CHANGELOG.md +++ b/packages/plugins/discovery/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-plugin-discovery +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/plugins/discovery/package.json b/packages/plugins/discovery/package.json index 37d69e9..717c372 100644 --- a/packages/plugins/discovery/package.json +++ b/packages/plugins/discovery/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-plugin-discovery", - "version": "3.0.2", + "version": "3.0.3", "description": "A2A agent capability card discovery plugin for TheAuth", "type": "module", "main": "dist/index.js", diff --git a/packages/plugins/telemetry/CHANGELOG.md b/packages/plugins/telemetry/CHANGELOG.md index b0efcd1..6cfb994 100644 --- a/packages/plugins/telemetry/CHANGELOG.md +++ b/packages/plugins/telemetry/CHANGELOG.md @@ -1,5 +1,12 @@ # @glinr/theauth-plugin-telemetry +## 3.0.3 + +### Patch Changes + +- Updated dependencies + - @glinr/theauth@0.5.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/plugins/telemetry/package.json b/packages/plugins/telemetry/package.json index 738bf2a..c46c03f 100644 --- a/packages/plugins/telemetry/package.json +++ b/packages/plugins/telemetry/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-plugin-telemetry", - "version": "3.0.2", + "version": "3.0.3", "description": "OpenTelemetry integration plugin for TheAuth — converts auth events into OTel spans", "type": "module", "main": "dist/index.js", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 3cc72ad..584bfbe 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,23 @@ # @glinr/theauth-react +## 0.6.0 + +### Minor Changes + +- TheAuth is now the canonical naming across the SDK (`TheAuthClient`, + `TheAuthProvider`, `TheAuthError`, `createTheAuth`, and per-adapter + equivalents like `theAuthExpress`/`theAuthHono`). This resolves a + three-way naming collision: an earlier pass renamed `Kavach*` to `Auth*`, + this pass supersedes that with `TheAuth*` as canonical. + + Non-breaking. Both `Auth*` and `Kavach*` names remain as deprecated + aliases pointing at the same implementation and will keep working until + a future major version. No behavior changed, only naming. + + Also fixes two adapters (`express`, `hono`) that were missed by the + earlier `Auth*` rename entirely and still only exported `kavach`-prefixed + names. + ## 0.2.0 ### Minor Changes diff --git a/packages/react/package.json b/packages/react/package.json index 5ef29d4..3d01916 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-react", - "version": "0.5.0", + "version": "0.6.0", "description": "React hooks for TheAuth auth (with v0.5 session rotation)", "type": "module", "sideEffects": false, diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index af29021..a498808 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,23 @@ # @glinr/theauth-svelte +## 0.2.0 + +### Minor Changes + +- TheAuth is now the canonical naming across the SDK (`TheAuthClient`, + `TheAuthProvider`, `TheAuthError`, `createTheAuth`, and per-adapter + equivalents like `theAuthExpress`/`theAuthHono`). This resolves a + three-way naming collision: an earlier pass renamed `Kavach*` to `Auth*`, + this pass supersedes that with `TheAuth*` as canonical. + + Non-breaking. Both `Auth*` and `Kavach*` names remain as deprecated + aliases pointing at the same implementation and will keep working until + a future major version. No behavior changed, only naming. + + Also fixes two adapters (`express`, `hono`) that were missed by the + earlier `Auth*` rename entirely and still only exported `kavach`-prefixed + names. + ## 0.1.0 ### Minor Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 18c61bf..5a4dc92 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-svelte", - "version": "0.1.0", + "version": "0.2.0", "description": "Svelte stores for TheAuth auth", "type": "module", "main": "dist/index.js", diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index ce63e79..2dc545f 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -1,5 +1,23 @@ # @glinr/theauth-vue +## 0.2.0 + +### Minor Changes + +- TheAuth is now the canonical naming across the SDK (`TheAuthClient`, + `TheAuthProvider`, `TheAuthError`, `createTheAuth`, and per-adapter + equivalents like `theAuthExpress`/`theAuthHono`). This resolves a + three-way naming collision: an earlier pass renamed `Kavach*` to `Auth*`, + this pass supersedes that with `TheAuth*` as canonical. + + Non-breaking. Both `Auth*` and `Kavach*` names remain as deprecated + aliases pointing at the same implementation and will keep working until + a future major version. No behavior changed, only naming. + + Also fixes two adapters (`express`, `hono`) that were missed by the + earlier `Auth*` rename entirely and still only exported `kavach`-prefixed + names. + ## 0.1.0 ### Minor Changes diff --git a/packages/vue/package.json b/packages/vue/package.json index e621bcd..427a3c5 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@glinr/theauth-vue", - "version": "0.1.0", + "version": "0.2.0", "description": "Vue 3 composables for TheAuth auth", "type": "module", "main": "dist/index.js",