Skip to content
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

chore(deps): update all non-major dependencies #140

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 17, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vitest/coverage-v8 (source) ^2.1.1 -> ^2.1.3 age adoption passing confidence
automd ^0.3.8 -> ^0.3.12 age adoption passing confidence
esbuild ^0.23.1 -> ^0.24.0 age adoption passing confidence
eslint (source) ^9.11.0 -> ^9.12.0 age adoption passing confidence
eslint-config-unjs ^0.3.2 -> ^0.4.1 age adoption passing confidence
find-my-way ^9.0.1 -> ^9.1.0 age adoption passing confidence
hono (source) ^4.6.2 -> ^4.6.5 age adoption passing confidence
jiti ^2.0.0-rc.1 -> ^2.3.3 age adoption passing confidence
listhen ^1.7.2 -> ^1.9.0 age adoption passing confidence
pnpm (source) 9.11.0 -> 9.12.2 age adoption passing confidence
typescript (source) ^5.6.2 -> ^5.6.3 age adoption passing confidence
unbuild ^3.0.0-rc.7 -> ^3.0.0-rc.11 age adoption passing confidence
vitest (source) ^2.1.1 -> ^2.1.3 age adoption passing confidence

Release Notes

vitest-dev/vitest (@​vitest/coverage-v8)

v2.1.3

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v2.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
unjs/automd (automd)

v0.3.12

Compare Source

compare changes

🩹 Fixes
  • jsdocs: Disable jiti fs cache and module cache to avoid race conditions (4c7138b)
❤️ Contributors

v0.3.11

Compare Source

compare changes

🩹 Fixes
  • transform: Filter empty issues and keep stack trace (83845d6)
🏡 Chore
❤️ Contributors

v0.3.10

Compare Source

compare changes

💅 Refactors
  • badges: Link to npm.chart.dev for npm downloads (#​75)
🏡 Chore
❤️ Contributors

v0.3.9

Compare Source

compare changes

🚀 Enhancements
  • Add support for deno as package manager (#​74)
🏡 Chore
❤️ Contributors
evanw/esbuild (esbuild)

v0.24.0

Compare Source

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.23.0 or ~0.23.0. See npm's documentation about semver for more information.

  • Drop support for older platforms (#​3902)

    This release drops support for the following operating system:

    • macOS 10.15 Catalina

    This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

    Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#​3913)

    Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

  • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#​3898)

    TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

  • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#​3915)

    Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

  • Work around more issues with Deno 1.31+ (#​3917)

    This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

    This fix was contributed by @​Joshix-1.

eslint/eslint (eslint)

v9.12.0

Compare Source

Features

Bug Fixes

Documentation

  • ecbd522 docs: Mention code explorer (#​18978) (Nicholas C. Zakas)
  • 7ea4ecc docs: Clarifying the Use of Meta Objects (#​18697) (Amaresh S M)
  • d3e4b2e docs: Clarify how to exclude .js files (#​18976) (Milos Djermanovic)
  • 57232ff docs: Mention plugin-kit in language docs (#​18973) (Nicholas C. Zakas)
  • b80ed00 docs: Update README (GitHub Actions Bot)
  • cb69ab3 docs: Update README (GitHub Actions Bot)
  • 7fb0d95 docs: Update README (GitHub Actions Bot)
  • 493348a docs: Update README (GitHub Actions Bot)
  • 87a582c docs: fix typo in id-match rule (#​18944) (Jay)

Chores

v9.11.1

Compare Source

unjs/eslint-config (eslint-config-unjs)

v0.4.1

Compare Source

compare changes

💅 Refactors
  • Use Linter.Config as return type (2cce21a)
  • Reflax markdown rules (587c6a7)
🏡 Chore
❤️ Contributors

v0.4.0

Compare Source

compare changes

🏡 Chore
  • ⚠️ Update dependencies (ec5727e)
  • Use eslint ts support with jiti (0d531f8)
⚠️ Breaking Changes
  • ⚠️ Update dependencies (ec5727e)
❤️ Contributors
delvedor/find-my-way (find-my-way)

v9.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: delvedor/find-my-way@v9.0.1...v9.1.0

honojs/hono (hono)

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-43wr

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.4...v4.6.5

v4.6.4

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.3...v4.6.4

v4.6.3

Compare Source

This release has many new features, but each feature is small, so we've released it as a patch release.

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.2...v4.6.3

unjs/jiti (jiti)

v2.3.3

Compare Source

compare changes

🩹 Fixes
  • eval: Return fallback value (#​326)
💅 Refactors
  • Remove some unused exports (#​327)
❤️ Contributors

v2.3.2

Compare Source

compare changes

🩹 Fixes
  • eval: Fallback in async mode (#​325)
🏡 Chore
❤️ Contributors

v2.3.1

Compare Source

compare changes

🩹 Fixes
  • Conditional access to mod.default (8c30a94)
🏡 Chore
❤️ Contributors

v2.3.0

Compare Source

compare changes

🚀 Enhancements
  • Support jiti.import(id, {default: true}) (#​323)
🩹 Fixes
  • interopDefault: Avoid in operator for primitive inputs (#​321)
💅 Refactors
  • interopDefault: Simplify logic for default export checks (#​322)
📖 Documentation
  • Fix format (#​320)
  • Update interopDefault description and reference (61891a0)
  • Add note about interop default (537fa39)
🏡 Chore
❤️ Contributors

v2.2.1

Compare Source

compare changes

🩹 Fixes
❤️ Contributors

v2.2.0

Compare Source

compare changes

🚀 Enhancements
  • Use smarter proxy for interopDefault (#​318)
💅 Refactors
  • Inline interopDefault from mlly (8826047)
🤖 CI
❤️ Contributors

v2.1.2

Compare Source

compare changes

🌊 Types
  • Use local NodeModule type (718bea2)
❤️ Contributors

v2.1.1

Compare Source

compare changes

🩹 Fixes
  • types: Add standalone types for node require (#​316)
🏡 Chore
✅ Tests
  • Add dependency tests (1d86ca3)
  • Ignore deps for node native register (e7ffe04)
❤️ Contributors

v2.1.0

Compare Source

compare changes

🚀 Enhancements
  • Enable interopDefault by default (#​310)
  • Support import.meta.dirname and import.meta.filename (#​308)
🔥 Performance
  • cli: Enable node 22 compile cache (#​312)
🩹 Fixes
  • Make TransformOptions type strict to allow auto-complete (#​305)
  • Properly handle tsx (#​311)
💅 Refactors
📦 Build
  • Fix /register and /native subpath types for Node10 module resolution (#​304)
🏡 Chore
❤️ Contributors

v2.0.0

Compare Source

compare changes

🚀 Enhancements
  • Handle data: imports (non-native only) (#​299)
  • Support jsx (#​200)
  • Eval esm modules with fallback loader (#​300)
  • Support import.meta.resolve (#​301)
🩹 Fixes
  • Handle global url instance mismatch (#​298)
  • Optional access to Reflect.metadata (#​165)
  • Add only paths option to native require.resolve (50e4280)
💅 Refactors
  • Make jiti.esmResolve consistent with import.meta.resolve (#​303)
📖 Documentation
  • Add example for inline JITI_ALIAS (a53715a)
🏡 Chore
❤️ Contributors
unjs/listhen (listhen)

v1.9.0

Compare Source

compare changes

🚀 Enhancements
  • Update crossws to 0.3.x (#​181)
📦 Build
  • Relax crossws dep constraint (bcb9bf4)
🏡 Chore
❤️ Contributors

v1.8.0

Compare Source

compare changes

🚀 Enhancements
🩹 Fixes
  • dev: Call dynamic websocket resolver (7360d27)
  • dev: Normalize paths with pathe (#​166)
📖 Documentation
🏡 Chore
🤖 CI
❤️ Contributors

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 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.


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

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

Copy link

codecov bot commented Oct 17, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.08%. Comparing base (acbdafd) to head (b8196a4).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #140   +/-   ##
=======================================
  Coverage   99.08%   99.08%           
=======================================
  Files           9        9           
  Lines         327      327           
  Branches       99       99           
=======================================
  Hits          324      324           
  Misses          3        3           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor Author

renovate bot commented Oct 17, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants