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 npm #8

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

fix(deps): update npm #8

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@eslint/eslintrc 3.0.2 -> 3.2.0 age adoption passing confidence devDependencies minor
@types/node (source) 20.11.28 -> 20.17.17 age adoption passing confidence devDependencies minor
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence devDependencies patch
eslint-config-standard-with-typescript 43.0.1 -> 43.1.0 devDependencies replacement
eslint-plugin-prettier 5.1.3 -> 5.2.3 age adoption passing confidence devDependencies minor
import-meta-resolve 4.0.0 -> 4.1.0 age adoption passing confidence dependencies minor
pnpm (source) 8.15.4 -> 8.15.9 age adoption passing confidence packageManager patch
prettier (source) 3.2.5 -> 3.4.2 age adoption passing confidence devDependencies minor
typescript (source) 5.4.2 -> 5.7.3 age adoption passing confidence devDependencies minor

This is a special PR that replaces eslint-config-standard-with-typescript with the community suggested minimal stable replacement version.


Release Notes

eslint/eslintrc (@​eslint/eslintrc)

v3.2.0

Compare Source

Features
  • merge rule.meta.defaultOptions before validation (#​166) (d02f914)

v3.1.0

Compare Source

Features
Chores
eslint/eslint (eslint)

v8.57.1

Compare Source

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.3

Compare Source

Patch Changes

v5.2.2

Compare Source

Patch Changes

v5.2.1

Compare Source

Patch Changes
wooorm/import-meta-resolve (import-meta-resolve)

v4.1.0

Compare Source

Misc

Full Changelog: wooorm/import-meta-resolve@4.0.0...4.1.0

pnpm/pnpm (pnpm)

v8.15.9: pnpm 8.15.9

Compare Source

Patch Changes

  • Deduplicate bin names to prevent race condition and corrupted bin scripts #​7833.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.8

Compare Source

Patch Changes

  • Upgrade tar to v6.2.1 in the dependences #​7939.
  • If the script-shell option is configured to a .bat/.cmd file on Windows, pnpm will now error with ERR_PNPM_INVALID_SCRIPT_SHELL_WINDOWS. Newer versions of Node.js released in April 2024 do not support executing these files directly without behavior differences. If the script-shell option is necessary for your use-case, please set a .exe file instead.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.7

Compare Source

Patch Changes

  • pnpm config get prints a comma-separated list for an array value instead of nothing.
  • It should be possible to publish a tarball with custom dist-tag #​7845.
  • Print the list of packages that were not built because they are ignored by configuration settings.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.6

Compare Source

Patch Changes

  • The exit code of the child process should be preserved on pnpm run #​7817.
  • When sorting packages in a workspace, take into account workspace dependencies specified as peerDependencies #​7813.
  • Add --ignore-scripts argument to prune command #​7836.

Platinum Sponsors

Gold Sponsors

Silver Sponsors

v8.15.5

Compare Source

Patch Changes

  • Correctly detect the active Node.js version during headless installation #​7801.
  • The npm CLI executed from pnpm should not use Corepack #​7747.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

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

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@&#8203;(foo`tagged template`)
class X {}

// Prettier 3.3.2
@&#8203;foo`tagged template`
class X {}

// Prettier 3.3.3
@&#8203;(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@&#8203;let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.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

v5.5.4: TypeScript 5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


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 changed the title chore(deps): update pnpm to v8.15.5 chore(deps): update npm Mar 18, 2024
@renovate renovate bot force-pushed the renovate/npm branch 3 times, most recently from e5548fb to 398c2af Compare March 20, 2024 21:28
@renovate renovate bot force-pushed the renovate/npm branch 7 times, most recently from da0e4a7 to db0b55f Compare April 5, 2024 22:33
@renovate renovate bot force-pushed the renovate/npm branch 4 times, most recently from 95d0c6b to d89e342 Compare April 13, 2024 19:05
@renovate renovate bot force-pushed the renovate/npm branch 3 times, most recently from 0477b4d to d18bd9a Compare May 3, 2024 08:57
@renovate renovate bot force-pushed the renovate/npm branch 3 times, most recently from 269f765 to c52165b Compare May 8, 2024 14:18
@renovate renovate bot force-pushed the renovate/npm branch 2 times, most recently from e0d2d18 to 6af3021 Compare May 18, 2024 02:07
@renovate renovate bot force-pushed the renovate/npm branch 6 times, most recently from 043c1fa to e63203d Compare June 5, 2024 08:18
@renovate renovate bot force-pushed the renovate/npm branch 5 times, most recently from eb9e168 to 8b08314 Compare October 28, 2024 21:43
@renovate renovate bot force-pushed the renovate/npm branch 4 times, most recently from a071a74 to ddea418 Compare November 3, 2024 06:58
@renovate renovate bot force-pushed the renovate/npm branch 6 times, most recently from a06b8dd to 01f9480 Compare November 28, 2024 07:03
@renovate renovate bot changed the title chore(deps): update npm fix(deps): update npm Dec 10, 2024
@renovate renovate bot force-pushed the renovate/npm branch 2 times, most recently from 232f05f to 84c3e1c Compare January 6, 2025 11:00
@renovate renovate bot force-pushed the renovate/npm branch 3 times, most recently from 0d0eb88 to 7676182 Compare January 15, 2025 10:51
@renovate renovate bot force-pushed the renovate/npm branch 2 times, most recently from 523709b to cbe064b Compare January 19, 2025 09:37
@renovate renovate bot force-pushed the renovate/npm branch 2 times, most recently from ab8a5aa to 2452efe Compare January 23, 2025 09:25
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