Version Packages (#177)

pull/182/head @hono/zod-openapi@0.7.0
github-actions[bot] 2023-09-26 17:21:38 +09:00 committed by GitHub
parent 047eca5ca9
commit d4ae60d489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 25 additions and 24 deletions

View File

@ -1,5 +0,0 @@
---
'@hono/zod-openapi': patch
---
fix(zod-openapi): enable `basePath()`

View File

@ -1,5 +0,0 @@
---
'@hono/zod-validator': patch
---
add: Async zod support

View File

@ -1,5 +0,0 @@
---
'@hono/zod-openapi': patch
---
fix(zod-openapi): make multiple routes types correct for `hc`

View File

@ -1,5 +0,0 @@
---
'@hono/zod-openapi': minor
---
Add defaultHook as an option for OpenAPIHono

View File

@ -1,5 +1,20 @@
# @hono/zod-openapi
## 0.7.0
### Minor Changes
- [#170](https://github.com/honojs/middleware/pull/170) [`9c45dbc`](https://github.com/honojs/middleware/commit/9c45dbc41d46ae4d04d9351757020d7ad528b400) Thanks [@msutkowski](https://github.com/msutkowski)! - Add defaultHook as an option for OpenAPIHono
### Patch Changes
- [#179](https://github.com/honojs/middleware/pull/179) [`047eca5`](https://github.com/honojs/middleware/commit/047eca5ca99085ee8c4f1581b17c8ebeae6afc82) Thanks [@yusukebe](https://github.com/yusukebe)! - fix(zod-openapi): enable `basePath()`
- [#176](https://github.com/honojs/middleware/pull/176) [`fb63ef4`](https://github.com/honojs/middleware/commit/fb63ef413cb7b843aebe756a5322bdd10ba74500) Thanks [@yusukebe](https://github.com/yusukebe)! - fix(zod-openapi): make multiple routes types correct for `hc`
- Updated dependencies [[`a9123dd`](https://github.com/honojs/middleware/commit/a9123dd9e3e90d4d73f495d6b407ebacf9ea0ad8)]:
- @hono/zod-validator@0.1.9
## 0.6.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@hono/zod-openapi",
"version": "0.6.0",
"version": "0.7.0",
"description": "A wrapper class of Hono which supports OpenAPI.",
"type": "module",
"main": "dist/index.js",
@ -31,13 +31,13 @@
"zod": "3.*"
},
"devDependencies": {
"@hono/zod-validator": "^0.1.8",
"@hono/zod-validator": "^0.1.9",
"hono": "^3.7.2",
"zod": "^3.22.1"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^5.5.0",
"@hono/zod-validator": "^0.1.8"
"@hono/zod-validator": "^0.1.9"
},
"engines": {
"node": ">=16.0.0"

View File

@ -1,5 +1,11 @@
# @hono/zod-validator
## 0.1.9
### Patch Changes
- [#175](https://github.com/honojs/middleware/pull/175) [`a9123dd`](https://github.com/honojs/middleware/commit/a9123dd9e3e90d4d73f495d6b407ebacf9ea0ad8) Thanks [@WildEgo](https://github.com/WildEgo)! - add: Async zod support
## 0.1.8
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@hono/zod-validator",
"version": "0.1.8",
"version": "0.1.9",
"description": "Validator middleware using Zod",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",