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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 11, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/ni ^0.22.4 -> ^0.23.2 age adoption passing confidence
@types/node (source) ^22.9.0 -> ^22.10.2 age adoption passing confidence
axios (source) ^1.7.5 -> ^1.7.9 age adoption passing confidence
bumpp ^9.5.2 -> ^9.9.2 age adoption passing confidence
clean-publish ^5.0.0 -> ^5.1.0 age adoption passing confidence
eslint (source) ^8.57.0 -> ^8.57.1 age adoption passing confidence
esno ^4.7.0 -> ^4.8.0 age adoption passing confidence
prettier (source) ^3.3.3 -> ^3.4.2 age adoption passing confidence
tsup (source) ^8.2.4 -> ^8.3.5 age adoption passing confidence
typescript (source) ^5.5.4 -> ^5.7.2 age adoption passing confidence
vite (source) ^5.4.2 -> ^5.4.11 age adoption passing confidence
vitest (source) ^2.0.5 -> ^2.1.8 age adoption passing confidence

Release Notes

antfu-collective/ni (@​antfu/ni)

v0.23.2

Compare Source

No significant changes

    View changes on GitHub

v0.23.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.23.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub
axios/axios (axios)

v1.7.9

Compare Source

Reverts
Contributors to this release

v1.7.8

Compare Source

Bug Fixes
Contributors to this release
antfu/bumpp (bumpp)

v9.9.2

Compare Source

v9.9.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v9.9.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
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>;

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

egoist/tsup (tsup)

v8.3.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.3.4

Compare Source

No significant changes

    View changes on GitHub

v8.3.0

Compare Source

Bug Fixes
Features
microsoft/TypeScript (typescript)

v5.7.2

Compare Source

vitejs/vite (vite)

v5.4.11

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.10

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.9

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.8

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.7

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.6

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.5

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.4

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.3

Compare Source

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Nov 11, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 96a6d1d to ef9a5a1 Compare November 13, 2024 16:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 6fa7d75 to 25c83e6 Compare November 25, 2024 21:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from c6c56a5 to df546db Compare December 2, 2024 17:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from fcd7b2f to 99b82fa Compare December 8, 2024 19:58
@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 2 times, most recently from 0ffb101 to 658cd50 Compare December 12, 2024 15:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 658cd50 to cbe2cce Compare December 21, 2024 19:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cbe2cce to 0ac81a8 Compare December 22, 2024 04:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants