Skip to content

chore(deps): update all dependencies #2

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

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 7, 2024

This PR contains the following updates:

Package Change Age Confidence
@cloudflare/workers-types 4.20241011.0 -> 4.20250726.0 age confidence
@types/node (source) 22.7.5 -> 22.16.5 age confidence
prettier (source) 3.3.3 -> 3.6.2 age confidence
prettier-plugin-organize-imports 4.1.0 -> 4.2.0 age confidence
tsup (source) 8.3.0 -> 8.5.0 age confidence
tsx (source) 4.19.1 -> 4.20.3 age confidence
typescript (source) 5.6.3 -> 5.8.3 age confidence

Release Notes

cloudflare/workerd (@​cloudflare/workers-types)

v4.20250726.0

Compare Source

v4.20250725.0

Compare Source

v4.20250724.0

Compare Source

v4.20250723.0

Compare Source

v4.20250722.0

Compare Source

v4.20250719.0

Compare Source

v4.20250718.0

Compare Source

v4.20250715.0

Compare Source

v4.20250712.0

Compare Source

v4.20250711.0

Compare Source

v4.20250710.0

Compare Source

v4.20250709.0

Compare Source

v4.20250708.0

Compare Source

v4.20250705.0

Compare Source

v4.20250704.0

Compare Source

v4.20250703.0

Compare Source

v4.20250702.0

Compare Source

v4.20250701.0

Compare Source

v4.20250628.0

Compare Source

v4.20250627.0

Compare Source

v4.20250620.0

Compare Source

v4.20250619.0

Compare Source

v4.20250618.0

Compare Source

v4.20250617.0

Compare Source

v4.20250614.0

Compare Source

v4.20250613.0

Compare Source

v4.20250612.0

Compare Source

v4.20250610.0

Compare Source

v4.20250607.0

Compare Source

v4.20250606.0

Compare Source

v4.20250605.0

Compare Source

v4.20250604.0

Compare Source

v4.20250603.0

Compare Source

v4.20250601.0

Compare Source

v4.20250531.0

Compare Source

v4.20250529.0

Compare Source

v4.20250528.0

Compare Source

v4.20250525.0

Compare Source

v4.20250524.0

Compare Source

v4.20250523.0

Compare Source

v4.20250522.0

Compare Source

v4.20250521.0

Compare Source

v4.20250520.0

Compare Source

v4.20250519.0

Compare Source

v4.20250517.0

Compare Source

v4.20250515.0

Compare Source

v4.20250514.0

Compare Source

v4.20250513.0

Compare Source

v4.20250510.0

Compare Source

v4.20250509.0

Compare Source

v4.20250508.0

Compare Source

v4.20250507.0

Compare Source

v4.20250506.0

Compare Source

v4.20250505.0

Compare Source

v4.20250504.0

Compare Source

v4.20250503.0

Compare Source

v4.20250502.0

Compare Source

v4.20250430.0

Compare Source

v4.20250429.0

Compare Source

v4.20250428.0

Compare Source

v4.20250427.0

Compare Source

v4.20250426.0

Compare Source

v4.20250425.0

Compare Source

v4.20250424.0

Compare Source

v4.20250423.0

Compare Source

v4.20250422.0

Compare Source

v4.20250421.0

Compare Source

v4.20250420.0

Compare Source

v4.20250419.0

Compare Source

v4.20250418.0

Compare Source

v4.20250417.0

Compare Source

v4.20250416.0

Compare Source

v4.20250415.0

Compare Source

v4.20250414.0

Compare Source

v4.20250413.0

Compare Source

v4.20250412.0

Compare Source

v4.20250410.0

Compare Source

v4.20250409.0

Compare Source

v4.20250408.0

Compare Source

v4.20250407.0

Compare Source

v4.20250406.0

Compare Source

v4.20250405.0

Compare Source

v4.20250404.0

Compare Source

v4.20250403.0

Compare Source

v4.20250402.0

Compare Source

v4.20250401.0

Compare Source

v4.20250327.0

Compare Source

v4.20250321.0

Compare Source

v4.20250320.0

Compare Source

v4.20250319.0

Compare Source

v4.20250317.0

Compare Source

v4.20250313.0

Compare Source

v4.20250312.0

Compare Source

v4.20250311.0

Compare Source

v4.20250310.0

Compare Source

v4.20250303.0

Compare Source

v4.20250224.0

Compare Source

v4.20250214.0

Compare Source

v4.20250204.0

Compare Source

v4.20250129.0

Compare Source

v4.20250124.3

Compare Source

v4.20250121.0

Compare Source

v4.20250109.0

Compare Source

v4.20241230.0

Compare Source

v4.20241224.0

Compare Source

v4.20241218.0

Compare Source

v4.20241216.0

Compare Source

v4.20241214.0

Compare Source

v4.20241205.0

Compare Source

v4.20241202.0

Compare Source

v4.20241127.0

Compare Source

v4.20241112.0

Compare Source

v4.20241106.0

Compare Source

v4.20241022.0

Compare Source

v4.20241018.0

Compare Source

prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

v3.5.3

Compare Source

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

simonhaenisch/prettier-plugin-organize-imports (prettier-plugin-organize-imports)

v4.2.0

Compare Source

egoist/tsup (tsup)

v8.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v8.4.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

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
privatenumber/tsx (tsx)

v4.20.3

Compare Source

v4.20.2

Compare Source

v4.20.1

Compare Source

v4.20.0

Compare Source

v4.19.4

Compare Source

v4.19.3

Compare Source

Bug Fixes
  • upgrade esbuild to ~0.25.0 to address vuln report (#​698) (e04e6c6)

This release is also available on:

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

Compare Source

v5.8.2

Compare Source

v5.7.3: TypeScript 5.7.3

Compare Source

For release notes, check out the release announcement.

Downloads are available on npm

v5.7.2: TypeScript 5.7

Compare Source

For release notes, check out the release announcement.

Downloads are available on:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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/minor-patch branch from 4869045 to 55c0ac4 Compare March 7, 2024 13:40
@renovate renovate bot changed the title Update All Dependencies Update All Dependencies - autoclosed Oct 16, 2024
@renovate renovate bot closed this Oct 16, 2024
@renovate renovate bot deleted the renovate/minor-patch branch October 16, 2024 09:45
@renovate renovate bot changed the title Update All Dependencies - autoclosed Update All Dependencies Oct 19, 2024
@renovate renovate bot reopened this Oct 19, 2024
@renovate renovate bot restored the renovate/minor-patch branch October 19, 2024 05:22
@renovate renovate bot changed the title Update All Dependencies chore(deps): update all dependencies Oct 19, 2024
@renovate renovate bot force-pushed the renovate/minor-patch branch from 55c0ac4 to 4e70a85 Compare October 19, 2024 05:22
@renovate renovate bot force-pushed the renovate/minor-patch branch from 4e70a85 to be6922a Compare November 1, 2024 07:42
@renovate renovate bot force-pushed the renovate/minor-patch branch 2 times, most recently from df13ead to 59e6719 Compare January 17, 2025 03:25
@renovate renovate bot force-pushed the renovate/minor-patch branch 4 times, most recently from 2c9eb20 to 484223d Compare January 29, 2025 03:29
@renovate renovate bot force-pushed the renovate/minor-patch branch 3 times, most recently from 28722a0 to 0d6263e Compare February 5, 2025 04:19
@renovate renovate bot force-pushed the renovate/minor-patch branch 3 times, most recently from b96a123 to bf79ba0 Compare February 15, 2025 04:15
@renovate renovate bot force-pushed the renovate/minor-patch branch 3 times, most recently from 38062d1 to 2b709c3 Compare February 25, 2025 23:58
@renovate renovate bot force-pushed the renovate/minor-patch branch 4 times, most recently from b41821e to cb1cc18 Compare March 8, 2025 07:08
@renovate renovate bot force-pushed the renovate/minor-patch branch from cb1cc18 to e9f18d7 Compare March 11, 2025 03:44
@renovate renovate bot force-pushed the renovate/minor-patch branch 3 times, most recently from 211451a to c6e6e8f Compare April 5, 2025 07:19
@renovate renovate bot force-pushed the renovate/minor-patch branch 4 times, most recently from 28eb0e1 to ab4fc7d Compare April 13, 2025 08:11
@renovate renovate bot force-pushed the renovate/minor-patch branch 3 times, most recently from fb1b186 to 5ca7efb Compare April 20, 2025 11:27
@renovate renovate bot force-pushed the renovate/minor-patch branch 3 times, most recently from e806539 to 4ac4944 Compare May 3, 2025 03:31
@renovate renovate bot force-pushed the renovate/minor-patch branch 2 times, most recently from ff22275 to 822d926 Compare May 10, 2025 08:02
@renovate renovate bot force-pushed the renovate/minor-patch branch from 822d926 to fad457c Compare May 17, 2025 03:54
@renovate renovate bot force-pushed the renovate/minor-patch branch 3 times, most recently from f7d314c to 0f95c0a Compare May 31, 2025 08:18
@renovate renovate bot force-pushed the renovate/minor-patch branch 4 times, most recently from 4acf0e8 to bc5b5a1 Compare June 8, 2025 08:46
@renovate renovate bot force-pushed the renovate/minor-patch branch 2 times, most recently from ab51751 to 8edeecb Compare June 21, 2025 15:59
@renovate renovate bot force-pushed the renovate/minor-patch branch from 8edeecb to 34b512c Compare June 29, 2025 15:58
@renovate renovate bot force-pushed the renovate/minor-patch branch from 34b512c to 25668b5 Compare July 7, 2025 00:02
@renovate renovate bot force-pushed the renovate/minor-patch branch from 25668b5 to e525055 Compare July 19, 2025 12:12
@renovate renovate bot force-pushed the renovate/minor-patch branch from e525055 to c7c233c Compare July 27, 2025 19:59
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