Skip to content

Commit 9be2f06

Browse files
↗️ [patch](deps): bump hono from 4.5.10 to 4.5.11 (#513)
* ↗️ [patch](deps): bump hono from 4.5.10 to 4.5.11 Bumps [hono](https://github.com/honojs/hono) from 4.5.10 to 4.5.11. - [Release notes](https://github.com/honojs/hono/releases) - [Commits](honojs/hono@v4.5.10...v4.5.11) --- updated-dependencies: - dependency-name: hono dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * update overrides --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Douglas DUTEIL <douglasduteil@gmail.com>
1 parent c0a160e commit 9be2f06

File tree

20 files changed

+24
-24
lines changed

20 files changed

+24
-24
lines changed

bun.lockb

-2.1 KB
Binary file not shown.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@~/app.core": "workspace:*",
6464
"consola": "3.2.3",
6565
"dotenv": "16.4.5",
66-
"hono": "4.5.10",
66+
"hono": "4.5.11",
6767
"tsx": "4.19.0"
6868
},
6969
"devDependencies": {
@@ -79,7 +79,7 @@
7979
"typescript": "5.5.4"
8080
},
8181
"overrides": {
82-
"hono": "4.5.10"
82+
"hono": "4.5.11"
8383
},
8484
"release-it": {
8585
"git": {

packages/hono-slotify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"test": "bun test"
99
},
1010
"dependencies": {
11-
"hono": "4.5.10"
11+
"hono": "4.5.11"
1212
},
1313
"devDependencies": {
1414
"@~/config.typescript": "workspace:*"

packages/~/app/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"await-to-js": "3.0.0",
2424
"consola": "3.2.3",
2525
"drizzle-orm": "0.33.0",
26-
"hono": "4.5.10",
26+
"hono": "4.5.11",
2727
"htmx.ext...chunked-transfer": "1.0.4",
2828
"htmx.org": "1.9.12",
2929
"hyperscript.org": "0.9.12",

packages/~/app/layout/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@~/app.core": "workspace:*",
1616
"@~/app.middleware": "workspace:*",
1717
"@~/app.urls": "workspace:*",
18-
"hono": "4.5.10",
18+
"hono": "4.5.11",
1919
"nprogress": "0.2.0"
2020
},
2121
"devDependencies": {

packages/~/app/middleware/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@~/app.urls": "workspace:*",
2828
"@~/moncomptepro.database": "workspace:*",
2929
"@~/moncomptepro.lib": "workspace:*",
30-
"hono": "4.5.10",
30+
"hono": "4.5.11",
3131
"hono-sessions": "0.5.8",
3232
"openid-client": "5.6.5"
3333
},

packages/~/app/sentry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@sentry/node": "8.29.0",
1919
"@sentry/profiling-node": "8.29.0",
2020
"consola": "3.2.3",
21-
"hono": "4.5.10"
21+
"hono": "4.5.11"
2222
},
2323
"devDependencies": {
2424
"@~/config.typescript": "workspace:*"

packages/~/app/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"dependencies": {
5151
"@~/app.core": "workspace:*",
5252
"@~/app.urls": "workspace:*",
53-
"hono": "4.5.10",
53+
"hono": "4.5.11",
5454
"hono-slotify": "workspace:*",
5555
"tailwind-variants": "0.2.1"
5656
},

packages/~/app/urls/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"dependencies": {
1717
"consola": "3.2.3",
18-
"hono": "4.5.10",
18+
"hono": "4.5.11",
1919
"static-path": "0.0.4",
2020
"type-fest": "4.26.0"
2121
},

packages/~/app/urls/src/pattern.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ declare const app: import("hono/hono-base").HonoBase<
1414
id: string;
1515
};
1616
};
17-
output: {};
18-
outputFormat: string;
19-
status: import("hono/utils/http-status").StatusCode;
17+
output: "OK";
18+
outputFormat: "text";
19+
status: 200;
2020
};
2121
};
2222
"/organizations/:id/domains": {
@@ -116,11 +116,11 @@ declare const app: import("hono/hono-base").HonoBase<
116116
id: string;
117117
};
118118
form: {
119-
verification_type?:
119+
is_external?:
120120
| import("hono/types").ParsedFormValue
121121
| import("hono/types").ParsedFormValue[]
122122
| undefined;
123-
is_external?:
123+
verification_type?:
124124
| import("hono/types").ParsedFormValue
125125
| import("hono/types").ParsedFormValue[]
126126
| undefined;

0 commit comments

Comments
 (0)