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

feat(deps): update all non-major dependencies #22

Merged
merged 1 commit into from
Jan 16, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^22.10.5 -> ^22.10.7 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^8.19.1 -> ^8.20.0 age adoption passing confidence
@typescript-eslint/parser (source) ^8.19.1 -> ^8.20.0 age adoption passing confidence
@unocss/eslint-plugin (source) ^65.4.0 -> ^65.4.2 age adoption passing confidence
@vitest/eslint-plugin ^1.1.14 -> ^1.1.25 age adoption passing confidence
bumpp ^9.10.0 -> ^9.10.1 age adoption passing confidence
eslint-plugin-react-hooks (source) ^5.0.0 -> ^5.1.0 age adoption passing confidence
fs-extra ^11.2.0 -> ^11.3.0 age adoption passing confidence
lint-staged ^15.3.0 -> ^15.4.0 age adoption passing confidence
pnpm (source) 9.14.2 -> 9.15.4 age adoption passing confidence
prettier (source) ^3.3.3 -> ^3.4.2 age adoption passing confidence

Release Notes

facebook/react (eslint-plugin-react-hooks)

v5.1.0

Compare Source

jprichardson/node-fs-extra (fs-extra)

v11.3.0

Compare Source

pnpm/pnpm (pnpm)

v9.15.4

Compare Source

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

v9.14.4

Compare Source

v9.14.3

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>;

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


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 force-pushed the renovate/all-minor-patch branch from d056fff to 6f64feb Compare November 25, 2024 20:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6f64feb to ea369e9 Compare November 25, 2024 21:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ea369e9 to ccc328a Compare November 26, 2024 05:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ccc328a to f8bed54 Compare November 26, 2024 14:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f8bed54 to 9f64055 Compare November 26, 2024 20:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9f64055 to ff80e1d Compare November 27, 2024 04:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ff80e1d to c210631 Compare November 27, 2024 15:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c210631 to 7d4c074 Compare November 28, 2024 07:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7d4c074 to 489db6e Compare November 28, 2024 18:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 489db6e to 257434a Compare November 29, 2024 11:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 257434a to 6216f4a Compare November 29, 2024 23:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6216f4a to cf18f07 Compare November 30, 2024 04:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cf18f07 to e5c88f0 Compare November 30, 2024 06:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e5c88f0 to e2a1e66 Compare November 30, 2024 13:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 26f1cb1 to 1e9fbc5 Compare January 8, 2025 21:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1e9fbc5 to 60f0fa6 Compare January 9, 2025 06:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 60f0fa6 to 262d193 Compare January 9, 2025 11:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 262d193 to 47af694 Compare January 10, 2025 22:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 47af694 to 53c725f Compare January 11, 2025 22:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 53c725f to d3b148f Compare January 12, 2025 10:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d3b148f to 1060865 Compare January 13, 2025 08:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1060865 to c07b0d1 Compare January 13, 2025 17:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c07b0d1 to 86fab32 Compare January 13, 2025 21:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 86fab32 to c8a8ff4 Compare January 15, 2025 06:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c8a8ff4 to 82322aa Compare January 15, 2025 20:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 82322aa to f38917f Compare January 16, 2025 04:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f38917f to cd3d882 Compare January 16, 2025 09:36
@daflyinbed daflyinbed merged commit 2e50b3b into main Jan 16, 2025
4 of 5 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch January 16, 2025 09:40
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