Skip to content

fix(deps): update all minor dependencies - #506

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/all-minor-dependencies
Sep 1, 2026
Merged

renovate[bot] merged 1 commit into
mainfrom
renovate/all-minor-dependencies

Conversation

@renovate

@renovate renovate Bot commented Aug 27, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@hono/zod-openapi (source) 1.5.11.6.0 age confidence dependencies minor 1.6.1
es-toolkit (source) 1.50.01.51.0 age confidence dependencies minor 1.52.0
lucide-react (source) 1.30.01.32.0 age confidence dependencies minor 1.39.0 (+6)
supabase/gotrue v2.195.0v2.196.0 age confidence minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

honojs/middleware (@​hono/zod-openapi)

v1.6.0

Compare Source

Minor Changes

v1.5.3

Compare Source

Patch Changes

v1.5.2

Compare Source

Patch Changes
  • #​2069 fc0377c5595bde3147d181e5013a3fc710175e40 Thanks @​edenbuilds! - fix(zod-openapi): keep the z import edge so .openapi() survives bundling

    Re-exporting zod's z as a pass-through let esbuild code-splitting resolve
    import { z } from '@hono/zod-openapi' straight to zod and drop the edge to the
    module that runs extendZodWithOpenApi(z), so schemas could be built before the
    patch applied and .openapi() was undefined at runtime. Export z as an alias
    declaration 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.ZodType
    and the rest continue to work. Fixes #​2051.

toss/es-toolkit (es-toolkit)

v1.51.0

Compare Source

Released on August 17th, 2026.

  • Added the es-toolkit/bigint entrypoint: bigint counterparts of the math
    functions (sum, sumBy, max, min, maxBy, minBy, clamp, inRange,
    median, medianBy, percentile, range, rangeRight), kept separate so
    the number implementations stay unchanged. ([#​1966])

  • Added dedent, which removes common leading whitespace from template strings. ([#​1679])

  • Added deepFreeze for recursively freezing objects. ([#​1680])

  • Added mapValuesAsync and mapKeysAsync. ([#​1544])

  • Added toPascalCaseKeys, toKebabCaseKeys, and toConstantCaseKeys,
    completing the object key casing family. ([#​1984])

  • Exported the ToCamelCaseKeys, ToPascalCaseKeys, ToSnakeCaseKeys,
    ToKebabCaseKeys, and ToConstantCaseKeys types. ([#​1651])

  • Added a preserveArrays option to flattenObject. ([#​974])

  • Fixed retry to pass the last error to the delay callback ([#​1759]) and to
    throw the last attempt's error without applying a final delay ([#​1901]).

  • Fixed mergeWith and toMerged to handle mixed array/object types
    consistently with merge. ([#​2026])

  • Fixed pullAt to remove the correct elements with negative indices. ([#​1613])

  • Fixed at, pullAt, orderBy, and sortBy to accept readonly arrays. ([#​2016])

  • Moved limitAsync from the array to the promise category. ([#​2022])

  • Included the NOTICE file in the published npm and JSR packages. ([#​2020])

The following bring es-toolkit/compat closer to Lodash. Behavior for the affected
edge cases now matches Lodash, so results may differ if you relied on the previous output.

  • Added entries and entriesIn. ([#​1874])

  • Fixed compat/isMatch and compat/isMatchWith to handle object source
    patterns against primitive and non-plain-object targets like Lodash. ([#​1432])

  • Fixed compat/set to block constructor.prototype paths, preventing
    prototype pollution. ([#​1904])

  • Fixed compat/find to respect array-like length ([#​1958]) and to convert
    fromIndex to an integer ([#​1961]), and compat/indexOf to convert
    fromIndex to an integer when searching for NaN ([#​1951]).

  • Fixed compat/orderBy to resolve unresolved deep paths and nullish elements
    to undefined ([#​2010]), to exclude the length property from array-like
    values ([#​2002]), and to read the criterion property from primitive values ([#​1903]).

  • Fixed compat/toPath to split unquoted dotted keys inside brackets. ([#​1899])

  • Fixed compat/omit to treat a key array as a single deep path. ([#​1902])

  • Fixed compat/map to make the iteratee optional with an identity default. ([#​1928])

  • Fixed compat/size to count combined Unicode symbols as single characters. ([#​1900])

  • Fixed compat/intersectionBy to support number, object, and nullish iteratee
    shorthands ([#​1993]), and compat/intersectionWith to apply the comparator
    when deduplicating the first array ([#​1953]).

  • Fixed compat/difference, compat/differenceBy, compat/uniqBy, and
    compat/unionBy to normalize -0 to 0. ([#​2007])

  • Fixed compat/maxBy and compat/minBy to skip nullish iteratee values ([#​1927]),
    and compat/meanBy to skip undefined values when averaging ([#​1978]).

  • Fixed compat/some, compat/template ([#​2009]), and compat/fill ([#​1952])
    to gate guard handling with isIterateeCall.

  • Fixed compat/iteratee to treat a boolean as a property shorthand. ([#​1941])

  • Fixed compat/reverse to support array-like objects and arguments. ([#​2008])

  • Fixed compat/toArray to convert non-array-like iterables. ([#​1999])

  • Fixed compat/toString to render nested nullish values like Lodash. ([#​1992])

  • Fixed compat/zipObject to treat null keys and values as empty arrays. ([#​2005])

  • Fixed compat/sampleSize to clamp the default size to the collection length. ([#​2003])

  • Fixed compat/takeWhile, compat/takeRightWhile, and compat/uniqBy to
    support string inputs. ([#​2004])

  • Fixed compat/chunk to return an empty array for an empty collection with an
    Infinity size. ([#​1995])

  • Fixed compat/lastIndexOf to read holes in sparse arrays as undefined. ([#​1977])

  • Fixed compat/last to return undefined for empty array-like inputs. ([#​1954])

  • Fixed compat/pullAll to return the array as-is when values is nullish. ([#​1962])

  • Added a browser compatibility test suite. ([#​2012])

  • Improved documentation, JSDoc accuracy, tests, and internal refactoring across
    compat and 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.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.31.0...1.32.0

v1.31.0

Compare Source


Configuration

📅 Schedule: (in timezone Asia/Tokyo)

  • Branch creation
    • Only on Friday (* * * * 5)
  • Automerge
    • Only on Sunday through Thursday and Saturday (* * * * 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the renovate label Aug 27, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-dependencies branch from 35299c2 to f2452e8 Compare August 28, 2026 02:38
@renovate renovate Bot changed the title fix(deps): update dependency lucide-react to v1.31.0 fix(deps): update all minor dependencies Aug 28, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-dependencies branch from f2452e8 to 4c46ba8 Compare August 31, 2026 03:00
@renovate
renovate Bot force-pushed the renovate/all-minor-dependencies branch from 4c46ba8 to 3c19ee6 Compare September 1, 2026 17:59
@renovate
renovate Bot merged commit a796027 into main Sep 1, 2026
11 checks passed
@renovate
renovate Bot deleted the renovate/all-minor-dependencies branch September 1, 2026 21:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants