From 86b1741592f18418d131470cebf330e65deb429c Mon Sep 17 00:00:00 2001 From: Nicolas Ettlin Date: Mon, 17 Nov 2025 14:25:36 -0800 Subject: [PATCH 1/3] Update the changelog for v0.1.105 --- packages/convex-helpers/CHANGELOG.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/convex-helpers/CHANGELOG.md b/packages/convex-helpers/CHANGELOG.md index 4b95bc22..5e576e15 100644 --- a/packages/convex-helpers/CHANGELOG.md +++ b/packages/convex-helpers/CHANGELOG.md @@ -1,8 +1,14 @@ # Changelog -## 0.1.105 alpha - -- Add more type safety to onSuccess +## 0.1.105 +- **convex-helpers now supports Zod 4!** (#840) + - The new methods that support Zod 4 can be found in `convex-helpers/server/zod4` + - Existing types and methods for Zod 3 support have been moved + (`convex-helpers/server/zod` → `convex-helpers/server/zod3`) + - Thanks to @ksinghal and @natedunn for their contributions to this improvement. +- Zod 3 support: fix the return types of `zodOutputToConvex` for objects and unions + (credit: gari-ix) +- Zod 3 support: improve the type safety of `onSuccess` in custom function builders ## 0.1.104 From 558801673a2893db3ac3a6ace7c450fe25cbd27d Mon Sep 17 00:00:00 2001 From: Nicolas Ettlin Date: Mon, 17 Nov 2025 14:35:37 -0800 Subject: [PATCH 2/3] Fix formatting --- packages/convex-helpers/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/convex-helpers/CHANGELOG.md b/packages/convex-helpers/CHANGELOG.md index 5e576e15..f4bc09bb 100644 --- a/packages/convex-helpers/CHANGELOG.md +++ b/packages/convex-helpers/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## 0.1.105 + - **convex-helpers now supports Zod 4!** (#840) - The new methods that support Zod 4 can be found in `convex-helpers/server/zod4` - Existing types and methods for Zod 3 support have been moved From a26b354525293beac4107a56728234d8e5f4e16d Mon Sep 17 00:00:00 2001 From: Nicolas Ettlin Date: Mon, 17 Nov 2025 15:15:55 -0800 Subject: [PATCH 3/3] Add missing item to the changelog --- packages/convex-helpers/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/convex-helpers/CHANGELOG.md b/packages/convex-helpers/CHANGELOG.md index f4bc09bb..de4e75b1 100644 --- a/packages/convex-helpers/CHANGELOG.md +++ b/packages/convex-helpers/CHANGELOG.md @@ -10,6 +10,8 @@ - Zod 3 support: fix the return types of `zodOutputToConvex` for objects and unions (credit: gari-ix) - Zod 3 support: improve the type safety of `onSuccess` in custom function builders +- Sessions: If the only argument to a session function is the sessionId, + allow omitting args in React. ## 0.1.104