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 npm dev #3839

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

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Sep 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sigstore/cli (source) 0.8.0 -> 0.8.1 age adoption passing confidence
@types/jest (source) 29.5.12 -> 29.5.14 age adoption passing confidence
@types/node (source) 20.12.12 -> 20.17.10 age adoption passing confidence
@vercel/ncc 0.38.1 -> 0.38.3 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-prettier 5.1.3 -> 5.2.1 age adoption passing confidence
markdownlint-cli 0.40.0 -> 0.43.0 age adoption passing confidence
prettier (source) 3.2.5 -> 3.4.2 age adoption passing confidence
renovate (source) 37.371.0 -> 37.440.7 age adoption passing confidence
ts-jest (source) 29.1.3 -> 29.2.5 age adoption passing confidence
typescript (source) 5.4.5 -> 5.7.2 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

sigstore/sigstore-js (@​sigstore/cli)

v0.8.1

Compare Source

Patch Changes
vercel/ncc (@​vercel/ncc)

v0.38.3

Compare Source

Bug Fixes

v0.38.2

Compare Source

Bug Fixes

Huge thanks to @​theoludwig 🎉

eslint/eslint (eslint)

v8.57.1

Compare Source

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

v5.2.1

Compare Source

Patch Changes
igorshubovych/markdownlint-cli (markdownlint-cli)

v0.43.0

Compare Source

v0.42.0

Compare Source

  • Update markdownlint dependency to 0.35.0
    • Add MD058/blanks-around-tables
    • Use micromark in MD001/MD003/MD009/MD010/MD013/MD014/MD019/MD021/MD023/MD024/MD025/MD039/MD042/MD043
    • Improve MD018/MD020/MD031/MD034/MD044
    • markdown-it parser no longer invoked by default
    • Improve performance
  • Update all dependencies via Dependabot

v0.41.0: 0.41.0

Compare Source

  • Change TOML parser to smol-toml which supports v1.0.0 of the specification
  • Update all dependencies via Dependabot
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

renovatebot/renovate (renovate)

v37.440.7

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.28.1 (#​30356) (622497c)
Miscellaneous Chores

v37.440.6

Compare Source

Miscellaneous Chores
Build System

v37.440.5

Compare Source

Documentation
Miscellaneous Chores
Build System

v37.440.4

Compare Source

Build System

v37.440.3

Compare Source

Bug Fixes

v37.440.2

Compare Source

Documentation
Build System

v37.440.1

Compare Source

Documentation
Miscellaneous Chores
Build System

v37.440.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.28.0 (#​30311) (8fdfa13)

v37.439.0

Compare Source

Features
Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v10.16.0 (#​30309) (e286902)
Miscellaneous Chores
  • deps: update containerbase/internal-tools action to v3.3.10 (#​30289) (5c28898)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v10.16.0 (#​30308) (e76d96e)

v37.438.5

Compare Source

Bug Fixes
  • bitbucket-server: Clarify error when both BB password and access token are set (#​30296) (3a35375)
  • nuget: always coalesce sourceUrl and homepage if homepage available (#​30227) (7dd6325)
Documentation

v37.438.4

Compare Source

Build System

v37.438.3

Compare Source

Documentation
Miscellaneous Chores
Code Refactoring
Build System

v37.438.2

Compare Source

Bug Fixes

v37.438.1

Compare Source

Bug Fixes
  • helmfile: support case with oci repository in different document (#​30215) (0e330ea)

v37.438.0

Compare Source

Features
Miscellaneous Chores

v37.437.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v10.15.6 (#​30276) (b542841)
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.27.5 (#​30277) (120710f)

v37.437.2

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores

v37.437.1

Compare Source

Build System

v37.437.0

Compare Source

Features

v37.436.0

Compare Source

Features
  • managers/npm: add entries with protocol prefix in temporary .yarnrc.yml file (#​30058) (ca904f7)
Bug Fixes
Code Refactoring

v37.435.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.27.4 (#​30263) (963c882)
Documentation
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v10.15.6 (#​30262) (69495a1)

v37.435.0

Compare Source

Features

v37.434.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.27.3 (#​30258) (5899144)
Miscellaneous Chores
  • deps: update containerbase/internal-tools action to v3.3.8 (#​30257) (ca638ef)
Code Refactoring

v37.434.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.27.2 (#​30254) (07ad2e4)
Miscellaneous Chores

v37.434.1

Compare Source

Bug Fixes

v37.434.0

Compare Source

Features
  • presets: group flyway dependencies (add to 'recommended') (#​30248) (8a5e291)

v37.433.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.27.1 (#​30245) (3d54939)

v37.433.1

Compare Source

Miscellaneous Chores
Build System

v37.433.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.27.0 (#​30237) (c833b85)
Miscellaneous Chores
Tests

v37.432.0

Compare Source

Features
Miscellaneous Chores
Code Refactoring

v37.431.7

Compare Source

Bug Fixes
Miscellaneous Chores

v37.431.6

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.26.1 (#​30188) (79ba047)

v37.431.5

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v10.15.5 (#​30186) (ef1cae7)
Documentation
  • config options: example to limit registryAliases to one manager (#​30038) (911e211)
  • update references to renovate/renovate to v37.431.4 (#​30175) (2ea6632)
Miscellaneous Chores

v37.431.4

Compare Source

Bug Fixes

v37.431.3

Compare Source

Miscellaneous Chores
Build System

v37.431.2

Compare Source

Build System

v37.431.1

Compare Source

Tests
Build System

v37.431.0

Compare Source

Features
  • Support cachePrivatePackages option for datasource index level (#​30120) (4aca729)

v37.430.0

Compare Source

Features
Miscellaneous Chores
Code Refactoring
  • manager/circleci: replace regex system with YAML parsing (#​30142) (8d166a3)

v37.429.1

Compare Source

Bug Fixes
  • helmfile: remove templates before running updating artifacts (#​30139) (8e46980)
Miscellaneous Chores
  • deps: update actions/dependency-review-action action to v4.3.4 (#​30143) (61e0c39)

v37.429.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v2.26.0 (#​30140) (3935cc2)

v37.428.3

Compare Source

Buil

Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), 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-bot renovate-bot force-pushed the renovate/npm-dev branch 3 times, most recently from e85e180 to a86254e Compare September 4, 2024 22:20
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 3 times, most recently from 16cea74 to 43fa319 Compare September 16, 2024 17:14
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 7 times, most recently from dd98e4e to c5bf086 Compare September 27, 2024 19:41
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 4 times, most recently from eab62d0 to 97dce41 Compare October 14, 2024 20:35
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 5 times, most recently from 35bdef9 to 64e7656 Compare October 23, 2024 15:00
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 4 times, most recently from f427d16 to aeefde7 Compare October 31, 2024 07:01
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 2 times, most recently from 7168e38 to a704836 Compare November 3, 2024 06:14
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 6 times, most recently from 6ca5105 to 6b2e873 Compare November 28, 2024 07:53
@ramonpetgrave64 ramonpetgrave64 enabled auto-merge (squash) December 13, 2024 15:21
Signed-off-by: Mend Renovate <[email protected]>
auto-merge was automatically disabled December 17, 2024 20:49

Head branch was pushed to by a user without write access

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.

2 participants