cf-workers-query
Advanced tools
Comparing version 0.3.5 to 0.3.6
@@ -0,1 +1,12 @@ | ||
## 0.3.6 (2024-07-25) | ||
### 🩹 Fixes | ||
- **hono:** clone response ([cac189a](https://github.com/anymaniax/cf-workers-query/commit/cac189a)) | ||
### ❤️ Thank You | ||
- Victor Bury | ||
## 0.3.5 (2024-07-25) | ||
@@ -2,0 +13,0 @@ |
{ | ||
"name": "cf-workers-query", | ||
"version": "0.3.5", | ||
"version": "0.3.6", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "Automatically cache and revalidate data in Cloudflare Workers. Using the Cache API and Execution Context", |
@@ -8,3 +8,4 @@ import { __awaiter, __rest } from "tslib"; | ||
yield next(); | ||
return ctx.res; | ||
const clonedResponse = ctx.res.clone(); | ||
return clonedResponse; | ||
}), executionCtx: ctx.executionCtx, throwOnError: true })); | ||
@@ -11,0 +12,0 @@ return response; |
18375
266