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 Type Update Change Age Adoption Passing Confidence
actions/setup-node action minor v4.1.0 -> v4.2.0 age adoption passing confidence
nikic/php-parser require minor 5.3.1 -> 5.4.0 age adoption passing confidence
node (source) minor 22.12.0 -> 22.13.1 age adoption passing confidence
pnpm (source) packageManager minor 9.14.2 -> 9.15.5 age adoption passing confidence
prettier (source) dependencies minor 3.3.3 -> 3.4.2 age adoption passing confidence
typescript (source) dependencies minor 5.6.3 -> 5.7.3 age adoption passing confidence

Release Notes

actions/setup-node (actions/setup-node)

v4.2.0

Compare Source

nikic/PHP-Parser (nikic/php-parser)

v5.4.0

Compare Source

Added
  • Added Property::isAbstract() and Property::isFinal() methods.
  • Added PropertyHook::isFinal() method.
  • Emit an error if property hook is used on declaration with multiple properties.
Fixed
  • Make legacy class aliases compatible with classmap-authoritative autoloader.
  • Param::isPromoted() and Param::isPublic() now returns true for parameters that have property
    hooks but no explicit visibility modifier.
  • PropertyHook::getStmts() now correctly desugars short set hooks. set => $value will be
    expanded to set { $this->propertyName = $value; }. This requires the propertyName attribute
    on the hook to be set, which is now also set by the parser. If the attribute is not set,
    getStmts() will throw an error for short set hooks, as it is not possible to produce a correct
    desugaring.
nodejs/node (node)

v22.13.1

Compare Source

v22.13.0

Compare Source

pnpm/pnpm (pnpm)

v9.15.5: pnpm 9.15.5

Compare Source

Patch Changes

  • Verify that the package name is valid when executing the publish command.
  • When running pnpm install, the preprepare and postprepare scripts of the project should be executed #​8989.
  • Quote args for scripts with shell-quote to support new lines (on POSIX only) #​8980.
  • Proxy settings should be respected, when resolving Git-hosted dependencies #​6530.
  • Replace strip-ansi with the built-in util.stripVTControlCharacters #​9009.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.4: pnpm 9.15.4

Compare Source

Patch Changes

  • Ensure that recursive pnpm update --latest <pkg> updates only the specified package, with dedupe-peer-dependents=true.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

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

microsoft/TypeScript (typescript)

v5.7.3

Compare Source

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
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from fccef7c to 310f8bc Compare December 28, 2024 23:15
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 310f8bc to 9e7eaa9 Compare December 28, 2024 23:16
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 9e7eaa9 to bc00439 Compare December 30, 2024 04:40
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from bc00439 to 570b5c2 Compare December 30, 2024 04:41
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 570b5c2 to b395f09 Compare December 30, 2024 13:28
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from b395f09 to 89bb6a7 Compare December 30, 2024 13:29
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 89bb6a7 to cceca6f Compare January 6, 2025 02:30
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from cceca6f to 10d7dc0 Compare January 6, 2025 02:31
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 10d7dc0 to 8818b47 Compare January 6, 2025 03:12
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 8818b47 to 6a6ff67 Compare January 6, 2025 03:13
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 6a6ff67 to f994a58 Compare January 6, 2025 08:03
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from f994a58 to c708a29 Compare January 6, 2025 08:04
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from c708a29 to b4ed653 Compare January 8, 2025 14:41
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from b4ed653 to 0f89371 Compare January 8, 2025 14:42
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 0f89371 to d2075de Compare January 8, 2025 22:17
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from d2075de to 3725794 Compare January 8, 2025 22:18
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 3725794 to 62346c9 Compare January 13, 2025 04:26
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 62346c9 to 76e20d1 Compare January 13, 2025 04:27
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 76e20d1 to 8416736 Compare January 13, 2025 21:25
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 8416736 to f61b0da Compare January 13, 2025 21:26
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from f61b0da to 73b9ca1 Compare January 20, 2025 05:08
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 73b9ca1 to 33e67b7 Compare January 20, 2025 05:09
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 33e67b7 to 0fd978e Compare January 21, 2025 17:29
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 0fd978e to baf4fe0 Compare January 21, 2025 17:31
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch 2 times, most recently from 61eb219 to 1e6ea7d Compare January 27, 2025 04:50
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 1e6ea7d to 9a1b3dd Compare January 27, 2025 04:50
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 9a1b3dd to 892105a Compare February 2, 2025 20:28
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 892105a to f2a02f2 Compare February 2, 2025 20:29
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