fix: update auto merge on patch or minor#49
Merged
notaphplover merged 1 commit intomasterfrom Feb 25, 2026
Merged
Conversation
065a64d to
f0058de
Compare
6ef5505 to
3099d7e
Compare
3099d7e to
797d464
Compare
This file contains hidden or 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
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:
20.4.1→20.4.220.4.1→20.4.220.4.1→20.4.2^7.4.0→^7.4.1^7.4.0→^7.4.1^7.4.0→^7.4.1^17.3.0→^17.3.19.39.2→9.39.316.12.0→16.13.0^4.11.9→^4.12.25.83.1→5.85.024.13.1→24.14.010.29.3→10.30.27.4.0→7.4.18.6.0-alpine→8.6.1-alpine6.1.2→6.1.3Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v20.4.2Compare Source
Note: Version bump only for package @commitlint/cli
conventional-changelog/commitlint (@commitlint/config-conventional)
v20.4.2Compare Source
Note: Version bump only for package @commitlint/config-conventional
conventional-changelog/commitlint (@commitlint/prompt-cli)
v20.4.2Compare Source
Note: Version bump only for package @commitlint/prompt-cli
prisma/prisma (@prisma/adapter-pg)
v7.4.1Compare Source
Today, we are issuing a 7.4.1 patch release focused on bug fixes and quality improvements.
🛠 Fixes
Prisma Client
Prisma.skipthrough query extension argument cloning (#29198)Driver Adapters
Prisma Schema Language
whereargument on field-level@uniquefor partial indexes (prisma/prisma-engines#5774)🙏 Huge thanks to our community
Many of the fixes in this release were contributed by our amazing community members. We're grateful for your continued support and contributions that help make Prisma better for everyone!
motdotla/dotenv (dotenv)
v17.3.1Compare Source
Changed
eslint/eslint (eslint)
v9.39.3Compare Source
Bug Fixes
791bf8dfix: restore TypeScript 4.0 compatibility in types (#20504) (sethamus)Chores
8594a43chore: upgrade @eslint/js@9.39.3 (#20529) (Milos Djermanovic)9ceef92chore: package.json update for @eslint/js release (Jenkins)af498c6chore: ignore/docs/v9.xin link checker (#20453) (Milos Djermanovic)graphql/graphql-js (graphql)
v16.13.0Compare Source
honojs/hono (hono)
v4.12.2Compare Source
Security fix
Fixed incorrect handling of
X-Forwarded-Forin the AWS Lambda adapter behind ALB that could allow IP-based access control bypass. The detail: GHSA-xh87-mx6m-69f3Thanks @EdamAme-x
What's Changed
Full Changelog: honojs/hono@v4.12.1...v4.12.2
v4.12.1Compare Source
What's Changed
ApplyGlobalResponsefromhono/clientby @sushichan044 in #4743Full Changelog: honojs/hono@v4.12.0...v4.12.1
v4.12.0Compare Source
Release Notes
Hono v4.12.0 is now available!
This release includes new features for the Hono client, middleware improvements, adapter enhancements, and significant performance improvements to the router and context.
$pathfor Hono ClientThe Hono client now has a
$path()method that returns the path string instead of a full URL. This is useful when you need just the path portion for routing or key-based operations:Unlike
$url()which returns aURLobject,$path()returns a plain path string, making it convenient for use with routers or as cache keys.Thanks @ShaMan123!
ApplyGlobalResponseType Helper for RPC ClientThe new
ApplyGlobalResponsetype helper allows you to add global error response types to all routes in the RPC client. This is useful for typing common error responses fromapp.onError()or global middlewares:Thanks @mohankumarelec!
SSG Redirect Plugin
A new
redirectPluginfor SSG generates static HTML redirect pages for HTTP redirect responses (301, 302, 303, 307, 308):The generated redirect pages include a
<meta http-equiv="refresh">tag, a canonical link, and arobots noindexmeta tag.Thanks @3w36zj6!
onAuthSuccessCallback for Basic AuthThe Basic Auth middleware now supports an
onAuthSuccesscallback that is invoked after successful authentication. This allows you to set context variables or perform logging without re-parsing the Authorization header:The callback also works with async functions and the
verifyUsermode.Thanks @AprilNEA!
getConnInfofor AWS Lambda, Cloudflare Pages, and NetlifygetConnInfo()is now available for three additional adapters:Thanks @rokasta12!
alwaysRedirectOption for Trailing Slash MiddlewareThe trailing slash middleware now supports an
alwaysRedirectoption. When enabled, the middleware redirects before executing handlers, which fixes the issue where trailing slash handling doesn't work with wildcard routes:Progressive Locale Code Truncation
The
normalizeLanguagefunction in the language middleware now supports RFC 4647 Lookup-based progressive truncation. Locale codes likeja-JPwill matchjawhen only the base language is insupportedLanguages:Thanks @sorafujitani!
exportsField forExecutionContextThe
ExecutionContexttype now includes anexportsproperty for Cloudflare Workers. You can use module augmentation to type it with Wrangler's generated types:Thanks @toreis-up!
Performance Improvements
TrieRouter 1.5x ~ 2.0x Faster
The TrieRouter has been significantly optimized with reduced spread syntax usage, O(1)
hasChildrenchecks, lazy regular expression generation, and removal of redundant processes:GET /userGET /user/lookup/username/heyGET /static/index.htmlThanks @EdamAme-x!
Fast Path for
c.json()c.json()now has the same fast path optimization asc.text(). When no custom status, headers, or finalized state exists, the Response is created directly without allocating aHeadersobject:Benchmark results:
Thanks @mgcrea!
New features
ApplyGlobalResponsetype helper for RPC Client #4556alwaysRedirectoption to support wildcard routes #4658Performance
createResponseInstancefor new Response #4733All changes
ApplyGlobalResponsetype helper for RPC Client by @mohankumarelec in #4556alwaysRedirectoption to support wildcard routes by @yusukebe in #4658createResponseInstancefor new Response by @yusukebe in #4733New Contributors
Full Changelog: honojs/hono@v4.11.10...v4.12.0
v4.11.10Compare Source
What's Changed
91def7c)Full Changelog: honojs/hono@v4.11.9...v4.11.10
webpro-nl/knip (knip)
v5.85.0: Release 5.85.0Compare Source
c33d93a) - thanks @jstaab!f63089b) - thanks @wojtekmaj!58d99de) - thanks @Robot-Inventor!9da6205)8c5f35f)c8ab895)b9372cd)97fe1cf)95051eb) - thanks @huijiewei!2d0b5cd) - thanks @rexxars!a5cd986)f192a6b)e28a3e7)v5.84.1: Release 5.84.1Compare Source
75a42c3) - thanks @jantimon!df8c353)module.registerif 2nd arg is notimport.meta.url(#1535) (970fdb1)v5.84.0: Release 5.84.0Compare Source
e7965cb)61beafe)e20a682)d2bbc13)5d49dea) - thanks @Mohmdev!babfb10) - thanks @jgoux!2b735cb)634d0f6)bun testpositionals as entry points (resolve #1521) (da94725)327726f)dc87e8e)ignoreandignoreFilesitems (a4989ee)b9214e3)14ee32a) - thanks @jgoux!datetoIGNORED_GLOBAL_BINARIES(#1476) (f08f92b) - thanks @duci9y!82331ee)4c3bd08)repositoryfields (781a0fd)13d7845)bedb21a)15e3360)initializationOptions.configor default fallback config obj (resolve #1503) (0abe568)7806526)51b7dc1)chdirshenanigans (close #1516) (0cbee8f)console.*to distinguish internal↔ external logs (3eac278)36c2dd5)f94c41f)7e7a8b0)40fe5cc) - thanks @wojtekmaj!0f892ae) - thanks @wojtekmaj!bd75e9f) - thanks @kvnwolf!c24e746)6bc640c)isFilterTransitiveDependenciesflag (close #1507, close #1101) (8678df2)2cc1306)plugin.setup& tear downplugin.teardown(4dbf23d)ab775b1)c3d3912)2aaf9fc)79bfb35)9b059f8)1874b19)728c814)71c739a)5ac24c7)100f174)742407c)90fa677) - thanks @wojtekmaj!75d00ff) - thanks @ArtskydJ!@sourcematcher from tailwind plugin (resolve #1537) (b7149b6)-w→-Wflag for Yarn (f305250)ec83887)9fd04a8)3bb4203) - thanks @wojtekmaj!4f0a307) - thanks @wojtekmaj!ed23dd2)4115b97)1135b82)nodejs/node (node)
v24.14.0Compare Source
pnpm/pnpm (pnpm)
v10.30.2Compare Source
v10.30.1: pnpm 10.30.1Compare Source
Patch Changes
/-/npm/v1/security/audits/quickendpoint as the primary audit endpoint, falling back to/-/npm/v1/security/auditswhen it fails #10649.Platinum Sponsors
Gold Sponsors
v10.30.0: pnpm 10.30Compare Source
Minor Changes
pnpm whynow shows a reverse dependency tree. The searched package appears at the root with its dependents as branches, walking back to workspace roots. This replaces the previous forward-tree output which was noisy and hard to read for deeply nested dependencies.Patch Changes
pnpm whydependency pruning to prefer correctness over memory consumption. Reverted PR: #7122.pnpm whyandpnpm listperformance in workspaces with many importers by sharing the dependency graph and materialization cache across all importers instead of rebuilding them independently for each one #10596.Platinum Sponsors
Gold Sponsors
isaacs/rimraf (rimraf)
v6.1.3Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.