-
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update hono #1560
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/hono
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
fix(deps): update hono #1560
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
99f947b
to
2511fe7
Compare
2511fe7
to
6877eb7
Compare
1f0f85c
to
2480ef8
Compare
efa12c3
to
8e8cf26
Compare
6f50451
to
8177332
Compare
04de2a3
to
d928c4f
Compare
539f322
to
4ea3d8b
Compare
e3ad9fa
to
a90ddbe
Compare
61ac9e6
to
cf9d884
Compare
a3b0d5a
to
39dde61
Compare
39dde61
to
591c3e3
Compare
06fb522
to
1640f72
Compare
c2764ab
to
64fac55
Compare
3184832
to
660bcaa
Compare
f08c5ff
to
c47ced3
Compare
21fd46b
to
6b96a93
Compare
562f7ff
to
2e69298
Compare
2e69298
to
7d0c176
Compare
7d0c176
to
3f9e41b
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
^1.12.2
->^1.13.8
^0.2.2
->^0.4.3
^4.5.11
->^4.7.2
Release Notes
honojs/node-server (@hono/node-server)
v1.13.8
Compare Source
What's Changed
incoming.rawBody
if available by @usualoma in https://github.com/honojs/node-server/pull/223New Contributors
Full Changelog: honojs/node-server@v1.13.7...v1.13.8
v1.13.7
Compare Source
What's Changed
New Contributors
Full Changelog: honojs/node-server@v1.13.6...v1.13.7
v1.13.6
Compare Source
What's Changed
Full Changelog: honojs/node-server@v1.13.5...v1.13.6
v1.13.5
Compare Source
What's Changed
Full Changelog: honojs/node-server@v1.13.4...v1.13.5
v1.13.4
Compare Source
What's Changed
New Contributors
Full Changelog: honojs/node-server@v1.13.3...v1.13.4
v1.13.3
Compare Source
What's Changed
New Contributors
Full Changelog: honojs/node-server@v1.13.2...v1.13.3
v1.13.2
Compare Source
What's Changed
New Contributors
Full Changelog: honojs/node-server@v1.13.1...v1.13.2
v1.13.1
Compare Source
What's Changed
Full Changelog: honojs/node-server@v1.13.0...v1.13.1
v1.13.0
Compare Source
What's Changed
onFound
option by @yusukebe in https://github.com/honojs/node-server/pull/198precompressed
option by @yusukebe in https://github.com/honojs/node-server/pull/199Full Changelog: honojs/node-server@v1.12.2...v1.13.0
honojs/middleware (@hono/zod-validator)
v0.4.3
Compare Source
Patch Changes
b65d5a58616f861520047dd08babc9cd1d81cbd1
Thanks @yusukebe! - fix: fix commonjs import problemv0.4.2
Compare Source
Patch Changes
803f011e41ecb3da503ddb2b3286c6d7606d9c4b
Thanks @askorupskyy! - Case-insensitive Zod schemas for headersv0.4.1
Compare Source
Patch Changes
ed27af46ecb8a7c3b5399b725feded4feaf6f8a6
Thanks @yusukebe! - chore: releasing correctlyv0.3.0
Compare Source
Minor Changes
414715b0d35f05c050377cb9d6b58dfa8bf8dba3
Thanks @gitblit! - Added support fordefaultModelsExpandDepth
,defaultModelExpandDepth
,defaultModelRendering
,displayRequestDuration
,filter
,showExtensions
, andshowCommonExtensions
configuration optionshonojs/hono (hono)
v4.7.2
Compare Source
What's Changed
Request
andResponse
classes by @BarryThePenguin in https://github.com/honojs/hono/pull/3928Full Changelog: honojs/hono@v4.7.1...v4.7.2
v4.7.1
Compare Source
What's Changed
next()
by @usualoma in https://github.com/honojs/hono/pull/3905crypto
by @EdamAme-x in https://github.com/honojs/hono/pull/3916New Contributors
Full Changelog: honojs/hono@v4.7.0...v4.7.1
v4.7.0
Compare 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,
fetch
may sendAccept-Encoding
, causing the origin server to return a compressed response. Some runtimes automatically decode it, leading to aContent-Length
mismatch 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
languageDetector
function, 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-Language
headerThanks @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
yarn
by @EdamAme-x in https://github.com/honojs/hono/pull/3878toLowerCase()
is unnecessary forreq.header()
by @yusukebe in https://github.com/honojs/hono/pull/3880env
type by @yusukebe in https://github.com/honojs/hono/pull/3885c.json({})
by @yusukebe in https://github.com/honojs/hono/pull/3873deno.lock
by @yusukebe in https://github.com/honojs/hono/pull/3897New Contributors
Full Changelog: honojs/hono@v4.6.20...v4.7.0
v4.6.20
Compare Source
What's Changed
np
by @yusukebe in https://github.com/honojs/hono/pull/3874New Contributors
Full Changelog: honojs/hono@v4.6.19...v4.6.20
v4.6.19
Compare Source
What's Changed
OnHandlerInterface
by @sor4chi in https://github.com/honojs/hono/pull/3852env
should setc
type correctly by @yusukebe in https://github.com/honojs/hono/pull/3856Full Changelog: honojs/hono@v4.6.18...v4.6.19
v4.6.18
Compare Source
What's Changed
types.ts
by @yusukebe in https://github.com/honojs/hono/pull/3836ParamKey
simply 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.17
Compare Source
What's Changed
New Contributors
Full Changelog: honojs/hono@v4.6.16...v4.6.17
v4.6.16
Compare 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.15
Compare 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
ResponseInit
accepts genericsStatusCode
forstatus
by @yusukebe in https://github.com/honojs/hono/pull/3770COMPOSED_HANDLER
by @yusukebe in https://github.com/honojs/hono/pull/3773New Contributors
Full Changelog: honojs/hono@v4.6.14...v4.6.15
v4.6.14
Compare Source
What's Changed
Object.create(null)
by @usualoma in https://github.com/honojs/hono/pull/3735charset
parameter from MIME type ofapplication/json
by @SaekiTominaga in https://github.com/honojs/hono/pull/3743New Contributors
Full Changelog: honojs/hono@v4.6.13...v4.6.14
v4.6.13
Compare 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.12
Compare Source
What's Changed
KB
by @EdamAme-x in https://github.com/honojs/hono/pull/3696New Contributors
Full Changelog: honojs/hono@v4.6.11...v4.6.12
v4.6.11
Compare Source
What's Changed
qs
for query-param by @yusukebe in https://github.com/honojs/hono/pull/3674perf-measures
by @yusukebe in https://github.com/honojs/hono/pull/3683build
andperf-measures
by @yusukebe in https://github.com/honojs/hono/pull/3686errorHandler
withprivate
not use#
by @yusukebe in https://github.com/honojs/hono/pull/3692New Contributors
Full Changelog: honojs/hono@v4.6.10...v4.6.11
v4.6.10
Compare Source
What's Changed
no-response.yml
by @yusukebe in https://github.com/honojs/hono/pull/3622devDependencies
by @EdamAme-x in https://github.com/honojs/hono/pull/3633package.json
andjsr.json
by @EdamAme-x in https://github.com/honojs/hono/pull/3638#
for private props to reduce the minified bundle size by @EdamAme-x in https://github.com/honojs/hono/pull/3660c.req.routeIndex
from being changed by @usualoma in https://github.com/honojs/hono/pull/3663New Contributors
Full Changelog: honojs/hono@v4.6.9...v4.6.10
v4.6.9
Compare Source
What's Changed
c.req.param
decodes invalid percent strings by @yusukebe in https://github.com/honojs/hono/pull/3573memo
for DOM renderer by @usualoma in https://github.com/honojs/hono/pull/3568.concat
instead of spread syntax by @EdamAme-x in https://github.com/honojs/hono/pull/3584any
and fix types of adapter/deno by @EdamAme-x in https://github.com/honojs/hono/pull/3291.matchRoute
and reduce bundle size by @EdamAme-x in https://github.com/honojs/hono/pull/3595c.redirect()
by @cometkim in https://github.com/honojs/hono/pull/3609| 0
instead ofMath.floor
by @EdamAme-x in https://github.com/honojs/hono/pull/3605#
for private methods to reduce the minified file size by @yusukebe in https://github.com/honojs/hono/pull/3596New Contributors
Full Changelog: honojs/hono@v4.6.8...v4.6.9
v4.6.8
Compare Source
What's Changed
--hot
by @nakasyou in https://github.com/honojs/hono/pull/3576New Contributors
Full Changelog: honojs/hono@v4.6.7...v4.6.8
v4.6.7
Compare Source
What's Changed
requestContext
by @yusukebe in https://github.com/honojs/hono/pull/3549New Contributors
Full Changelog: honojs/hono@v4.6.6...v4.6.7
v4.6.6
Compare Source
What's Changed
NotFound
warning on Deno by @pablo-abc in https://github.com/honojs/hono/pull/3542New Contributors
Full Changelog: honojs/hono@v4.6.5...v4.6.6
v4.6.5
Compare Source
Security fix for CSRF Protection Middleware
This release includes a security fix for CSRF Protection Middleware. If you are using CSRF Protection Middleware, please upgrade this
hono
package immediately.Before this release, a request without a
Content-Type
header can bypass the protection. This fix does not allow it. See: GHSA-2234-fmw7-43wrWhat's Changed
v2
by @yusukebe in https://github.com/honojs/hono/pull/3506Access-Control-Allow-Origin
if there is no matching origin by @uki00a in https://github.com/honojs/hono/pull/3510New Contributors
Full Changelog: honojs/hono@v4.6.4...v4.6.5
v4.6.4
Compare Source
What's Changed
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.