[PR #364] [MERGED] Bump hono from 4.11.3 to 4.11.4 #1271

Closed
opened 2026-04-26 00:16:33 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/364
Author: @dependabot[bot]
Created: 1/13/2026
Status: Merged
Merged: 1/15/2026
Merged by: @gschier

Base: mainHead: dependabot/npm_and_yarn/hono-4.11.4


📝 Commits (1)

  • 6543c79 Bump hono from 4.11.3 to 4.11.4

📊 Changes

2 files changed (+5 additions, -5 deletions)

View changed files

📝 package-lock.json (+4 -4)
📝 plugins-external/mcp-server/package.json (+1 -1)

📄 Description

Bumps hono from 4.11.3 to 4.11.4.

Release notes

Sourced from hono's releases.

v4.11.4

Security

Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS middleware.

Both middlewares now require an explicit algorithm configuration to prevent the verification algorithm from being influenced by untrusted JWT header values.

If you are using the JWT or JWK/JWKS middleware, please update to the latest version as soon as possible.

JWT middleware

import { jwt } from 'hono/jwt'

app.use( '/auth/*', jwt({ secret: 'it-is-very-secret', alg: 'HS256', // required }) )

JWK/JWKS middleware

import { jwk } from 'hono/jwk'

app.use( '/auth/*', jwk({ jwks_uri: 'https://example.com/.well-known/jwks.json', alg: ['RS256'], // required (asymmetric algorithms only) }) )

For more details, see the Security Advisory.

What's Changed

New Contributors

... (truncated)

Commits
  • 28452f0 4.11.4
  • 190f6e2 Merge commit from fork
  • a48ef18 test: support alg option for JWT middleware (#4624)
  • cc0aa7a Merge commit from fork
  • ef2a4b8 docs(bun/websocket): Fixed a typo in hono/bun deprecation message and updated...
  • 8139399 chore: bump @hono/eslint-config and enable curly rule (#4620)
  • 4e87275 test(utils/jwt): add missing algorithm types in jwa.test.ts (#4606) (#4607)
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mountain-loop/yaak/pull/364 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/13/2026 **Status:** ✅ Merged **Merged:** 1/15/2026 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/hono-4.11.4` --- ### 📝 Commits (1) - [`6543c79`](https://github.com/mountain-loop/yaak/commit/6543c79abb0ef5f9234033244648d43478970065) Bump hono from 4.11.3 to 4.11.4 ### 📊 Changes **2 files changed** (+5 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+4 -4) 📝 `plugins-external/mcp-server/package.json` (+1 -1) </details> ### 📄 Description Bumps [hono](https://github.com/honojs/hono) from 4.11.3 to 4.11.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/honojs/hono/releases">hono's releases</a>.</em></p> <blockquote> <h2>v4.11.4</h2> <h2>Security</h2> <p>Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS middleware.</p> <p>Both middlewares now require an explicit algorithm configuration to prevent the verification algorithm from being influenced by untrusted JWT header values.</p> <p>If you are using the JWT or JWK/JWKS middleware, please update to the latest version as soon as possible.</p> <h3>JWT middleware</h3> <pre lang="ts"><code>import { jwt } from 'hono/jwt' <p>app.use( '/auth/*', jwt({ secret: 'it-is-very-secret', alg: 'HS256', // required }) ) </code></pre></p> <h3>JWK/JWKS middleware</h3> <pre lang="ts"><code>import { jwk } from 'hono/jwk' <p>app.use( '/auth/*', jwk({ jwks_uri: '<a href="https://example.com/.well-known/jwks.json">https://example.com/.well-known/jwks.json</a>', alg: ['RS256'], // required (asymmetric algorithms only) }) ) </code></pre></p> <p>For more details, see the Security Advisory.</p> <ul> <li><a href="https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4">https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4</a></li> <li><a href="https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4">https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4</a></li> </ul> <h2>What's Changed</h2> <ul> <li>test(utils/jwt): add missing algorithm types in jwa.test.ts by <a href="https://github.com/flathill404"><code>@​flathill404</code></a> in <a href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li> <li>chore: bump <code>@hono/eslint-config</code> and enable curly rule by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a href="https://redirect.github.com/honojs/hono/pull/4620">honojs/hono#4620</a></li> <li>docs(bun/websocket): Fixed a typo in hono/bun deprecation message and updated test. by <a href="https://github.com/Itsnotaka"><code>@​Itsnotaka</code></a> in <a href="https://redirect.github.com/honojs/hono/pull/4618">honojs/hono#4618</a></li> <li>test: support <code>alg</code> option for JWT middleware by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a href="https://redirect.github.com/honojs/hono/pull/4624">honojs/hono#4624</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/flathill404"><code>@​flathill404</code></a> made their first contribution in <a href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/honojs/hono/commit/28452f06319ef12df94b826450f36486e286565d"><code>28452f0</code></a> 4.11.4</li> <li><a href="https://github.com/honojs/hono/commit/190f6e28e2ca85ce3d1f2f54db1310f5f3eab134"><code>190f6e2</code></a> Merge commit from fork</li> <li><a href="https://github.com/honojs/hono/commit/a48ef183d46c95053003dba4f107f95b5c637ffd"><code>a48ef18</code></a> test: support <code>alg</code> option for JWT middleware (<a href="https://redirect.github.com/honojs/hono/issues/4624">#4624</a>)</li> <li><a href="https://github.com/honojs/hono/commit/cc0aa7ae327ed84cc391d29086dec2a3e44e7a1f"><code>cc0aa7a</code></a> Merge commit from fork</li> <li><a href="https://github.com/honojs/hono/commit/ef2a4b8d77711c9308a6ddca9e35d4ff321f97fe"><code>ef2a4b8</code></a> docs(bun/websocket): Fixed a typo in hono/bun deprecation message and updated...</li> <li><a href="https://github.com/honojs/hono/commit/8139399f68e3f3f60adffee0c49630d34310a361"><code>8139399</code></a> chore: bump <code>@hono/eslint-config</code> and enable curly rule (<a href="https://redirect.github.com/honojs/hono/issues/4620">#4620</a>)</li> <li><a href="https://github.com/honojs/hono/commit/4e872759b092e34458aeecb8b72e3e0c4d4f1784"><code>4e87275</code></a> test(utils/jwt): add missing algorithm types in jwa.test.ts (<a href="https://redirect.github.com/honojs/hono/issues/4606">#4606</a>) (<a href="https://redirect.github.com/honojs/hono/issues/4607">#4607</a>)</li> <li>See full diff in <a href="https://github.com/honojs/hono/compare/v4.11.3...v4.11.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hono&package-manager=npm_and_yarn&previous-version=4.11.3&new-version=4.11.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/mountain-loop/yaak/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-26 00:16:33 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/yaak#1271