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

fix(deps): update all non major npm update #298

Merged
merged 1 commit into from
Dec 18, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@openapitools/openapi-generator-cli ^2.14.1 -> ^2.15.3 age adoption passing confidence
@types/node (source) ^20.16.15 -> ^20.17.10 age adoption passing confidence
axios (source) ^1.7.7 -> ^1.7.9 age adoption passing confidence
debug ^4.3.7 -> ^4.4.0 age adoption passing confidence
husky ^9.1.6 -> ^9.1.7 age adoption passing confidence
lint-staged ^15.2.10 -> ^15.2.11 age adoption passing confidence
prettier (source) ^3.3.3 -> ^3.4.2 age adoption passing confidence
tslib (source) ^2.8.0 -> ^2.8.1 age adoption passing confidence
typescript (source) ^5.6.3 -> ^5.7.2 age adoption passing confidence

Release Notes

OpenAPITools/openapi-generator-cli (@​openapitools/openapi-generator-cli)

v2.15.3

Compare Source

Bug Fixes

v2.15.2

Compare Source

Bug Fixes

v2.15.1

Compare Source

Bug Fixes

v2.15.0

Compare Source

Features
  • release: trigger a release (407e90f)
axios/axios (axios)

v1.7.9

Compare Source

Reverts
Contributors to this release

v1.7.8

Compare Source

Bug Fixes
Contributors to this release
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

typicode/husky (husky)

v9.1.7

Compare Source

lint-staged/lint-staged (lint-staged)

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

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/tslib (tslib)

v2.8.1

Compare Source

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 force-pushed the renovate/all-non-major-npm-update branch from ac40305 to ad671f8 Compare October 25, 2024 10:51
@renovate renovate bot changed the title chore(deps): update dependency @types/node to ^20.17.0 chore(deps): update all non major npm update Oct 25, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch 7 times, most recently from 43642a2 to 153bcc3 Compare November 1, 2024 09:24
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch from 153bcc3 to 13702c0 Compare November 3, 2024 09:32
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch 3 times, most recently from 563f63c to 1609e89 Compare November 23, 2024 05:01
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch 4 times, most recently from daa8ace to 50a316d Compare November 28, 2024 07:21
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch 3 times, most recently from 2405868 to 6593a9a Compare December 6, 2024 13:00
@renovate renovate bot changed the title chore(deps): update all non major npm update fix(deps): update all non major npm update Dec 10, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch from 6593a9a to c6e7388 Compare December 10, 2024 14:37
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch from c6e7388 to b6eacca Compare December 11, 2024 11:29
@mtsmfm mtsmfm merged commit 971e189 into main Dec 18, 2024
4 checks passed
@mtsmfm mtsmfm deleted the renovate/all-non-major-npm-update branch December 18, 2024 07:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant