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 automerge non-major updates #136

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 22, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pnpm (source) 9.14.2 -> 9.15.0 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence
typescript (source) 5.6.3 -> 5.7.2 age adoption passing confidence

Release Notes

pnpm/pnpm (pnpm)

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

microsoft/TypeScript (typescript)

v5.7.2

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from f60434c to ed2cae5 Compare November 22, 2024 17:47
@renovate renovate bot assigned rainx Nov 22, 2024
@renovate renovate bot requested a review from rainx November 22, 2024 20:10
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from ed2cae5 to 8ce7f53 Compare November 25, 2024 05:23
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 8ce7f53 to 0b5add0 Compare November 25, 2024 05:24
@renovate renovate bot changed the title fix(deps): update dependency typescript to v5.7.2 fix(deps): update automerge non-major updates Nov 26, 2024
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 0b5add0 to 12cff66 Compare November 26, 2024 05:02
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 12cff66 to 5c0433f Compare November 26, 2024 05:03
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 5c0433f to 40d94b7 Compare November 26, 2024 15:58
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 40d94b7 to f13d764 Compare November 26, 2024 15:59
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from f13d764 to 3c99599 Compare November 28, 2024 17:19
@renovate renovate bot changed the title fix(deps): update automerge non-major updates chore(deps): update automerge non-major updates Nov 28, 2024
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 3c99599 to 1493111 Compare November 28, 2024 17:19
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 1493111 to 533411d Compare November 29, 2024 13:49
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 533411d to 498e36e Compare November 29, 2024 13:50
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 498e36e to 49ec2fe Compare December 2, 2024 03:49
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 49ec2fe to 6f1da4a Compare December 2, 2024 03:50
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 6f1da4a to 6304218 Compare December 2, 2024 07:34
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 6304218 to aff8839 Compare December 2, 2024 07:35
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from aff8839 to 6143590 Compare December 4, 2024 11:29
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 6143590 to 750bd9b Compare December 4, 2024 11:30
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 750bd9b to 64f0cb4 Compare December 6, 2024 16:24
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 64f0cb4 to e005085 Compare December 6, 2024 16:25
@renovate renovate bot changed the title chore(deps): update automerge non-major updates chore(deps): update pnpm to v9.15.0 Dec 8, 2024
@renovate renovate bot changed the title chore(deps): update pnpm to v9.15.0 chore(deps): update automerge non-major updates Dec 8, 2024
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from e005085 to ea23928 Compare December 9, 2024 03:47
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from ea23928 to d5a3cc6 Compare December 9, 2024 03:48
@renovate renovate bot changed the title chore(deps): update automerge non-major updates fix(deps): update automerge non-major updates Dec 10, 2024
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from d5a3cc6 to 2e0b6d0 Compare December 16, 2024 04:18
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 2e0b6d0 to 53d0044 Compare December 16, 2024 04:19
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch 2 times, most recently from bd4ab7a to 6f2b0a0 Compare December 18, 2024 13:39
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 6f2b0a0 to ef63b7a Compare December 18, 2024 13:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

1 participant