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

chore(deps): update devdeps #64

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

chore(deps): update devdeps #64

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 26, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/preset-typescript (source) 7.24.7 -> 7.26.0 age adoption passing confidence
@types/jest (source) 29.5.12 -> 29.5.14 age adoption passing confidence
@types/node (source) 20.16.0 -> 20.17.12 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence
typescript (source) 5.5.4 -> 5.7.3 age adoption passing confidence

Release Notes

babel/babel (@​babel/preset-typescript)

v7.26.0

Compare Source

🚀 New Feature
  • babel-core, babel-generator, babel-parser, babel-plugin-syntax-import-assertions, babel-plugin-syntax-import-attributes, babel-preset-env, babel-standalone, babel-types
  • babel-core
  • babel-compat-data, babel-plugin-proposal-regexp-modifiers, babel-plugin-transform-regexp-modifiers, babel-preset-env, babel-standalone
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-syntax-flow
  • babel-helpers, babel-preset-typescript, babel-runtime-corejs3
  • babel-generator, babel-parser
🐛 Bug Fix
💅 Polish
  • babel-plugin-proposal-json-modules, babel-plugin-transform-json-modules, babel-standalone
🏠 Internal
🏃‍♀️ Performance
  • babel-helper-module-transforms, babel-plugin-transform-modules-commonjs

v7.25.9

Compare Source

🐛 Bug Fix
🏠 Internal
🏃‍♀️ Performance

v7.25.7

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal
  • babel-core
  • babel-helper-compilation-targets, babel-helper-plugin-utils, babel-preset-env
  • babel-plugin-proposal-destructuring-private, babel-plugin-syntax-decimal, babel-plugin-syntax-import-reflection, babel-standalone
  • babel-generator
🏃‍♀️ Performance
eslint/eslint (eslint)

v8.57.1

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

v5.6.3

Compare Source

v5.6.2

Compare Source


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), 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 added the maintenance label Aug 26, 2024
Copy link
Contributor Author

renovate bot commented Aug 26, 2024

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.16.1 chore(deps): update dependency @types/node to v20.16.2 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/devdeps branch from 459e56b to fc3f554 Compare August 28, 2024 01:26
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.16.2 chore(deps): update dependency @types/node to v20.16.3 Sep 1, 2024
@renovate renovate bot force-pushed the renovate/devdeps branch 2 times, most recently from a7095c8 to 755658c Compare September 4, 2024 02:04
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.16.3 chore(deps): update dependency @types/node to v20.16.4 Sep 4, 2024
@renovate renovate bot force-pushed the renovate/devdeps branch from 755658c to afdf589 Compare September 4, 2024 22:36
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.16.4 chore(deps): update dependency @types/node to v20.16.5 Sep 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.16.5 chore(deps): update devdeps Sep 9, 2024
@renovate renovate bot force-pushed the renovate/devdeps branch 3 times, most recently from 5b850ee to 6de1781 Compare September 16, 2024 16:53
@renovate renovate bot force-pushed the renovate/devdeps branch 5 times, most recently from 8b6a8c1 to 4cee036 Compare September 27, 2024 16:13
@renovate renovate bot force-pushed the renovate/devdeps branch 3 times, most recently from d5ddcfa to b1cbd23 Compare October 8, 2024 23:08
@renovate renovate bot force-pushed the renovate/devdeps branch 6 times, most recently from 4c8b854 to 311dc4b Compare October 23, 2024 15:58
@renovate renovate bot force-pushed the renovate/devdeps branch 2 times, most recently from 0815294 to d633a07 Compare October 25, 2024 16:10
@renovate renovate bot force-pushed the renovate/devdeps branch 5 times, most recently from 0c20cea to a50b28b Compare November 3, 2024 04:09
@renovate renovate bot force-pushed the renovate/devdeps branch 6 times, most recently from 5f775de to 986f332 Compare November 28, 2024 06:27
@renovate renovate bot force-pushed the renovate/devdeps branch from 986f332 to 55a0d79 Compare December 4, 2024 09:23
@renovate renovate bot force-pushed the renovate/devdeps branch from 55a0d79 to 24bfa19 Compare December 11, 2024 11:14
@renovate renovate bot force-pushed the renovate/devdeps branch 2 times, most recently from b3b12a1 to 94b286e Compare January 6, 2025 13:52
@renovate renovate bot force-pushed the renovate/devdeps branch from 94b286e to ebc76fc Compare January 8, 2025 22:25
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.

0 participants