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 #522

Merged
merged 1 commit into from
Feb 2, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/core (source) ^7.26.0 -> ^7.26.7 age adoption passing confidence devDependencies patch
@babel/preset-env (source) ^7.26.0 -> ^7.26.7 age adoption passing confidence devDependencies patch
@octokit/types ^13.6.2 -> ^13.8.0 age adoption passing confidence dependencies minor
@vitest/eslint-plugin ^1.1.22 -> ^1.1.25 age adoption passing confidence devDependencies patch
babel-plugin-annotate-pure-calls ^0.4.0 -> ^0.5.0 age adoption passing confidence devDependencies minor
eslint (source) ^9.17.0 -> ^9.19.0 age adoption passing confidence devDependencies minor
node (source) 22.12.0 -> 22.13.1 age adoption passing confidence minor
rollup (source) ^4.29.1 -> ^4.34.0 age adoption passing confidence devDependencies minor
rollup (source) ^4.29.1 -> ^4.34.0 age adoption passing confidence dependencies minor
typescript (source) ^5.7.2 -> ^5.7.3 age adoption passing confidence devDependencies patch
typescript-eslint (source) ^8.19.0 -> ^8.22.0 age adoption passing confidence devDependencies minor
zx (source) ^8.3.0 -> ^8.3.2 age adoption passing confidence devDependencies patch

Release Notes

babel/babel (@​babel/core)

v7.26.7

Compare Source

🐛 Bug Fix
octokit/types.ts (@​octokit/types)

v13.8.0

Compare Source

Features
  • GraphQL: add type documentation for query and operationName (#​662) (bb399b2)

v13.7.0

Compare Source

Features
  • new action runner groups endpoints, new code scanning alerts autofix endpoints, new sub-issues endpoints, new private registries enpoints, new code security endpoints, various description updates (#​658) (b6db78e)

v13.6.3

Compare Source

Reverts
vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.1.25

Compare Source

Bug Fixes
  • consistent-test-it: Remove duplicate imports inside the import statement (#​638) (0ae4289)

v1.1.24

Compare Source

Bug Fixes

v1.1.23

Compare Source

Bug Fixes
  • make rule message punctuation more consistent and address some typos (#​628) (31cae3b)

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.22...v1.1.23

Andarist/babel-plugin-annotate-pure-calls (babel-plugin-annotate-pure-calls)

v0.5.0

Compare Source

eslint/eslint (eslint)

v9.19.0

Compare Source

v9.18.0

Compare Source

nodejs/node (node)

v22.13.1

Compare Source

v22.13.0

Compare Source

rollup/rollup (rollup)

v4.34.0

Compare Source

2025-02-01

Features
  • Tree-shake unused properties in object literals (re-implements #​5420) (#​5737)
Pull Requests

v4.33.0

Compare Source

2025-02-01

Features
  • Correctly detect literal value of more negated expressions (#​5812)
Bug Fixes
  • Use the correct with/assert attribute key in dynamic imports (#​5818)
  • Fix an issue where logical expressions were considered to have the wrong value (#​5819)
Pull Requests

v4.32.1

Compare Source

2025-01-28

Bug Fixes
  • Fix possible crash when optimizing logical expressions (#​5804)
Pull Requests

v4.32.0

Compare Source

2025-01-24

Features
  • Add watch.onInvalidate option to trigger actions immediately when a file is changed (#​5799)
Bug Fixes
  • Fix incorrect urls in CLI warnings (#​5809)
Pull Requests

v4.31.0

Compare Source

2025-01-19

Features
  • Do not immediately quit when trying to use watch mode from within non-TTY environments (#​5803)
Bug Fixes
  • Handle files with more than one UTF-8 BOM header (#​5806)
Pull Requests

v4.30.1

Compare Source

2025-01-07

Bug Fixes
  • Prevent invalid code when simplifying unary expressions in switch cases (#​5786)
Pull Requests

v4.30.0

Compare Source

2025-01-06

Features
  • Inline values of resolvable unary expressions for improved tree-shaking (#​5775)
Pull Requests

v4.29.2

Compare Source

2025-01-05

Bug Fixes
  • Keep import attributes when using dynamic ESM import() expressions from CommonJS (#​5781)
Pull Requests
microsoft/TypeScript (typescript)

v5.7.3

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.22.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.21.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.20.0

Compare Source

🚀 Features
  • eslint-plugin: [no-misused-spread] add new rule (#​10551)
❤️ Thank You
  • Josh Goldberg ✨

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

v8.19.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.

google/zx (zx)

v8.3.2: – Clogged Drain

Compare Source

Restrics unsafe vals usage on dotenv.stringify #​1093 #​1094

v8.3.1: – Perfect Seal

Compare Source

The release essence: introduced full-featured .env support #​461#​1060 #​1052 #​1043 #​1037 #​1032 #​1030 #​1022

API

envapi is a tiny 100 LOC dotenv-inspired parser and serializer that we've integrated into zx.

import { dotenv, fs } from 'zx'

// parse
const env = dotenv.parse('A=A\nFOO=BAR') // { A: 'A', FOO: 'BAR' }

// serialize
const raw = dotenv.stringify(env) // A=A\nFOO=BAR
await fs.writeFile('.env', raw)

// load
dotenv.load('.env') // { A: 'A', FOO: 'BAR' }

// update the process.env
dotenv.config('.env')
process.env.A // A
CLI
zx --env .env script.mjs
zx --env-file .env script.mjs
QnA

— Why not use dotenv directly?
— 1) Size does matter 2) We'd like to avoid internal vaults.

— Why not load .env by default?
— 1) Explicit is better than implicit 2) Runtime itself (like bun) may provide the feature.

Chore


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.


  • 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 Feb 1, 2025
@github-actions github-actions bot added the context-v3 Related to tailwind-merge v3 label Feb 1, 2025
Copy link

github-actions bot commented Feb 1, 2025

Metrics report

At head commit 5b13546 and base commit e5eec55 at 2025-02-01T22:10:27.643Z

Size

No changes

All size metrics
Export Size original Size minified Size minified and Brotli compressed
tailwind-merge esm 84.10 kB 0% 22.51 kB 0% 6.31 kB 0%
 › createTailwindMerge 13.42 kB 0% 3.61 kB 0% 1.44 kB 0%
 › extendTailwindMerge 83.39 kB 0% 21.88 kB 0% 6.04 kB 0%
 › fromTheme 0.16 kB 0% 0.08 kB 0% 0.09 kB 0%
 › getDefaultConfig 67.63 kB 0% 17.38 kB 0% 4.49 kB 0%
 › mergeConfigs 2.12 kB 0% 0.80 kB 0% 0.27 kB 0%
 › twJoin 1.06 kB 0% 0.26 kB 0% 0.16 kB 0%
 › twMerge 81.08 kB 0% 21.02 kB 0% 5.87 kB 0%
 › validators 4.49 kB 0% 1.69 kB 0% 0.73 kB 0%
tailwind-merge cjs 84.36 kB 0% 28.36 kB 0% 6.63 kB 0%
tailwind-merge/es5 esm 89.38 kB 0% 24.44 kB 0% 6.52 kB 0%
 › createTailwindMerge 15.28 kB 0% 4.20 kB 0% 1.56 kB 0%
 › extendTailwindMerge 88.28 kB 0% 23.80 kB 0% 6.27 kB 0%
 › fromTheme 0.21 kB 0% 0.10 kB 0% 0.09 kB 0%
 › getDefaultConfig 70.06 kB 0% 18.50 kB 0% 4.58 kB 0%
 › mergeConfigs 2.47 kB 0% 0.87 kB 0% 0.29 kB 0%
 › twJoin 1.08 kB 0% 0.26 kB 0% 0.14 kB 0%
 › twMerge 85.36 kB 0% 22.74 kB 0% 6.03 kB 0%
 › validators 6.09 kB 0% 2.23 kB 0% 0.76 kB 0%
tailwind-merge/es5 cjs 89.64 kB 0% 30.31 kB 0% 6.89 kB 0%

Copy link

codspeed-hq bot commented Feb 1, 2025

CodSpeed Performance Report

Merging #522 will not alter performance

Comparing renovate/all-minor-patch (5b13546) with main (e5eec55)

Summary

✅ 5 untouched benchmarks

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c760660 to dbaa9d4 Compare February 1, 2025 08:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dbaa9d4 to 5b13546 Compare February 1, 2025 22:09
@dcastil dcastil merged commit e80f256 into main Feb 2, 2025
6 checks passed
@dcastil dcastil deleted the renovate/all-minor-patch branch February 2, 2025 10:19
Copy link

This was addressed in release v3.0.2.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
context-v3 Related to tailwind-merge v3 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