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

fix(deps): update all non-major dependencies #51

Merged
merged 2 commits into from
Jan 8, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 9, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/types (source) ^7.26.0 -> ^7.26.3 age adoption passing confidence
@rollup/pluginutils (source) ^5.1.3 -> ^5.1.4 age adoption passing confidence
@sxzz/test-utils ^0.3.8 -> ^0.3.11 age adoption passing confidence
@types/node (source) ^22.10.1 -> ^22.10.5 age adoption passing confidence
bumpp ^9.8.1 -> ^9.9.2 age adoption passing confidence
eslint (source) ^9.16.0 -> ^9.17.0 age adoption passing confidence
fast-glob ^3.3.2 -> ^3.3.3 age adoption passing confidence
magic-string-ast ^0.6.3 -> ^0.7.0 age adoption passing confidence
pnpm (source) 9.14.4 -> 9.15.3 age adoption passing confidence
prettier (source) ^3.4.1 -> ^3.4.2 age adoption passing confidence
rollup (source) ^4.28.0 -> ^4.30.1 age adoption passing confidence
unplugin ^2.0.0 -> ^2.1.2 age adoption passing confidence
vite (source) ^6.0.1 -> ^6.0.7 age adoption passing confidence
vite-node (source) ^2.1.6 -> ^2.1.8 age adoption passing confidence
vitest (source) ^2.1.6 -> ^2.1.8 age adoption passing confidence

Release Notes

babel/babel (@​babel/types)

v7.26.3

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-helper-builder-binary-assignment-operator-visitor, babel-plugin-transform-exponentiation-operator
🏃‍♀️ Performance
rollup/plugins (@​rollup/pluginutils)

v5.1.4

2024-12-15

Updates
  • refactor: replace test with includes (#​1787)
sxzz/test-utils (@​sxzz/test-utils)

v0.3.11

Compare Source

   🚀 Features
    View changes on GitHub

v0.3.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.3.9

Compare Source

   🚀 Features
    View changes on GitHub
antfu/bumpp (bumpp)

v9.9.2

Compare Source

No significant changes

    View changes on GitHub

v9.9.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v9.9.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v9.17.0

Compare Source

mrmlnc/fast-glob (fast-glob)

v3.3.3

Compare Source

sxzz/magic-string-ast (magic-string-ast)

v0.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
pnpm/pnpm (pnpm)

v9.15.3

Compare Source

v9.15.2: pnpm 9.15.2

Compare Source

Patch Changes

  • Fixed publish/pack error with workspace dependencies with relative paths #​8904. It was broken in v9.4.0 (398472c).
  • Use double quotes in the command suggestion by pnpm patch on Windows #​7546.
  • Do not fall back to SSH, when resolving a git-hosted package if git ls-remote works via HTTPS #​8906.
  • Improve how packages with blocked lifecycle scripts are reported during installation. Always print the list of ignored scripts at the end of the output. Include a hint about how to allow the execution of those packages.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.1

Compare Source

v9.15.0

Compare Source

prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;
rollup/rollup (rollup)

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

v4.29.1

Compare Source

2024-12-21

Bug Fixes
  • Fix crash from deoptimized logical expressions (#​5771)
Pull Requests

v4.29.0

Compare Source

2024-12-20

Features
  • Treat objects as truthy and always check second argument to better simplify logical expressions (#​5763)
Pull Requests

v4.28.1

Compare Source

2024-12-06

Bug Fixes
  • Support running Rollup natively on LoongArch (#​5749)
  • Add optional debugId to SourceMap types (#​5751)
Pull Requests
unjs/unplugin (unplugin)

v2.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.1

Compare Source

   🐞 Bug Fixes
  • esbuild: Pass original build for custom esbuild setup  -  by @​sxzz (9f85a)
    View changes on GitHub

v2.1.0

Compare Source

No significant changes

    View changes on GitHub
vitejs/vite (vite)

v6.0.7

Compare Source

v6.0.6

Compare Source

v6.0.5

Compare Source

v6.0.4

Compare Source

v6.0.3

Compare Source

v6.0.2

Compare Source

vitest-dev/vitest (vite-node)

v2.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 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 dependencies label Dec 9, 2024
Copy link

stackblitz bot commented Dec 9, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copy link

socket-security bot commented Dec 9, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@babel/[email protected] environment +2 2.63 MB nicolo-ribaudo
npm/@rollup/[email protected] None +3 220 kB guybedford, lukastaegert, rich_harris, ...1 more
npm/@sxzz/[email protected] Transitive: filesystem +3 176 kB sxzz
npm/@types/[email protected] None +1 2.37 MB types
npm/[email protected] Transitive: environment, filesystem, network, shell +59 5.11 MB antfu
npm/[email protected] None 0 134 kB esbuild, evanw
npm/[email protected] environment Transitive: eval, filesystem, shell, unsafe +84 10.7 MB eslintbot
npm/[email protected] filesystem +17 506 kB mrmlnc
npm/[email protected] None +2 593 kB sxzz
npm/[email protected] None 0 7.83 MB prettier-bot
npm/[email protected] None +1 2.64 MB eventualbuddha, lukastaegert, rich_harris, ...2 more
npm/[email protected] Transitive: environment +2 759 kB antfu, sxzz
npm/[email protected] Transitive: environment, eval, filesystem, network, shell, unsafe +11 4.23 MB vitestbot
npm/[email protected] Transitive: environment, filesystem +4 3.19 MB antfu, patak, soda, ...2 more
npm/[email protected] environment, eval Transitive: filesystem, network, shell, unsafe +36 7.77 MB vitestbot

🚮 Removed packages: npm/@babel/[email protected], npm/@rollup/[email protected], npm/@sxzz/[email protected], npm/@types/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 261b5fc to b22333d Compare December 9, 2024 04:02
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 6aba1b1 to 0d0f775 Compare December 15, 2024 18:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 10d9f3d to 3b2b811 Compare December 26, 2024 03:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 1993db6 to fc20f5b Compare January 3, 2025 07:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 3669d39 to 734438f Compare January 6, 2025 07:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 734438f to 290a556 Compare January 7, 2025 12:52
@sxzz sxzz merged commit 70793b3 into main Jan 8, 2025
1 check passed
@sxzz sxzz deleted the renovate/all-minor-patch branch January 8, 2025 05:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant