@ts-rest/fastify
Advanced tools
Comparing version 3.39.0 to 3.39.1
# @ts-rest/fastify | ||
## 3.39.1 | ||
### Patch Changes | ||
- 4e166b3: Fix fastify crashing on malformed request JSON | ||
## 3.39.0 | ||
@@ -4,0 +10,0 @@ |
@@ -82,3 +82,3 @@ 'use strict'; | ||
else { | ||
throw err; | ||
return reply.send(err); | ||
} | ||
@@ -85,0 +85,0 @@ }; |
@@ -78,3 +78,3 @@ import { validateResponse, isAppRouteNoBody, isAppRouteOtherResponse, checkZodSchema, parseJsonQueryObject } from '@ts-rest/core'; | ||
else { | ||
throw err; | ||
return reply.send(err); | ||
} | ||
@@ -81,0 +81,0 @@ }; |
{ | ||
"name": "@ts-rest/fastify", | ||
"version": "3.39.0", | ||
"version": "3.39.1", | ||
"peerDependencies": { | ||
@@ -5,0 +5,0 @@ "fastify": "^4.0.0", |
28372