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 devdependencies #211

Merged
merged 1 commit into from
Dec 9, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 29, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 19.5.0 -> 19.6.0 age adoption passing confidence
@commitlint/config-conventional (source) 19.5.0 -> 19.6.0 age adoption passing confidence
@types/eslint-plugin-jsx-a11y (source) 6.9.0 -> 6.10.0 age adoption passing confidence
@types/node (source) 22.8.6 -> 22.10.1 age adoption passing confidence
@types/react (source) 18.3.12 -> 18.3.14 age adoption passing confidence
@vercel/ncc 0.38.2 -> 0.38.3 age adoption passing confidence
@vitest/coverage-v8 (source) 2.1.4 -> 2.1.8 age adoption passing confidence
@vitest/ui (source) 2.1.4 -> 2.1.8 age adoption passing confidence
beachball (source) 2.47.1 -> 2.51.0 age adoption passing confidence
concurrently 9.0.1 -> 9.1.0 age adoption passing confidence
execa 9.5.0 -> 9.5.2 age adoption passing confidence
husky 9.1.6 -> 9.1.7 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
vitest (source) 2.1.4 -> 2.1.8 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.6.0

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.6.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

vercel/ncc (@​vercel/ncc)

v0.38.3

Compare Source

Bug Fixes
vitest-dev/vitest (@​vitest/coverage-v8)

v2.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.6

Compare Source

🚀 Features

  • Support VIte 6
    View changes on GitHub

v2.1.5

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
microsoft/beachball (beachball)

v2.51.0

Compare Source

Wed, 27 Nov 2024 08:02:35 GMT

Minor changes
  • Add more properties to RepoOptions instead of just CliOptions ([email protected])
  • bump command shouldn't check if change files are needed (+ clarify internal validation options) ([email protected])
Patches

v2.50.1

Compare Source

Tue, 26 Nov 2024 08:02:32 GMT

Patches
  • getPackageInfos should only get repo and CLI options once. Also clarify in types and logic that changeFilePrompt can't be specified at package level. ([email protected])
  • Update help message ([email protected])

v2.50.0

Compare Source

Mon, 25 Nov 2024 08:04:31 GMT

Minor changes
Patches

v2.49.1

Compare Source

Tue, 19 Nov 2024 08:03:08 GMT

Patches

v2.49.0

Compare Source

Wed, 06 Nov 2024 22:56:34 GMT

Minor changes
  • Add option changelog.uniqueFilenames for adding a hash to the changelog filename based on the package name ([email protected])
  • Add option changelog.maxVersions ([email protected])
Patches

v2.48.0

Compare Source

Tue, 05 Nov 2024 08:03:18 GMT

Minor changes
open-cli-tools/concurrently (concurrently)

v9.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0

sindresorhus/execa (execa)

v9.5.2

Compare Source

Bug fixes

v9.5.1

Compare Source

Bug fixes
typicode/husky (husky)

v9.1.7

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: 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 added the renovate label Oct 29, 2024
@renovate renovate bot requested a review from frantic1048 October 29, 2024 08:16
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 6c4e785 to fe31600 Compare October 29, 2024 08:16
@renovate renovate bot changed the title chore(deps): update devdependency execa to v9.5.1 chore(deps): update devdependencies Oct 29, 2024
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from fe31600 to 0a6afe9 Compare October 29, 2024 19:24
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 0a6afe9 to da2c839 Compare October 29, 2024 19:25
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from da2c839 to 39622ee Compare October 31, 2024 08:35
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 39622ee to f89fa86 Compare October 31, 2024 08:36
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from f89fa86 to 02501e4 Compare October 31, 2024 18:18
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 02501e4 to 605687e Compare October 31, 2024 18:19
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 605687e to 4b4d586 Compare November 1, 2024 03:40
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 4b4d586 to b46ea4a Compare November 1, 2024 03:41
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from b46ea4a to e432c4a Compare November 1, 2024 05:17
@renovate renovate bot changed the title chore(deps): update devdependencies chore(deps): update devdependency execa to v9.5.1 Nov 1, 2024
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from e432c4a to 13ddff3 Compare November 1, 2024 05:18
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 13ddff3 to 8245d8e Compare November 3, 2024 04:30
@renovate renovate bot changed the title chore(deps): update devdependency execa to v9.5.1 chore(deps): update devdependencies Nov 3, 2024
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 8245d8e to 726dc03 Compare November 3, 2024 04:31
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 726dc03 to 57f095b Compare November 4, 2024 13:18
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 57f095b to 7437d58 Compare November 4, 2024 13:19
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 7437d58 to 1db3cbf Compare November 5, 2024 05:04
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 1db3cbf to 1792826 Compare November 5, 2024 05:05
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 1792826 to 930f417 Compare November 5, 2024 11:08
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 930f417 to aed3b23 Compare November 5, 2024 11:10
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from aed3b23 to 17ab41f Compare November 7, 2024 00:15
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 17ab41f to 9b80b4c Compare November 7, 2024 00:16
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 9b80b4c to 9187a3c Compare November 13, 2024 15:37
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 9187a3c to 19fdfa3 Compare November 13, 2024 15:38
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 19fdfa3 to 597aabd Compare November 13, 2024 15:40
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 5ab58f0 to cab5f64 Compare November 26, 2024 11:25
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from cab5f64 to 77cee9a Compare November 26, 2024 13:57
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 77cee9a to a625eaf Compare November 26, 2024 13:58
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from a625eaf to 0e40f40 Compare November 27, 2024 10:28
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 0e40f40 to 5e7018d Compare November 27, 2024 10:29
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 5e7018d to d78fabe Compare November 28, 2024 06:54
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from d78fabe to 0cbe30e Compare November 28, 2024 06:55
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 0cbe30e to ff4e2d7 Compare November 28, 2024 07:12
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from ff4e2d7 to 14e9eb7 Compare November 28, 2024 07:13
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 14e9eb7 to d73e5f8 Compare December 2, 2024 11:01
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from d73e5f8 to 419bb6e Compare December 2, 2024 11:02
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 419bb6e to 8273057 Compare December 2, 2024 17:20
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 8273057 to a6a616d Compare December 2, 2024 17:21
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from a6a616d to 7816b2f Compare December 4, 2024 07:56
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 7816b2f to 51ca697 Compare December 4, 2024 07:57
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 51ca697 to 5bdbd24 Compare December 4, 2024 18:11
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 5bdbd24 to 098ed1f Compare December 4, 2024 18:12
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 098ed1f to 29bd147 Compare December 5, 2024 19:53
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 29bd147 to 57ea77b Compare December 5, 2024 19:54
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 57ea77b to 7af376d Compare December 8, 2024 01:38
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 7af376d to 61f4bda Compare December 8, 2024 01:39
@renovate renovate bot changed the title chore(deps): update devdependencies chore(deps): update devdependencies - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/auto-merge-dev-dependencies-updates branch December 8, 2024 18:37
@renovate renovate bot changed the title chore(deps): update devdependencies - autoclosed chore(deps): update devdependencies Dec 8, 2024
@renovate renovate bot reopened this Dec 8, 2024
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 86334a2 to 61f4bda Compare December 8, 2024 23:45
@frantic1048 frantic1048 merged commit 1d4fa2a into main Dec 9, 2024
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

Successfully merging this pull request may close these issues.

1 participant