Marcel Overdijk
Marcel Overdijk
When I have a schema like: ``` export const CircuitTypeSchema = z .enum([ 'RACE', 'ROAD', 'STREET' ]) .openapi('CircuitType', { description: 'Represents a circuit type.' }); export const CircuitSchema = z...
I just found out that itty-router-openapi was renamed/changed to chanfana, and I really like the concept 👍 Class-based endpoints and then either using Hono or itty-router. I wanted to try...
Fix typo `The total of race held.` (should be `The total of races held.`) in the following schema files: - `single/f1db.schema.json` - `splitted/f1db-circuits.schema.json` - `splitted/f1db-grands-prix.schema.json` As this will mean a...
Hi, I'm trying to use pino (browser) with Cloudflare Workers. This is my config do far: ``` import pino from 'pino'; const logger = pino({ base: { requestId: c.var.requestId, },...
### What version of Hono are you using? 4.5.9 ### What runtime/platform is your app running on? Cloudflare Workers ### What steps can reproduce the bug? When using `hono/logger` with...
We have already discussed this in https://github.com/cloudflare/chanfana/issues/165 , but I think it's better to create a separate issue for this, as it is not related to the original issue. When...
As found in https://github.com/f1db/f1db/issues/42 after updating the jOOQ dependency, the generated SQL statements in the SQL dump files were incorrect. If we would have had automated tests for this, this...
Add fields like: - `bestStartingGridPosition` - `bestRaceResult` - `totalRaceEntries` - `totalRaceStarts` - `totalWins` - `totalRaceLaps` - `totalPodiums` - `totalPoints` - `totalPolePositions` - `totalFastestLaps` - `totalDriverOfTheDay` - `totalGrandSlams` so statistics per...
This adds the `APPLICATION_JSON = 'application/json; charset=UTF-8'` constant which is used in the `.json()` helper (and now can be re-used). Note: this is similar as the existing `TEXT_PLAIN = 'text/plain;...