[PR #749] [CLOSED] build(deps): bump hono from 4.9.11 to 4.10.2 in /worker #738

Closed
opened 2026-02-26 21:32:45 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dreamhunter2333/cloudflare_temp_email/pull/749
Author: @dependabot[bot]
Created: 10/22/2025
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/worker/hono-4.10.2


📝 Commits (1)

  • 4dd4cfd build(deps): bump hono from 4.9.11 to 4.10.2 in /worker

📊 Changes

2 files changed (+128 additions, -122 deletions)

View changed files

📝 worker/package.json (+1 -1)
📝 worker/pnpm-lock.yaml (+127 -121)

📄 Description

Bumps hono from 4.9.11 to 4.10.2.

Release notes

Sourced from hono's releases.

v4.10.2

Security hardening improvement

If you are using JWT middleware, please read the following and consider applying the configuration.

Improper Authorization in Hono (JWT Audience Validation)

Hono’s JWT authentication middleware did not validate the aud (Audience) claim by default. As a result, applications using the middleware without an explicit audience check could accept tokens intended for other audiences, leading to potential cross-service access (token mix-up).

The issue is addressed by adding a new verification.aud configuration option to allow RFC 7519–compliant audience validation. This change is classified as a security hardening improvement, but the lack of validation can still be considered a vulnerability in deployments that rely on default JWT verification.

Recommended secure configuration

You can enable RFC 7519–compliant audience validation using the new verification.aud option:

import { Hono } from 'hono'
import { jwt } from 'hono/jwt'

const app = new Hono()

app.use(
'/api/*',
jwt({
secret: 'my-secret',
verification: {
// Require this API to only accept tokens with aud = 'service-a'
aud: 'service-a',
},
})
)

What's Changed

New Contributors

Full Changelog: https://github.com/honojs/hono/compare/v4.10.1...v4.10.2

v4.10.1

What's Changed

Full Changelog: https://github.com/honojs/hono/compare/v4.10.0...v4.10.1

v4.10.0

Release Notes

... (truncated)

Commits

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/dreamhunter2333/cloudflare_temp_email/pull/749 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/22/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/worker/hono-4.10.2` --- ### 📝 Commits (1) - [`4dd4cfd`](https://github.com/dreamhunter2333/cloudflare_temp_email/commit/4dd4cfd89c6b7949a043085343f14f678d78a328) build(deps): bump hono from 4.9.11 to 4.10.2 in /worker ### 📊 Changes **2 files changed** (+128 additions, -122 deletions) <details> <summary>View changed files</summary> 📝 `worker/package.json` (+1 -1) 📝 `worker/pnpm-lock.yaml` (+127 -121) </details> ### 📄 Description Bumps [hono](https://github.com/honojs/hono) from 4.9.11 to 4.10.2. <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.10.2</h2> <h2>Security hardening improvement</h2> <p>If you are using JWT middleware, please read the following and consider applying the configuration.</p> <h3>Improper Authorization in Hono (JWT Audience Validation)</h3> <p>Hono’s JWT authentication middleware did not validate the aud (Audience) claim by default. As a result, applications using the middleware without an explicit audience check could accept tokens intended for other audiences, leading to potential cross-service access (token mix-up).</p> <p>The issue is addressed by adding a new <code>verification.aud</code> configuration option to allow RFC 7519–compliant audience validation. This change is classified as a security hardening improvement, but the lack of validation can still be considered a vulnerability in deployments that rely on default JWT verification.</p> <h3>Recommended secure configuration</h3> <p>You can enable RFC 7519–compliant audience validation using the new <code>verification.aud</code> option:</p> <pre lang="ts"><code>import { Hono } from 'hono' import { jwt } from 'hono/jwt' <p>const app = new Hono()</p> <p>app.use(<br /> '/api/*',<br /> jwt({<br /> secret: 'my-secret',<br /> verification: {<br /> // Require this API to only accept tokens with aud = 'service-a'<br /> aud: 'service-a',<br /> },<br /> })<br /> )<br /> </code></pre></p> <h2>What's Changed</h2> <ul> <li>tests: Fix test case of handlers without a path by <a href="https://github.com/IAmSSH"><code>@​IAmSSH</code></a> in <a href="https://redirect.github.com/honojs/hono/pull/4472">honojs/hono#4472</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/IAmSSH"><code>@​IAmSSH</code></a> made their first contribution in <a href="https://redirect.github.com/honojs/hono/pull/4472">honojs/hono#4472</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/honojs/hono/compare/v4.10.1...v4.10.2">https://github.com/honojs/hono/compare/v4.10.1...v4.10.2</a></p> <h2>v4.10.1</h2> <h2>What's Changed</h2> <ul> <li>fix(types): cannot <code>.use</code> non-return mw from <code>createMiddleware</code> by <a href="https://github.com/NamesMT"><code>@​NamesMT</code></a> in <a href="https://redirect.github.com/honojs/hono/pull/4465">honojs/hono#4465</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/honojs/hono/compare/v4.10.0...v4.10.1">https://github.com/honojs/hono/compare/v4.10.0...v4.10.1</a></p> <h2>v4.10.0</h2> <h1>Release Notes</h1> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/honojs/hono/commit/0c6455dc10db6428257bdd601eca559247e27de6"><code>0c6455d</code></a> 4.10.2</li> <li><a href="https://github.com/honojs/hono/commit/45ba3bf9e3dff8e4bd85d6b47d4b71c8d6c66bef"><code>45ba3bf</code></a> Merge commit from fork</li> <li><a href="https://github.com/honojs/hono/commit/4cbad8b3e2a67d77849710ec400d9de020c435fd"><code>4cbad8b</code></a> tests: Fix test case of handlers without a path (<a href="https://redirect.github.com/honojs/hono/issues/4472">#4472</a>)</li> <li><a href="https://github.com/honojs/hono/commit/db764c2f1d8a2905d66c78c41aa47e47d3a4165d"><code>db764c2</code></a> 4.10.1</li> <li><a href="https://github.com/honojs/hono/commit/8774bf9a59278a9593d5e91cc85543d5a4bb518c"><code>8774bf9</code></a> fix(types): cannot <code>.use</code> non-return mw from <code>createMiddleware</code> (<a href="https://redirect.github.com/honojs/hono/issues/4465">#4465</a>)</li> <li><a href="https://github.com/honojs/hono/commit/5eb7c15bb11543fca0f2fb8ee0246d3cb8ec9c96"><code>5eb7c15</code></a> 4.10.0</li> <li><a href="https://github.com/honojs/hono/commit/f0c03772e89d2c0af677825a525fcbf258cdc2b8"><code>f0c0377</code></a> Merge pull request <a href="https://redirect.github.com/honojs/hono/issues/4461">#4461</a> from honojs/next</li> <li><a href="https://github.com/honojs/hono/commit/9ae98c9416dabf6ee3ca0f9d279df0310ce9fcb4"><code>9ae98c9</code></a> fix(proxy): Correct hop-by-hop header handling per RFC 9110 (<a href="https://redirect.github.com/honojs/hono/issues/4459">#4459</a>)</li> <li><a href="https://github.com/honojs/hono/commit/12806614b92ef39e830b3f33456a02de0016701c"><code>1280661</code></a> feat(request): add cloneRawRequest utility for request cloning (<a href="https://redirect.github.com/honojs/hono/issues/4382">#4382</a>)</li> <li><a href="https://github.com/honojs/hono/commit/fb2a7eff50daafbf07461a10c7a2fb26c4eebad7"><code>fb2a7ef</code></a> feat(ssg): add default plugin that defines the recommended behavior (<a href="https://redirect.github.com/honojs/hono/issues/4394">#4394</a>)</li> <li>Additional commits viewable in <a href="https://github.com/honojs/hono/compare/v4.9.11...v4.10.2">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.9.11&new-version=4.10.2)](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/dreamhunter2333/cloudflare_temp_email/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 21:32:45 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cloudflare_temp_email#738
No description provided.