Skip to content

Commit 86bd342

Browse files
chore(deps): bump hono from 4.5.5 to 4.5.8 (#477)
* chore(deps): bump hono from 4.5.5 to 4.5.8 Bumps [hono](https://github.com/honojs/hono) from 4.5.5 to 4.5.8. - [Release notes](https://github.com/honojs/hono/releases) - [Commits](honojs/hono@v4.5.5...v4.5.8) --- updated-dependencies: - dependency-name: hono dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * chore(urls): patterns update --------- 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 9c4e53e commit 86bd342

File tree

20 files changed

+53
-53
lines changed

20 files changed

+53
-53
lines changed

bun.lockb

0 Bytes
Binary file not shown.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"@~/app.core": "workspace:*",
6363
"consola": "3.2.3",
6464
"dotenv": "16.4.5",
65-
"hono": "4.5.5",
65+
"hono": "4.5.8",
6666
"tsx": "4.16.5"
6767
},
6868
"devDependencies": {
@@ -78,7 +78,7 @@
7878
"typescript": "5.5.4"
7979
},
8080
"overrides": {
81-
"hono": "4.5.3"
81+
"hono": "4.5.8"
8282
},
8383
"release-it": {
8484
"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.5"
11+
"hono": "4.5.8"
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.5",
26+
"hono": "4.5.8",
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.5",
18+
"hono": "4.5.8",
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.5",
30+
"hono": "4.5.8",
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/profiling-node": "8.26.0",
1919
"@~/app.core": "workspace:*",
2020
"consola": "3.2.3",
21-
"hono": "4.5.5"
21+
"hono": "4.5.8"
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.5",
53+
"hono": "4.5.8",
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.5",
18+
"hono": "4.5.8",
1919
"static-path": "0.0.4",
2020
"type-fest": "4.23.0"
2121
},

packages/~/app/urls/src/hx_urls.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ type HxClientRequest<TSchema extends Schema> = {
5050
? Method extends Methods
5151
? $Input extends Endpoint["input"]
5252
? HasRequiredKeys<Omit<$Input, "form">> extends true
53-
? <$Args extends SetOptional<$Input, "form">>(
53+
? <$Args extends SetOptional<$Input, any>>(
5454
args: $Args,
5555
options?: HxClientRequestOptions,
5656
) => HtmxSpecifiedAttributes<Method, $Args>
57-
: <$Args extends SetOptional<$Input, "form">>(
57+
: <$Args extends SetOptional<$Input, any>>(
5858
args?: $Args,
5959
options?: HxClientRequestOptions,
6060
) => HtmxSpecifiedAttributes<Method, $Args>

0 commit comments

Comments
 (0)