Skip to content

Commit 36d976a

Browse files
authored
Merge pull request #216 from udecode/changeset-release/main
2 parents 0b4cf81 + 2e57b6c commit 36d976a

5 files changed

Lines changed: 55 additions & 52 deletions

File tree

.changeset/convex-135-agentic-bootstrap.md

Lines changed: 0 additions & 50 deletions
This file was deleted.

packages/kitcn/CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,56 @@
11
# kitcn
22

3+
## 0.13.0
4+
5+
### Minor Changes
6+
7+
- [#213](https://github.com/udecode/kitcn/pull/213) [`71dbc28`](https://github.com/udecode/kitcn/commit/71dbc28f9a59716f8ecd41fda8ee61709ad9c9da) Thanks [@zbeyens](https://github.com/zbeyens)! - ## Breaking changes
8+
9+
- Require explicit `basePath` when `registerRoutes` is used with non-default auth routes.
10+
11+
```ts
12+
// Before
13+
import { registerRoutes } from "kitcn/auth/http";
14+
15+
// auth config uses basePath: "/custom-auth"
16+
registerRoutes(http, getAuth, {
17+
cors: {
18+
allowedOrigins: [process.env.SITE_URL!],
19+
},
20+
});
21+
22+
// After
23+
import { registerRoutes } from "kitcn/auth/http";
24+
25+
registerRoutes(http, getAuth, {
26+
basePath: "/custom-auth",
27+
cors: {
28+
allowedOrigins: [process.env.SITE_URL!],
29+
},
30+
});
31+
```
32+
33+
- Require `better-auth@1.6.5`.
34+
35+
```bash
36+
# Before
37+
bun add better-auth@1.5.3
38+
39+
# After
40+
bun add better-auth@1.6.5
41+
```
42+
43+
## Patches
44+
45+
- Let Convex handle anonymous non-interactive local setup without forcing `CONVEX_AGENT_MODE`.
46+
- Warn when an app pins an older Convex dependency family than kitcn expects.
47+
- Support Convex `dev --start` as a pre-run conflict flag.
48+
- Improve auth route registration so default Convex auth routes avoid eager Better Auth initialization during startup.
49+
- Preserve forwarded host and protocol headers through Next.js, TanStack Start, and Convex auth route proxies.
50+
- Fix auth helper token refresh, custom auth `basePath` support, and async custom JWT payload resolution.
51+
- Fix Better Auth adapter index matching and static filtering for composite and case-insensitive queries.
52+
- Support Better Auth `1.6.5` auth clients without user-code casts.
53+
354
## 0.12.28
455

556
### Patch Changes

packages/kitcn/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kitcn",
3-
"version": "0.12.28",
3+
"version": "0.13.0",
44
"description": "kitcn - React Query integration and CLI tools for Convex",
55
"keywords": [
66
"convex",

packages/resend/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @kitcn/resend
22

3+
## 0.13.0
4+
35
## 0.12.28
46

57
## 0.12.27

packages/resend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kitcn/resend",
3-
"version": "0.12.28",
3+
"version": "0.13.0",
44
"description": "kitcn Resend plugin",
55
"type": "module",
66
"sideEffects": false,

0 commit comments

Comments
 (0)