Commit d353444
authored
chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-applications/cloudflare-hono (#18806)
Bumps [hono](https://github.com/honojs/hono) from 4.10.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><a
href="https://github.com/honojs/hono/commit/79977401a0c97122999464f47bd383a2959532fd"><code>7997740</code></a>
4.11.3</li>
<li><a
href="https://github.com/honojs/hono/commit/489af0b0825fa85e8b15f4659204bf622e0573b9"><code>489af0b</code></a>
fix(types): fix middleware union type merging in MergeMiddlewareResponse
(<a
href="https://redirect.github.com/honojs/hono/issues/4602">#4602</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/6ca01ec69b17c56f84fccd866702f7f999332030"><code>6ca01ec</code></a>
4.11.2</li>
<li>Additional commits viewable in <a
href="https://github.com/honojs/hono/compare/v4.10.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />
[](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/getsentry/sentry-javascript/network/alerts).
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 32d8fda commit d353444
File tree
1 file changed
+1
-1
lines changed- dev-packages/e2e-tests/test-applications/cloudflare-hono
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
0 commit comments