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.13.4 age adoption passing confidence
axios (source) ^1.7.5 -> ^1.7.9 age adoption passing confidence
bumpp ^9.5.2 -> ^9.11.1 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.5.1 age adoption passing confidence
tsup (source) ^8.2.4 -> ^8.3.6 age adoption passing confidence
typescript (source) ^5.5.4 -> ^5.7.3 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-collective/bumpp (bumpp)

v9.11.1

Compare Source

   🚀 Features
    View changes on GitHub

v9.11.0

Compare Source

   🚀 Features
    View changes on GitHub

v9.10.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v9.10.1

Compare Source

   🚀 Features
    View changes on GitHub

v9.10.0

Compare Source

   🚀 Features
    View changes on GitHub

v9.9.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

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
prettier/prettier (prettier)

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes

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.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

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.3

Compare Source

v5.7.2

Compare Source


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), 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 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 2 times, most recently from cbe2cce to 0ac81a8 Compare December 22, 2024 04:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a93a62c to 1873fb1 Compare January 3, 2025 09:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from ab7f64c to a786d9b Compare January 13, 2025 21:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 1a2269b to c9695d3 Compare January 21, 2025 13:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from dfe8ea4 to dfecbd5 Compare January 28, 2025 04:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a5ed720 to 1233e91 Compare February 4, 2025 01:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from cb824a1 to ab0e740 Compare February 13, 2025 19:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ab0e740 to b735c75 Compare February 14, 2025 02:40
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