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

Update all non-major dependencies #467

Merged
merged 1 commit into from
Sep 2, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 31, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/preset-env (source) ^7.25.3 -> ^7.25.4 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^8.0.1 -> ^8.3.0 age adoption passing confidence
@typescript-eslint/parser (source) ^8.0.1 -> ^8.3.0 age adoption passing confidence
esbuild ^0.23.0 -> ^0.23.1 age adoption passing confidence
rollup (source) ^4.19.1 -> ^4.21.2 age adoption passing confidence
tslib (source) ^2.6.3 -> ^2.7.0 age adoption passing confidence
zx ^8.1.4 -> ^8.1.5 age adoption passing confidence

Release Notes

babel/babel (@​babel/preset-env)

v7.25.4

Compare Source

🐛 Bug Fix
💅 Polish
  • babel-generator, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties, babel-plugin-transform-destructuring, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-methods, babel-plugin-transform-private-property-in-object, babel-plugin-transform-typescript, babel-runtime-corejs2, babel-runtime, babel-traverse
  • babel-generator, babel-plugin-transform-class-properties
  • babel-generator, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-transform-object-rest-spread
🔬 Output optimization
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.3.0

Compare Source

🚀 Features
  • eslint-plugin: [no-deprecation] add rule
🩹 Fixes
  • eslint-plugin: [no-unnecessary-template-expression] add missing parentheses in autofix

  • eslint-plugin: [no-unnecessary-type-parameters] check mapped alias type arguments

  • utils: add TSDeclareFunction to functionTypeTypes

  • ast-spec: use Expression in argument of ThrowStatement

❤️ Thank You
  • Abraham Guo
  • Daichi Kamiyama
  • Josh Goldberg ✨
  • Kim Sang Du
  • Sukka
  • Vida Xie

You can read about our versioning strategy and releases on our website.

v8.2.0

Compare Source

🚀 Features
  • eslint-plugin: add suggestion to require-await to remove async keyword
🩹 Fixes
  • eslint-plugin: [use-unknown-in-catch-callback-variable] flag second argument of .then

  • eslint-plugin: [no-unnecessary-type-assertion] conflict with TS for variables used before assignment

  • eslint-plugin: delete [] in message if ReadOnly<string[]> is detected

  • eslint-plugin: [no-redundant-type-constituents] differentiate a types-error any from a true any

  • eslint-plugin: [no-unnecessary-type-parameters] check mapped constraint types if necessary

  • eslint-plugin: [no-unsafe-enum-comparison] add logic to see through intersections

❤️ Thank You
  • Abraham Guo
  • Dave
  • Jake Bailey
  • James
  • Josh Goldberg ✨
  • liuxingbaoyu
  • Yukihiro Hasegawa
  • Yutong Zhu

You can read about our versioning strategy and releases on our website.

v8.1.0

Compare Source

🚀 Features
  • eslint-plugin: [no-floating-promises] enable "add await" suggestion if ignoreVoid is true

  • typescript-estree: restrict variable declarator definite/init combinations

  • eslint-plugin: [no-unsafe-return] check promise any

  • eslint-plugin: [no-misused-promises] check subtype methods against heritage type methods

🩹 Fixes
  • eslint-plugin: [no-unsafe-enum-comparison] typo in test

  • eslint-plugin: [no-unnecessary-type-parameters] skip checking function bodies for AST references

  • eslint-plugin: [member-ordering] get accessor member name & take into account abstract and decorator

  • eslint-plugin: [prefer-optional-chain] wrong parenthesis fix output

  • eslint-plugin: [no-unnecessary-type-parameters] clarify message

❤️ Thank You
  • Aly Thobani
  • Brad Zacher
  • James
  • Josh Goldberg ✨
  • Joshua Chen
  • Olivier Zalmanski
  • YeonJuan
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.3.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.2.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.1.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

evanw/esbuild (esbuild)

v0.23.1

Compare Source

  • Allow using the node: import prefix with es* targets (#​3821)

    The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:

    // Original code
    import fs from 'node:fs'
    fs.open
    
    // Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "fs";
    fs.open;
    
    // New output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "node:fs";
    fs.open;
  • Fix a panic when using the CLI with invalid build flags if --analyze is present (#​3834)

    Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.

  • Fix incorrect location of certain error messages (#​3845)

    This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.

  • Print comments before case clauses in switch statements (#​3838)

    With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).

  • Fix a memory leak with pluginData (#​3825)

    With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.

rollup/rollup (rollup)

v4.21.2

Compare Source

2024-08-30

Bug Fixes
  • Handle IIFE/UMD namespace definitions conflicting with a builtin property (#​5605)
Pull Requests

v4.21.1

Compare Source

2024-08-26

Bug Fixes
  • Ensure closeWatcher hook is called when watch mode is aborted via Ctrl+C (#​5618)
  • Do not produce invalid code for import.meta.url in compact mode (#​5624)
  • Do not throw when generating chunk names when preserving modules in Windows (#​5625)
Pull Requests

v4.21.0

Compare Source

2024-08-18

Features
  • Add option to configure directory for virtual modules when preserving modules (#​5602)
Pull Requests

v4.20.0

Compare Source

2024-08-03

Features
  • Allow plugins to specify the original file name when emitting assets (#​5596)
Pull Requests

v4.19.2

Compare Source

2024-08-01

Bug Fixes
  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#​5597)
Pull Requests
Microsoft/tslib (tslib)

v2.7.0

Compare Source

google/zx (zx)

v8.1.5

Compare Source

We've rolled out a new release!

Fixes

  • Added the minimist typings to the dts bundle. #​872 brings the fix.
  • Re-enabled the YAML extra
    API. #​870 #​879

Chores

  • Clarified cd(), within() and syncProcessCwd() interactions. #​878
  • Included mention of the cwd option in the documentation. #​868
  • Test enhancements. #​877 #​880

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" 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.


  • 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 dependencies Pull requests that update a dependency file skip changelog Won't show up in changelog labels Aug 31, 2024
@github-actions github-actions bot added the context-v2 Related to tailwind-merge v2 label Aug 31, 2024
Copy link

Metrics report

At head commit a2e41b5 and base commit a9aa591 at 2024-08-31T22:08:46.394Z

Size

No changes

All size metrics
Export Size original Size minified Size minified and Brotli compressed
tailwind-merge esm 72.08 kB 0% 20.22 kB 0% 5.77 kB 0%
 › createTailwindMerge 12.63 kB 0% 3.40 kB 0% 1.38 kB 0%
 › extendTailwindMerge 71.59 kB 0% 19.81 kB 0% 5.57 kB 0%
 › fromTheme 0.16 kB 0% 0.08 kB 0% 0.09 kB 0%
 › getDefaultConfig 57.30 kB 0% 15.90 kB 0% 4.15 kB 0%
 › mergeConfigs 1.45 kB 0% 0.45 kB 0% 0.23 kB 0%
 › twJoin 1.06 kB 0% 0.26 kB 0% 0.16 kB 0%
 › twMerge 69.96 kB 0% 19.31 kB 0% 5.43 kB 0%
 › validators 3.01 kB 0% 1.26 kB 0% 0.64 kB 0%
tailwind-merge cjs 72.34 kB 0% 23.29 kB 0% 6.12 kB 0%
tailwind-merge/es5 esm 75.88 kB 0% 21.60 kB 0% 6.06 kB 0%
 › createTailwindMerge 14.51 kB 0% 4.03 kB 0% 1.51 kB 0%
 › extendTailwindMerge 75.20 kB 0% 21.19 kB 0% 5.83 kB 0%
 › fromTheme 0.21 kB 0% 0.10 kB 0% 0.09 kB 0%
 › getDefaultConfig 58.44 kB 0% 16.45 kB 0% 4.17 kB 0%
 › mergeConfigs 1.78 kB 0% 0.50 kB 0% 0.24 kB 0%
 › twJoin 1.08 kB 0% 0.26 kB 0% 0.14 kB 0%
 › twMerge 72.97 kB 0% 20.49 kB 0% 5.62 kB 0%
 › validators 3.74 kB 0% 1.54 kB 0% 0.65 kB 0%
tailwind-merge/es5 cjs 76.13 kB 0% 24.70 kB 0% 6.27 kB 0%

Copy link

codspeed-hq bot commented Aug 31, 2024

CodSpeed Performance Report

Merging #467 will degrade performances by 62.61%

Comparing renovate/all-minor-patch (a2e41b5) with main (a9aa591)

Summary

❌ 4 (👁 4) regressions
✅ 1 untouched benchmarks

Benchmarks breakdown

Benchmark main renovate/all-minor-patch Change
👁 collection with cache 20 ms 28.5 ms -29.78%
👁 heavy 4.9 ms 8.6 ms -42.7%
👁 init 4.9 ms 8.1 ms -39.41%
👁 simple 5 ms 13.3 ms -62.61%

@dcastil dcastil merged commit 9a68667 into main Sep 2, 2024
8 checks passed
@dcastil dcastil deleted the renovate/all-minor-patch branch September 2, 2024 11:14
Copy link

github-actions bot commented Oct 3, 2024

This was addressed in release v2.5.3.

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant