fix(deps): update all minor dependencies - #506
Merged
Merged
Conversation
renovate
Bot
force-pushed
the
renovate/all-minor-dependencies
branch
from
August 28, 2026 02:38
35299c2 to
f2452e8
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-dependencies
branch
from
August 31, 2026 03:00
f2452e8 to
4c46ba8
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-dependencies
branch
from
September 1, 2026 17:59
4c46ba8 to
3c19ee6
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:
1.5.1→1.6.01.6.11.50.0→1.51.01.52.01.30.0→1.32.01.39.0(+6)v2.195.0→v2.196.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
honojs/middleware (@hono/zod-openapi)
v1.6.0Compare Source
Minor Changes
1dc1a4a5418be24d571652e1013b8a6a925824c0Thanks @WolfieLeader! - feat: support the HTTP QUERY method increateRoute()by bumping@asteasolutions/zod-to-openapito v9v1.5.3Compare Source
Patch Changes
9a9324937cfa77db210a966be33e8c73bbbe33e3Thanks @kamaal111! - Revert the local z binding export because it causes zod types to degrade to any when built with tsdown.v1.5.2Compare Source
Patch Changes
#2069
fc0377c5595bde3147d181e5013a3fc710175e40Thanks @edenbuilds! - fix(zod-openapi): keep thezimport edge so.openapi()survives bundlingRe-exporting zod's
zas a pass-through let esbuild code-splitting resolveimport { z } from '@hono/zod-openapi'straight to zod and drop the edge to themodule that runs
extendZodWithOpenApi(z), so schemas could be built before thepatch applied and
.openapi()was undefined at runtime. Exportzas an aliasdeclaration instead: it compiles to a binding local to the module, which keeps
that edge, while still carrying zod's type namespace so
z.infer,z.ZodTypeand the rest continue to work. Fixes #2051.
toss/es-toolkit (es-toolkit)
v1.51.0Compare Source
Released on August 17th, 2026.
Added the
es-toolkit/bigintentrypoint:bigintcounterparts of the mathfunctions (
sum,sumBy,max,min,maxBy,minBy,clamp,inRange,median,medianBy,percentile,range,rangeRight), kept separate sothe
numberimplementations stay unchanged. ([#1966])Added
dedent, which removes common leading whitespace from template strings. ([#1679])Added
deepFreezefor recursively freezing objects. ([#1680])Added
mapValuesAsyncandmapKeysAsync. ([#1544])Added
toPascalCaseKeys,toKebabCaseKeys, andtoConstantCaseKeys,completing the object key casing family. ([#1984])
Exported the
ToCamelCaseKeys,ToPascalCaseKeys,ToSnakeCaseKeys,ToKebabCaseKeys, andToConstantCaseKeystypes. ([#1651])Added a
preserveArraysoption toflattenObject. ([#974])Fixed
retryto pass the last error to thedelaycallback ([#1759]) and tothrow the last attempt's error without applying a final delay ([#1901]).
Fixed
mergeWithandtoMergedto handle mixed array/object typesconsistently with
merge. ([#2026])Fixed
pullAtto remove the correct elements with negative indices. ([#1613])Fixed
at,pullAt,orderBy, andsortByto accept readonly arrays. ([#2016])Moved
limitAsyncfrom the array to the promise category. ([#2022])Included the NOTICE file in the published npm and JSR packages. ([#2020])
The following bring
es-toolkit/compatcloser to Lodash. Behavior for the affectededge cases now matches Lodash, so results may differ if you relied on the previous output.
Added
entriesandentriesIn. ([#1874])Fixed
compat/isMatchandcompat/isMatchWithto handle object sourcepatterns against primitive and non-plain-object targets like Lodash. ([#1432])
Fixed
compat/setto blockconstructor.prototypepaths, preventingprototype pollution. ([#1904])
Fixed
compat/findto respect array-likelength([#1958]) and to convertfromIndexto an integer ([#1961]), andcompat/indexOfto convertfromIndexto an integer when searching forNaN([#1951]).Fixed
compat/orderByto resolve unresolved deep paths and nullish elementsto
undefined([#2010]), to exclude thelengthproperty from array-likevalues ([#2002]), and to read the criterion property from primitive values ([#1903]).
Fixed
compat/toPathto split unquoted dotted keys inside brackets. ([#1899])Fixed
compat/omitto treat a key array as a single deep path. ([#1902])Fixed
compat/mapto make the iteratee optional with an identity default. ([#1928])Fixed
compat/sizeto count combined Unicode symbols as single characters. ([#1900])Fixed
compat/intersectionByto support number, object, and nullish iterateeshorthands ([#1993]), and
compat/intersectionWithto apply the comparatorwhen deduplicating the first array ([#1953]).
Fixed
compat/difference,compat/differenceBy,compat/uniqBy, andcompat/unionByto normalize-0to0. ([#2007])Fixed
compat/maxByandcompat/minByto skip nullish iteratee values ([#1927]),and
compat/meanByto skipundefinedvalues when averaging ([#1978]).Fixed
compat/some,compat/template([#2009]), andcompat/fill([#1952])to gate guard handling with
isIterateeCall.Fixed
compat/iterateeto treat a boolean as a property shorthand. ([#1941])Fixed
compat/reverseto support array-like objects andarguments. ([#2008])Fixed
compat/toArrayto convert non-array-like iterables. ([#1999])Fixed
compat/toStringto render nested nullish values like Lodash. ([#1992])Fixed
compat/zipObjectto treatnullkeys and values as empty arrays. ([#2005])Fixed
compat/sampleSizeto clamp the default size to the collection length. ([#2003])Fixed
compat/takeWhile,compat/takeRightWhile, andcompat/uniqBytosupport string inputs. ([#2004])
Fixed
compat/chunkto return an empty array for an empty collection with anInfinitysize. ([#1995])Fixed
compat/lastIndexOfto read holes in sparse arrays asundefined. ([#1977])Fixed
compat/lastto returnundefinedfor empty array-like inputs. ([#1954])Fixed
compat/pullAllto return the array as-is whenvaluesis nullish. ([#1962])Added a browser compatibility test suite. ([#2012])
Improved documentation, JSDoc accuracy, tests, and internal refactoring across
compatand the docs site. ([#1622], [#1789], [#1824], [#1844], [#1849],[#1854], [#1855], [#1859], [#1860], [#1868], [#1871], [#1887], [#1898],
[#1933], [#1939], [#1947], [#1950], [#1955], [#1956], [#1957], [#1960],
[#1963], [#1964], [#1968], [#1969], [#1970], [#1972], [#1979], [#1985],
[#2000], [#2001], [#2021], [#2025], [#2027])
We sincerely thank @Antoliny0919, @D-Sketon, @kojesung, @chuenchen309,
@mariazuheros, @DongEun02, @raon0211, @sukvvon, @racgoo, @dayongkr, @Kropiunig,
@ssi02014, @sarathfrancis90, @mym0404, @mlnwns, @kdelay, @gwagjiug, @dohwi,
@blro0319, @benedictleejh, @amir-rezaei, @ianzone, @sen2y, @rossyman,
@eunwoo-levi, @ramong26, @Gdm0714, and everyone else who contributed.
We appreciate your great efforts!
lucide-icons/lucide (lucide-react)
v1.32.0: Version 1.32.0Compare Source
What's Changed
car-batteryicon by @andreynaz4renko in #4088New Contributors
Full Changelog: lucide-icons/lucide@1.31.0...1.32.0
v1.31.0Compare Source
Configuration
📅 Schedule: (in timezone Asia/Tokyo)
* * * * 5)* * * * 0-4,6)🚦 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.