Skip to content

Commit

Permalink
↗️ [patch](deps): bump hono from 4.6.10 to 4.6.12 (#668)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Douglas DUTEIL <[email protected]>
  • Loading branch information
dependabot[bot] and douglasduteil authored Nov 26, 2024
1 parent 6e9f870 commit 0e3a8a3
Show file tree
Hide file tree
Showing 23 changed files with 66 additions and 79 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"@~/app.core": "workspace:*",
"consola": "3.2.3",
"dotenv": "16.4.5",
"hono": "4.6.10",
"hono": "4.6.12",
"tsx": "4.19.1"
},
"devDependencies": {
Expand All @@ -82,7 +82,7 @@
"typescript": "5.6.3"
},
"overrides": {
"hono": "4.6.10"
"hono": "4.6.12"
},
"release-it": {
"git": {
Expand Down
2 changes: 1 addition & 1 deletion packages/hono-slotify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"test": "bun test"
},
"dependencies": {
"hono": "4.6.10"
"hono": "4.6.12"
},
"devDependencies": {
"@~/config.typescript": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion packages/~/app/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"await-to-js": "3.0.0",
"consola": "3.2.3",
"drizzle-orm": "0.36.3",
"hono": "4.6.10",
"hono": "4.6.12",
"htmx.ext...chunked-transfer": "1.0.4",
"htmx.org": "1.9.12",
"hyperscript.org": "0.9.13",
Expand Down
2 changes: 1 addition & 1 deletion packages/~/app/layout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@~/app.core": "workspace:*",
"@~/app.middleware": "workspace:*",
"@~/app.urls": "workspace:*",
"hono": "4.6.10",
"hono": "4.6.12",
"nprogress": "0.2.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/~/app/middleware/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@~/app.urls": "workspace:*",
"@~/moncomptepro.database": "workspace:*",
"@~/moncomptepro.lib": "workspace:*",
"hono": "4.6.10",
"hono": "4.6.12",
"hono-sessions": "0.7.0",
"openid-client": "5.7.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/~/app/sentry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@sentry/profiling-node": "8.37.1",
"@~/app.core": "workspace:*",
"consola": "3.2.3",
"hono": "4.6.10"
"hono": "4.6.12"
},
"devDependencies": {
"@~/config.typescript": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion packages/~/app/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"dependencies": {
"@~/app.core": "workspace:*",
"@~/app.urls": "workspace:*",
"hono": "4.6.10",
"hono": "4.6.12",
"hono-slotify": "workspace:*",
"tailwind-variants": "0.2.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/~/app/urls/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"dependencies": {
"consola": "3.2.3",
"hono": "4.6.10",
"hono": "4.6.12",
"static-path": "0.0.4"
},
"devDependencies": {
Expand Down
101 changes: 44 additions & 57 deletions packages/~/app/urls/src/pattern.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ declare const app: import("hono/hono-base").HonoBase<
$get: {
input: {
query: {
code: string | string[];
state: string | string[];
code: string;
state: string;
};
};
output: undefined;
Expand Down Expand Up @@ -204,7 +204,7 @@ declare const app: import("hono/hono-base").HonoBase<
};
} & {
query: {
describedby: string | string[];
describedby: string;
};
};
output: {};
Expand All @@ -225,8 +225,8 @@ declare const app: import("hono/hono-base").HonoBase<
};
} & {
query: {
user_id: string | string[];
organization_id: string | string[];
user_id: string;
organization_id: string;
};
};
output: {};
Expand Down Expand Up @@ -266,12 +266,8 @@ declare const app: import("hono/hono-base").HonoBase<
};
} & {
form: {
message:
| import("hono/types").ParsedFormValue
| import("hono/types").ParsedFormValue[];
subject:
| import("hono/types").ParsedFormValue
| import("hono/types").ParsedFormValue[];
message: string;
subject: string;
};
};
output: "OK";
Expand Down Expand Up @@ -309,17 +305,9 @@ declare const app: import("hono/hono-base").HonoBase<
};
} & {
form: {
add_member:
| import("hono/types").ParsedFormValue
| import("hono/types").ParsedFormValue[];
add_domain?:
| import("hono/types").ParsedFormValue
| import("hono/types").ParsedFormValue[]
| undefined;
send_notitfication?:
| import("hono/types").ParsedFormValue
| import("hono/types").ParsedFormValue[]
| undefined;
add_member: "AS_INTERNAL" | "AS_EXTERNAL";
add_domain?: string | undefined;
send_notitfication?: string | undefined;
};
};
output: {};
Expand Down Expand Up @@ -400,9 +388,9 @@ declare const app: import("hono/hono-base").HonoBase<
};
} & {
query: {
describedby: string | string[];
page?: string | string[] | undefined;
page_size?: string | string[] | undefined;
describedby: string;
page?: string | undefined;
page_size?: string | undefined;
};
};
output: {};
Expand Down Expand Up @@ -439,9 +427,9 @@ declare const app: import("hono/hono-base").HonoBase<
$get: {
input: {
query: {
page?: string | string[] | undefined;
page_size?: string | string[] | undefined;
q?: string | string[] | undefined;
page?: string | undefined;
page_size?: string | undefined;
q?: string | undefined;
};
};
output: {};
Expand All @@ -461,7 +449,7 @@ declare const app: import("hono/hono-base").HonoBase<
$get: {
input: {
query: {
siret: string | string[];
siret: string;
};
};
output: {};
Expand All @@ -480,9 +468,9 @@ declare const app: import("hono/hono-base").HonoBase<
$get: {
input: {
query: {
page?: string | string[] | undefined;
page_size?: string | string[] | undefined;
q?: string | string[] | undefined;
page?: string | undefined;
page_size?: string | undefined;
q?: string | undefined;
};
};
output: {};
Expand Down Expand Up @@ -520,7 +508,7 @@ declare const app: import("hono/hono-base").HonoBase<
};
} & {
query: {
describedby: string | string[];
describedby: string;
};
};
output: {};
Expand All @@ -537,9 +525,7 @@ declare const app: import("hono/hono-base").HonoBase<
};
} & {
form: {
domain:
| import("hono/types").ParsedFormValue
| import("hono/types").ParsedFormValue[];
domain: string;
};
};
output: "OK";
Expand Down Expand Up @@ -592,10 +578,10 @@ declare const app: import("hono/hono-base").HonoBase<
};
} & {
query: {
describedby: string | string[];
page_ref: string | string[];
page?: string | string[] | undefined;
page_size?: string | string[] | undefined;
describedby: string;
page_ref: string;
page?: string | undefined;
page_size?: string | undefined;
};
};
output: {};
Expand All @@ -610,9 +596,7 @@ declare const app: import("hono/hono-base").HonoBase<
$post: {
input: {
form: {
is_external:
| import("hono/types").ParsedFormValue
| import("hono/types").ParsedFormValue[];
is_external: string;
};
} & {
param: {
Expand All @@ -636,13 +620,16 @@ declare const app: import("hono/hono-base").HonoBase<
} & {
form: {
verification_type?:
| import("hono/types").ParsedFormValue
| import("hono/types").ParsedFormValue[]
| undefined;
is_external?:
| import("hono/types").ParsedFormValue
| import("hono/types").ParsedFormValue[]
| ""
| "code_sent_to_official_contact_email"
| "in_liste_dirigeants_rna"
| "no_validation_means_available"
| "official_contact_domain"
| "official_contact_email"
| "trackdechets_email_domain"
| "verified_email_domain"
| undefined;
is_external?: string | undefined;
};
};
output: "OK";
Expand Down Expand Up @@ -675,10 +662,10 @@ declare const app: import("hono/hono-base").HonoBase<
};
} & {
query: {
describedby: string | string[];
page_ref: string | string[];
page?: string | string[] | undefined;
page_size?: string | string[] | undefined;
describedby: string;
page_ref: string;
page?: string | undefined;
page_size?: string | undefined;
};
};
output: {};
Expand Down Expand Up @@ -718,10 +705,10 @@ declare const app: import("hono/hono-base").HonoBase<
$get: {
input: {
query: {
page?: string | string[] | undefined;
page_size?: string | string[] | undefined;
q?: string | string[] | undefined;
id?: string | string[] | undefined;
page?: string | undefined;
page_size?: string | undefined;
q?: string | undefined;
id?: string | undefined;
};
};
output: {};
Expand Down
2 changes: 1 addition & 1 deletion packages/~/auth/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@~/app.core": "workspace:*",
"@~/app.middleware": "workspace:*",
"@~/app.urls": "workspace:*",
"hono": "4.6.10",
"hono": "4.6.12",
"openid-client": "5.7.0",
"zod": "3.23.8"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/~/config/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"@tsconfig/bun": "1.0.7",
"@tsconfig/strictest": "2.0.5",
"bun-types": "1.1.30",
"hono": "4.6.10"
"hono": "4.6.12"
}
}
2 changes: 1 addition & 1 deletion packages/~/infra/crisp/middleware/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"test": "bun test"
},
"dependencies": {
"hono": "4.6.10"
"hono": "4.6.12"
},
"devDependencies": {
"@~/config.typescript": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/~/infra/moncomptepro/database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@~/moncomptepro.lib": "workspace:*",
"consola": "3.2.3",
"drizzle-orm": "0.36.3",
"hono": "4.6.10",
"hono": "4.6.12",
"pg": "8.13.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/~/infra/zammad/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@hono/zod-validator": "0.4.1",
"@~/app.core": "workspace:*",
"@~/zammad.lib": "workspace:*",
"hono": "4.6.10",
"hono": "4.6.12",
"ts-pattern": "5.5.0",
"zod": "3.23.8"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/~/moderations/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@~/zammad.lib": "workspace:*",
"await-to-js": "3.0.0",
"drizzle-orm": "0.36.3",
"hono": "4.6.10",
"hono": "4.6.12",
"tailwind-variants": "0.2.1",
"ts-dedent": "2.2.0",
"ts-pattern": "5.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/~/moderations/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@~/organizations.lib": "workspace:*",
"@~/users.lib": "workspace:*",
"@~/moderations.lib": "workspace:*",
"hono": "4.6.10",
"hono": "4.6.12",
"tailwind-variants": "0.2.1",
"ts-pattern": "5.5.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/~/organizations/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@~/organizations.repository": "workspace:*",
"@~/organizations.ui": "workspace:*",
"@~/users.repository": "workspace:*",
"hono": "4.6.10",
"hono": "4.6.12",
"lodash.sortby": "4.7.0",
"tailwind-variants": "0.2.1",
"ts-pattern": "5.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/~/organizations/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@~/app.ui": "workspace:*",
"@~/app.urls": "workspace:*",
"@~/organizations.lib": "workspace:*",
"hono": "4.6.10",
"hono": "4.6.12",
"tailwind-variants": "0.2.1",
"ts-pattern": "5.5.0",
"zod": "3.23.8"
Expand Down
2 changes: 1 addition & 1 deletion packages/~/proxy/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
},
"dependencies": {
"hono": "4.6.10"
"hono": "4.6.12"
},
"devDependencies": {
"@~/config.typescript": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion packages/~/users/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@~/moderations.repository": "workspace:*",
"@~/organizations.repository": "workspace:*",
"@~/users.repository": "workspace:*",
"hono": "4.6.10",
"hono": "4.6.12",
"ts-pattern": "5.5.0",
"zod": "3.23.8"
},
Expand Down
Loading

0 comments on commit 0e3a8a3

Please sign in to comment.