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 #231

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.25.8 -> 7.26.0 age adoption passing confidence
@babel/preset-env (source) 7.25.8 -> 7.26.0 age adoption passing confidence
@babel/preset-typescript (source) 7.25.7 -> 7.26.0 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
@rightcapital/eslint-config (source) 38.0.0 -> 38.0.1 age adoption passing confidence
@rightcapital/prettier-config (source) 7.1.7 -> 7.1.9 age adoption passing confidence
@types/lodash (source) 4.17.10 -> 4.17.13 age adoption passing confidence
beachball (source) 2.47.1 -> 2.51.0 age adoption passing confidence
husky 9.1.6 -> 9.1.7 age adoption passing confidence
inquirer (source) 12.0.0 -> 12.1.0 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence
vitest (source) 2.1.2 -> 2.1.8 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.26.0

Compare Source

v7.25.9

Compare Source

🐛 Bug Fix
🏠 Internal
🏃‍♀️ Performance
babel/babel (@​babel/preset-env)

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

RightCapitalHQ/frontend-style-guide (@​rightcapital/eslint-config)

v38.0.1

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (b1d750e)
RightCapitalHQ/frontend-style-guide (@​rightcapital/prettier-config)

v7.1.9

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (b1d750e)

v7.1.8

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (fb75aa4)
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
typicode/husky (husky)

v9.1.7

Compare Source

SBoudrias/Inquirer.js (inquirer)

v12.1.0

Compare Source

v12.0.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

vitest-dev/vitest (vitest)

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

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v2.1.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v2.1.3

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

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 dependencies Change in project dependencies. label Oct 14, 2024
@renovate renovate bot assigned rainx Oct 14, 2024
@renovate renovate bot requested a review from rainx October 14, 2024 19:05
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from f168aa8 to c1b90df Compare October 14, 2024 19:05
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from c1b90df to f40285e Compare October 18, 2024 13:40
@renovate renovate bot changed the title chore(deps): update devdependency vitest to v2.1.3 chore(deps): update devdependencies Oct 18, 2024
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from f40285e to f729421 Compare October 18, 2024 13:41
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from f729421 to c89d202 Compare October 19, 2024 07:29
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from c89d202 to a9cb7d8 Compare October 19, 2024 07:30
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from a9cb7d8 to 8185dad Compare October 21, 2024 06:28
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 8185dad to 62109bf Compare October 21, 2024 06:29
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 62109bf to bf9bb45 Compare October 22, 2024 16:25
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from bf9bb45 to cacdf55 Compare October 22, 2024 16:26
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from cacdf55 to d5ac7d6 Compare October 25, 2024 14:01
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from d5ac7d6 to 43664d7 Compare October 25, 2024 14:02
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 43664d7 to 3a89d30 Compare October 25, 2024 22:56
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 3a89d30 to 77060ab Compare October 25, 2024 22:57
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 77060ab to 2a4326e Compare October 28, 2024 16:02
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 2a4326e to b18b3e1 Compare October 28, 2024 16:02
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from b18b3e1 to ce69672 Compare October 30, 2024 01:59
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from ce69672 to c029322 Compare October 30, 2024 02:00
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from c029322 to 0b3b65b Compare November 1, 2024 06:19
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 0b3b65b to 0853548 Compare November 1, 2024 06:20
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 0853548 to e1dc10a Compare November 1, 2024 07:55
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from e1dc10a to 841b72d Compare November 1, 2024 07:56
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 841b72d to 4ff6947 Compare November 1, 2024 09:52
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 4ff6947 to 0005945 Compare November 1, 2024 09:52
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 0005945 to 9396ded Compare November 3, 2024 09:14
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 9396ded to b77027a Compare November 3, 2024 09:15
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from b77027a to d7a2a9f Compare November 4, 2024 04:17
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 5d58357 to 883bfda Compare November 18, 2024 18:44
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 883bfda to 064ce91 Compare November 19, 2024 11:49
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 064ce91 to dfd9cce Compare November 19, 2024 11:50
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from dfd9cce to e6e4e47 Compare November 22, 2024 22:52
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from e6e4e47 to cb83add Compare November 22, 2024 22:53
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from cb83add to 3a7c6c3 Compare November 23, 2024 09:44
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 3a7c6c3 to 35f4e0e Compare November 23, 2024 09:45
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 35f4e0e to f7db642 Compare November 25, 2024 03:14
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from f7db642 to cacc055 Compare November 25, 2024 03:15
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from cacc055 to b0d895c Compare November 25, 2024 11:40
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from b0d895c to 67e6e67 Compare November 25, 2024 11:41
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 67e6e67 to 37c39c3 Compare November 26, 2024 00:43
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 37c39c3 to 19a8c66 Compare November 26, 2024 00:44
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 19a8c66 to bf38616 Compare November 26, 2024 08:13
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from bf38616 to eb0bc93 Compare November 26, 2024 08:14
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from eb0bc93 to d45718c Compare November 26, 2024 13:58
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from d45718c to fa92648 Compare November 26, 2024 13:59
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from fa92648 to a670ad2 Compare November 27, 2024 09:03
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from a670ad2 to 60db405 Compare November 27, 2024 09:04
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 60db405 to db6d0bf Compare November 28, 2024 07:15
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from db6d0bf to c1cec28 Compare November 28, 2024 07:16
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from c1cec28 to f0d4d59 Compare December 2, 2024 03:46
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from f0d4d59 to 92dc5e5 Compare December 2, 2024 03:47
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 92dc5e5 to 9297556 Compare December 2, 2024 12:03
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 9297556 to c76c2ee Compare December 2, 2024 12:04
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from c76c2ee to 2d40204 Compare December 2, 2024 15:59
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 2d40204 to 9908cae Compare December 2, 2024 16:00
@renovate renovate bot force-pushed the renovate/auto-merge-dev-dependencies-updates branch from 9908cae to b707d69 Compare December 4, 2024 10:36
@rainx rainx force-pushed the renovate/auto-merge-dev-dependencies-updates branch from b707d69 to 2f6641b Compare December 4, 2024 10:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Change in project dependencies.
Development

Successfully merging this pull request may close these issues.

1 participant