Yusuke Wada
Yusuke Wada
Hi @MonsterDeveloper ! I think this issue was fixed with the new version `v4.4.0`. Can you try it?
Woooow. Super fast and quick! I'll review this now.
Hey. The following test does not pass now. But is this expected? What do you think? @fzn0x @MathurAditya724 ```ts it('should parse data if both `all` and `dot` are set', async...
Anyway, this is a new "feature," so it may not be merged into the main immediately. So you don't have to hurry up:)
> I believe we can add this in `v4.4`, what do you think? @yusukebe Yes. Let's include this in `v4.4`.
Thanks y'all. Now ready to merge to the `next` branch for the `v4.4.0`.
Hi @iveshenry18 ! When we were challenged to create a function like a JSON path in our validator, we used a function similar to "flattenObject." But we decided not to...
@iveshenry18 Oops! I just checked and it was not a flattenObject, but a function that parses a dot-notation.
This works well: ```ts import { OpenAPIHono } from '@hono/zod-openapi' const app = new OpenAPIHono() app.post('/', async (c) => { const bod = await c.req.parseBody() return c.json(bod) }) export default...