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

📦 Update devDependencies #1349

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 7, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@actions/core (source) 1.10.1 -> 1.11.1 age adoption passing confidence
@types/mocha (source) 10.0.8 -> 10.0.10 age adoption passing confidence
@types/node (source) 20.16.10 -> 20.17.19 age adoption passing confidence
prettier (source) 3.3.3 -> 3.5.2 age adoption passing confidence
ts-mocha 10.0.0 -> 10.1.0 age adoption passing confidence
tsx (source) 4.19.1 -> 4.19.3 age adoption passing confidence
typescript (source) 5.6.2 -> 5.7.3 age adoption passing confidence

Release Notes

actions/toolkit (@​actions/core)

v1.11.1

  • Fix uses of crypto.randomUUID on Node 18 and earlier #​1842

v1.11.0

  • Add platform info utilities #​1551
  • Remove dependency on uuid package #​1824
prettier/prettier (prettier)

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

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

piotrwitek/ts-mocha (ts-mocha)

v10.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: piotrwitek/ts-mocha@v10.0.0...v10.1.0

privatenumber/tsx (tsx)

v4.19.3

Compare Source

v4.19.2

Compare Source

Bug Fixes
  • generate sourcesContent when Node.js debugger is enabled (#​670) (7c47074)

This release is also available on:

microsoft/TypeScript (typescript)

v5.7.3

Compare Source

v5.7.2

Compare Source

v5.6.3

Compare Source


Configuration

📅 Schedule: Branch creation - "after 12am on monday" in timezone America/Los_Angeles, 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.

@renovate renovate bot enabled auto-merge (squash) October 7, 2024 10:46
@renovate renovate bot force-pushed the renovate/devdependencies branch from 147e1bf to 226b738 Compare October 8, 2024 00:48
@renovate renovate bot changed the title 📦 Update dependency @actions/core to v1.11.1 📦 Update devDependencies Oct 8, 2024
@renovate renovate bot force-pushed the renovate/devdependencies branch 6 times, most recently from 55469d5 to b1263ac Compare October 9, 2024 17:37
@renovate renovate bot force-pushed the renovate/devdependencies branch 8 times, most recently from 57f912c to feb4543 Compare October 22, 2024 04:47
@renovate renovate bot force-pushed the renovate/devdependencies branch 10 times, most recently from d7a54e8 to b68ec7e Compare October 28, 2024 23:31
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from b7f4773 to c5cc905 Compare October 30, 2024 09:01
@renovate renovate bot force-pushed the renovate/devdependencies branch 8 times, most recently from d5102e6 to bd2670a Compare January 15, 2025 03:12
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 5cf31f2 to 8ef7408 Compare January 16, 2025 01:49
@renovate renovate bot force-pushed the renovate/devdependencies branch 6 times, most recently from ccb7af4 to e1968ba Compare January 28, 2025 21:18
@renovate renovate bot force-pushed the renovate/devdependencies branch 4 times, most recently from bd6934a to 0f79100 Compare February 10, 2025 18:21
@renovate renovate bot force-pushed the renovate/devdependencies branch 5 times, most recently from 2f00177 to 1a5cc2e Compare February 14, 2025 02:44
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from e581db2 to 9eddbe3 Compare February 20, 2025 16:12
@renovate renovate bot force-pushed the renovate/devdependencies branch from 9eddbe3 to 7af5680 Compare February 22, 2025 07:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants