chore(deps): update all non-major dependencies - autoclosed #11
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.1.3->^0.1.4^20.17.30->^20.17.57^3.1.1->^3.1.4^9.24.0->^9.28.0>=4.5.1->>=4.7.11^15.5.1->^15.5.2^3.1.9->^3.1.1010.8.1->10.11.0^2.12.1->^2.13.0^4.19.3->^4.19.4^5.4.18->^5.4.19^0.8.9->^0.10.6^3.1.1->^3.1.4Release Notes
namesmt/utils-lambda (@namesmt/utils-lambda)
v0.1.4Compare Source
compare changes
🏡 Chore
🎨 Styles
❤️ Contributors
vitest-dev/vitest (@vitest/coverage-v8)
v3.1.4Compare Source
v3.1.3Compare Source
🐞 Bug Fixes
inline: trueis set - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/7856 (a83f3)--merge-reportsto show each total run times - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/7877 (d613b)View changes on GitHub
v3.1.2Compare Source
🚀 Features
🐞 Bug Fixes
chaivariable invitest/globals(fix: #7474) - by @Jay-Karia in https://github.com/vitest-dev/vitest/issues/7771 and https://github.com/vitest-dev/vitest/issues/7474 (d9297)test.excludewhen same object passed incoverage.exclude- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/7774 (c3751)envionmentOptions- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/7795 (67430)awaitprofiler calls - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/7763 (795a6)🏎 Performance
View changes on GitHub
eslint/eslint (eslint)
v9.28.0Compare Source
v9.27.0Compare Source
v9.26.0Compare Source
v9.25.1Compare Source
v9.25.0Compare Source
honojs/hono (hono)
v4.7.11Compare Source
v4.7.10Compare Source
What's Changed
#clone()by @yusukebe in https://github.com/honojs/hono/pull/4139header.algas fallback inverifyFromJwksby @yusukebe in https://github.com/honojs/hono/pull/4144Full Changelog: honojs/hono@v4.7.9...v4.7.10
v4.7.9Compare Source
What's Changed
getSignedCookieparameters type by @Hill-98 in https://github.com/honojs/hono/pull/4123New Contributors
Full Changelog: honojs/hono@v4.7.8...v4.7.9
v4.7.8Compare Source
What's Changed
4.12.0by @yusukebe in https://github.com/honojs/hono/pull/4096replaceRequest: falseoption for.mountby @geelen in https://github.com/honojs/hono/pull/4113New Contributors
Full Changelog: honojs/hono@v4.7.7...v4.7.8
v4.7.7Compare Source
What's Changed
c.header()when it's finalized by @yusukebe in https://github.com/honojs/hono/pull/4078New Contributors
Full Changelog: honojs/hono@v4.7.6...v4.7.7
v4.7.6Compare Source
What's Changed
hono is cooltohono is hotby @EdamAme-x in https://github.com/honojs/hono/pull/4035New Contributors
Full Changelog: honojs/hono@v4.7.5...v4.7.6
v4.7.5Compare Source
What's Changed
BunWebSocketDataandBunWebSocketHandlerby @yusukebe in https://github.com/honojs/hono/pull/4002New Contributors
Full Changelog: honojs/hono@v4.7.4...v4.7.5
v4.7.4Compare Source
What's Changed
Full Changelog: honojs/hono@v4.7.3...v4.7.4
v4.7.3Compare Source
What's Changed
BunWebSocketHandlerby @yusukebe in https://github.com/honojs/hono/pull/3964New Contributors
Full Changelog: honojs/hono@v4.7.2...v4.7.3
v4.7.2Compare Source
What's Changed
RequestandResponseclasses by @BarryThePenguin in https://github.com/honojs/hono/pull/3928Full Changelog: honojs/hono@v4.7.1...v4.7.2
v4.7.1Compare Source
What's Changed
next()by @usualoma in https://github.com/honojs/hono/pull/3905cryptoby @EdamAme-x in https://github.com/honojs/hono/pull/3916New Contributors
Full Changelog: honojs/hono@v4.7.0...v4.7.1
v4.7.0Compare Source
Release Notes
Hono v4.7.0 is now available!
This release introduces one helper and two middleware.
Plus, Standard Schema Validator has been born.
Let's look at each of these.
Proxy Helper
We sometimes use the Hono application as a reverse proxy. In that case, it accesses the backend using
fetch. However, it sends an unintended headers.For example,
fetchmay sendAccept-Encoding, causing the origin server to return a compressed response. Some runtimes automatically decode it, leading to aContent-Lengthmismatch and potential client-side errors.Also, you should probably remove some of the headers sent from the origin server, such as
Transfer-Encoding.Proxy Helper will send requests to the origin and handle responses properly. The above headers problem is solved simply by writing as follows.
You can also use it in more complex ways.
Thanks @usualoma!
Language Middleware
Language Middleware provides 18n functions to Hono applications. By using the
languageDetectorfunction, you can get the language that your application should support.You can get the target language in various ways, not just by using
Accept-Language.Accept-LanguageheaderThanks @lord007tn!
JWK Auth Middleware
Finally, middleware that supports JWK (JSON Web Key) has landed. Using JWK Auth Middleware, you can authenticate by verifying JWK tokens. It can access keys fetched from the specified URL.
Thanks @Beyondo!
Standard Schema Validator
Standard Schema provides a common interface for TypeScript validator libraries. Standard Schema Validator is a validator that uses it. This means that Standard Schema Validator can handle several validators, such as Zod, Valibot, and ArkType, with the same interface.
The code below really works!
Thanks @muningis!
New features
All changes
yarnby @EdamAme-x in https://github.com/honojs/hono/pull/3878toLowerCase()is unnecessary forreq.header()by @yusukebe in https://github.com/honojs/hono/pull/3880envtype by @yusukebe in https://github.com/honojs/hono/pull/3885c.json({})by @yusukebe in https://github.com/honojs/hono/pull/3873deno.lockby @yusukebe in https://github.com/honojs/hono/pull/3897New Contributors
Full Changelog: honojs/hono@v4.6.20...v4.7.0
v4.6.20Compare Source
What's Changed
npby @yusukebe in https://github.com/honojs/hono/pull/3874New Contributors
Full Changelog: honojs/hono@v4.6.19...v4.6.20
v4.6.19Compare Source
What's Changed
OnHandlerInterfaceby @sor4chi in https://github.com/honojs/hono/pull/3852envshould setctype correctly by @yusukebe in https://github.com/honojs/hono/pull/3856Full Changelog: honojs/hono@v4.6.18...v4.6.19
v4.6.18Compare Source
What's Changed
types.tsby @yusukebe in https://github.com/honojs/hono/pull/3836ParamKeysimply by @yusukebe in https://github.com/honojs/hono/pull/3837factory.createMiddleware()by @yusukebe in https://github.com/honojs/hono/pull/3849Full Changelog: honojs/hono@v4.6.17...v4.6.18
v4.6.17Compare Source
What's Changed
New Contributors
Full Changelog: honojs/hono@v4.6.16...v4.6.17
v4.6.16Compare Source
What's Changed
app.on(method,path[],middleware,handler)type by @yusukebe in https://github.com/honojs/hono/pull/3802Full Changelog: honojs/hono@v4.6.15...v4.6.16
v4.6.15Compare Source
c.json()etc. throwing type error when the status is contentless code, e.g., 204From this release, when
c.json(),c.text(), orc.html()returns content, specifying a contentless status code such as 204 will now throw a type error.At first glance, this seems like a breaking change but not. It is not possible to return a contentless response with
c.json()orc.text(). So, in that case, please usec.body().What's Changed
ResponseInitaccepts genericsStatusCodeforstatusby @yusukebe in https://github.com/honojs/hono/pull/3770COMPOSED_HANDLERby @yusukebe in https://github.com/honojs/hono/pull/3773New Contributors
Full Changelog: honojs/hono@v4.6.14...v4.6.15
v4.6.14Compare Source
What's Changed
Object.create(null)by @usualoma in https://github.com/honojs/hono/pull/3735charsetparameter from MIME type ofapplication/jsonby @SaekiTominaga in https://github.com/honojs/hono/pull/3743New Contributors
Full Changelog: honojs/hono@v4.6.13...v4.6.14
v4.6.13Compare Source
What's Changed
Array.prototype.at()to look at the end by @ryuapp in https://github.com/honojs/hono/pull/3703New Contributors
Full Changelog: honojs/hono@v4.6.12...v4.6.13
v4.6.12Compare Source
What's Changed
KBby @EdamAme-x in https://github.com/honojs/hono/pull/3696New Contributors
Full Changelog: honojs/hono@v4.6.11...v4.6.12
v4.6.11Compare Source
What's Changed
Configuration
📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.