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 all non-major dependencies #35

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@swc/cli 0.5.0 -> 0.5.2 age adoption passing confidence devDependencies patch
@swc/core (source) 1.9.2 -> 1.10.1 age adoption passing confidence devDependencies minor
@types/node (source) 20.17.6 -> 20.17.10 age adoption passing confidence devDependencies patch
@vitest/coverage-v8 (source) 2.1.4 -> 2.1.8 age adoption passing confidence devDependencies patch
debug 4.3.7 -> 4.4.0 age adoption passing confidence dependencies minor
eslint-import-resolver-typescript 3.6.3 -> 3.7.0 age adoption passing confidence devDependencies minor
node (source) 22.11.0 -> 22.12.0 age adoption passing confidence volta minor
npm (source) 10.9.0 -> 10.9.2 age adoption passing confidence packageManager patch
npm (source) 10.9.0 -> 10.9.2 age adoption passing confidence volta patch
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence devDependencies minor
type-fest 4.26.1 -> 4.30.2 age adoption passing confidence devDependencies minor
typescript (source) 5.6.3 -> 5.7.2 age adoption passing confidence dependencies minor
vitest (source) 2.1.4 -> 2.1.8 age adoption passing confidence devDependencies patch

Release Notes

swc-project/swc (@​swc/core)

v1.10.1

Compare Source

Bug Fixes
  • (es/resolver) Fix wrong syntax context of vars with the same names as catch params (#​9786) (5a44c6b)
Features

v1.10.0

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Refactor

v1.9.3

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
Performance
Refactor
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
debug-js/debug (debug)

v4.4.0

Compare Source

Fixes (hopefully) the inefficient regex warnings in .enable().

Minor version as this is invariably going to break certain users who misuse the .enable() API and expected it to work with regexes, which was never supported nor documented. That's on you, sorry - that functionality won't be added back.

Full Changelog: debug-js/debug@4.3.7...4.4.0

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.7.0

Compare Source

Minor Changes
  • #​326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    
    module.exports = {
      settings: {
        'import-x/resolver-next': [
          createTypeScriptImportResolver({
            alwaysTryTypes: true,
          }),
        ],
      },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

nodejs/node (node)

v22.12.0

Compare Source

npm/cli (npm)

v10.9.2

Compare Source

Dependencies

v10.9.1

Compare Source

Bug Fixes
Dependencies
Chores
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

sindresorhus/type-fest (type-fest)

v4.30.2

Compare Source

v4.30.1

Compare Source

v4.30.0

Compare Source

v4.29.1

Compare Source

  • IsAny: Fix circular constraint error on TypeScript 5.4+ (#​993) 32d94dd

v4.29.0

Compare Source

v4.28.1

Compare Source

  • SharedUnionFieldsDeep: Fix support for optional fields (#​988) 4b49b93

v4.28.0

Compare Source

v4.27.1

Compare Source

  • SharedUnionFieldsDeep: Fix propagation for non union root types (#​984) f215f9f
  • ArraySlice: Fix support for union input (#​986) 0efbae3

v4.27.0

Compare Source

microsoft/TypeScript (typescript)

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

Copy link
Contributor Author

renovate bot commented Nov 18, 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 enabled auto-merge (rebase) November 18, 2024 06:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from e2eea14 to f53b0b9 Compare November 26, 2024 07:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from e2c9ff4 to 44d9dfa Compare December 2, 2024 20:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 8131b25 to f71a4de Compare December 9, 2024 06:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4647368 to 17e02a6 Compare December 16, 2024 06:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 17e02a6 to 125de9e Compare December 16, 2024 23:46
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