-
-
Notifications
You must be signed in to change notification settings - Fork 70
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
Update all non-major dependencies #511
Merged
Merged
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
renovate
bot
added
dependencies
Pull requests that update a dependency file
skip changelog
Won't show up in changelog
labels
Jan 1, 2025
github-actions
bot
added
bug
Something isn't working
context-v2
Related to tailwind-merge v2
labels
Jan 1, 2025
Metrics reportAt head commit e3f94ff and base commit 1a92c35 at SizeNo changes All size metrics
|
CodSpeed Performance ReportMerging #511 will not alter performanceComparing Summary
|
dcastil
changed the title
fix(deps): update all non-major dependencies
Update all non-major dependencies
Jan 1, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
context-v2
Related to tailwind-merge v2
dependencies
Pull requests that update a dependency file
skip changelog
Won't show up in changelog
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:
^12.1.1
->^12.1.2
^1.1.14
->^1.1.22
^0.24.0
->^0.24.2
^9.16.0
->^9.17.0
^4.28.1
->^4.29.1
^8.17.0
->^8.19.0
^8.2.4
->^8.3.0
Release Notes
rollup/plugins (@rollup/plugin-typescript)
v12.1.2
2024-12-15
Bugfixes
vitest-dev/eslint-plugin-vitest (@vitest/eslint-plugin)
v1.1.22
Compare Source
Bug Fixes
valid-title
false positives whentest.extend
is used (#584) (9c2670a)v1.1.21
Compare Source
Bug Fixes
Performance Improvements
What's Changed
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.20...v1.1.21
v1.1.20
Compare Source
Bug Fixes
What's Changed
New Contributors
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.19...v1.1.20
v1.1.19
Compare Source
Bug Fixes
What's Changed
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.18...v1.1.19
v1.1.18
Compare Source
Features
What's Changed
New Contributors
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.17...v1.1.18
v1.1.17
Compare Source
Bug Fixes
What's Changed
prefer-called-with
rule docs by @FloEdelmann in https://github.com/vitest-dev/eslint-plugin-vitest/pull/592Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.16...v1.1.17
v1.1.16
Compare Source
What's Changed
New Contributors
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.15...v1.1.16
v1.1.15
Compare Source
Bug Fixes
What's Changed
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.14...v1.1.15
evanw/esbuild (esbuild)
v0.24.2
Compare Source
Fix regression with
--define
andimport.meta
(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
define
values to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=...
. Even thoughimport
is normally a keyword that can't be used as an identifier, ES modules special-case theimport.meta
expression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by @sapphi-red.
v0.24.1
Compare Source
Allow
es2024
as a target intsconfig.json
(#4004)TypeScript recently added
es2024
as a compilation target, so esbuild now supports this in thetarget
field oftsconfig.json
files, such as in the following configuration file:As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by @billyjanitsch.
Allow automatic semicolon insertion after
get
/set
This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--define
and--pure
(#4008)The
define
andpure
API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--define
and--pure
consistent with--global-name
, which already supported quoted property names. For example, the following is now possible:Note that if you're passing values like this on the command line using esbuild's
--define
flag, then you'll need to know how to escape quote characters for your shell. You may find esbuild's JavaScript API more ergonomic and portable than writing shell code.Minify empty
try
/catch
/finally
blocks (#4003)With this release, esbuild will now attempt to minify empty
try
blocks:This can sometimes expose additional minification opportunities.
Include
entryPoint
metadata for thecopy
loader (#3985)Almost all entry points already include a
entryPoint
field in theoutputs
map in esbuild's build metadata. However, this wasn't the case for thecopy
loader as that loader is a special-case that doesn't behave like other loaders. This release adds theentryPoint
field in this case.Source mappings may now contain
null
entries (#3310, #3878)With this change, sources that result in an empty source map may now emit a
null
source mapping (i.e. one with a generated position but without a source index or original position). This change improves source map accuracy by fixing a problem where minified code from a source without any source mappings could potentially still be associated with a mapping from another source file earlier in the generated output on the same minified line. It manifests as nonsensical files in source mapped stack traces. Now thenull
mapping "resets" the source map so that any lookups into the minified code without any mappings resolves tonull
(which appears as the output file in stack traces) instead of the incorrect source file.This change shouldn't affect anything in most situations. I'm only mentioning it in the release notes in case it introduces a bug with source mapping. It's part of a work-in-progress future feature that will let you omit certain unimportant files from the generated source map to reduce source map size.
Avoid using the parent directory name for determinism (#3998)
To make generated code more readable, esbuild includes the name of the source file when generating certain variable names within the file. Specifically bundling a CommonJS file generates a variable to store the lazily-evaluated module initializer. However, if a file is named
index.js
(or with a different extension), esbuild will use the name of the parent directory instead for a better name (since many packages have files all namedindex.js
but have unique directory names).This is problematic when the bundle entry point is named
index.js
and the parent directory name is non-deterministic (e.g. a temporary directory created by a build script). To avoid non-determinism in esbuild's output, esbuild will now useindex
instead of the parent directory in this case. Specifically this will happen if the parent directory is equal to esbuild'soutbase
API option, which defaults to the lowest common ancestor of all user-specified entry point paths.Experimental support for esbuild on NetBSD (#3974)
With this release, esbuild now has a published binary executable for NetBSD in the
@esbuild/netbsd-arm64
npm package, and esbuild's installer has been modified to attempt to use it when on NetBSD. Hopefully this makes installing esbuild via npm work on NetBSD. This change was contributed by @bsiegert.eslint/eslint (eslint)
v9.17.0
Compare Source
rollup/rollup (rollup)
v4.29.1
Compare Source
2024-12-21
Bug Fixes
Pull Requests
v4.29.0
Compare Source
2024-12-20
Features
Pull Requests
typescript-eslint/typescript-eslint (typescript-eslint)
v8.19.0
Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.18.2
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.18.1
Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.18.0
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
google/zx (zx)
v8.3.0
: – Pipes of SteelCompare Source
A few weeks ago zx took a part in OSS Library Night 🎉
Many thanks to the organizers and contributors who have boosted the project with their pull requests!
Today we are releasing the zx with a huge bunch of new features and improvements.
Features
API
[Symbol.asyncIterator]
API forProcessPromise
#984 #998 #1000Now you can iterate over the process output using
for await
loop from any point of the process execution.Pipes
pipe()
#1023signal
handling on piping #992CLI
$.defaults
setting viaZX_
-prefixed environment variables #988 #998ZX_VERBOSE=true ZX_SHELL='/bin/bash' zx script.mjs
--env
option to load dotenvs 1022 #1030--prefer-local
option #1015Fixes
process.exit()
#993 #997ZX_SHELL
env handling #1024Docs
main
branch #985Chores
.node_version
to improve contributors devx #1012chalk
updated to v5.4.1 #1019Merry Christmas! 🎄🎅🎁
Configuration
📅 Schedule: Branch creation - "* 0-3 1 * *" in timezone Europe/Berlin, 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.