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

[deps]: Update npm minor #125

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

[deps]: Update npm minor #125

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 24, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@passwordlessdev/passwordless-client 1.1.2 -> 1.2.2 age adoption passing confidence
@vuepress/plugin-register-components (source) 2.0.0-rc.0 -> 2.0.0-rc.66 age adoption passing confidence
eslint (source) 8.56.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-vue (source) 9.20.1 -> 9.32.0 age adoption passing confidence
prettier (source) 3.2.4 -> 3.4.2 age adoption passing confidence
prettier-plugin-organize-imports 4.0.0 -> 4.1.0 age adoption passing confidence
swagger-ui-dist 5.12.3 -> 5.18.2 age adoption passing confidence
vuepress (source) 2.0.0-rc.0 -> 2.0.0-rc.19 age adoption passing confidence
vuepress-plugin-code-switcher 2.0.0 -> 2.0.1 age adoption passing confidence
vuepress-plugin-md-enhance (source) 2.0.0-rc.12 -> 2.0.0-rc.64 age adoption passing confidence

Release Notes

bitwarden/passwordless-client-js (@​passwordlessdev/passwordless-client)

v1.2.2

Compare Source

What's Changed

New Contributors

Full Changelog: bitwarden/passwordless-client-js@1.2.1...1.2.2

v1.2.1

Compare Source

What's Changed

New Contributors

Full Changelog: bitwarden/passwordless-client-js@1.2.0-beta1...1.2.1

vuejs/vuepress (@​vuepress/plugin-register-components)

v2.0.0-rc.66

Compare Source

v2.0.0-rc.54

Compare Source

v2.0.0-rc.52

Compare Source

v2.0.0-rc.44

Compare Source

v2.0.0-rc.42

Compare Source

v2.0.0-rc.37

Compare Source

v2.0.0-rc.34

Compare Source

v2.0.0-rc.33

Compare Source

v2.0.0-rc.31

Compare Source

v2.0.0-rc.30

Compare Source

v2.0.0-rc.21

Compare Source

v2.0.0-rc.15

Compare Source

v2.0.0-rc.14

Compare Source

v2.0.0-rc.12

Compare Source

v2.0.0-rc.11

Compare Source

v2.0.0-rc.10

Compare Source

v2.0.0-rc.7

Compare Source

v2.0.0-rc.3

Compare Source

eslint/eslint (eslint)

v8.57.1

Compare Source

v8.57.0

Compare Source

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#​18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#​18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#​18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#​18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#​18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#​18056) (Milos Djermanovic)

Documentation

Chores

vuejs/eslint-plugin-vue (eslint-plugin-vue)

v9.32.0

Compare Source

v9.31.0

Compare Source

✨ Enhancements

🐛 Bug Fixes

⚙️ Updates

Full Changelog: vuejs/eslint-plugin-vue@v9.30.0...v9.31.0

v9.30.0

Compare Source

v9.29.1

Compare Source

🐛 Bug Fixes

Full Changelog: vuejs/eslint-plugin-vue@v9.29.0...v9.29.1

v9.29.0

Compare Source

✨ Enhancements

New Rules
Others

⚙️ Updates

  • #​2528, #​2566 Added TypeScript declarations for configs.
  • #​2565 Added support for recognizing Vue components in .tsx files.

v9.28.0

Compare Source

v9.27.0

Compare Source

v9.26.0

Compare Source

v9.25.0

Compare Source

v9.24.1

Compare Source

v9.24.0

Compare Source

v9.23.0

Compare Source

v9.22.0

Compare Source

✨ Enhancements

🐛 Bug Fixes

Full Changelog: vuejs/eslint-plugin-vue@v9.21.1...v9.22.0

v9.21.1

Compare Source

🐛 Bug Fixes

Full Changelog: vuejs/eslint-plugin-vue@v9.21.0...v9.21.1

v9.21.0

Compare Source

✨ Enhancements

⚙️ Updates

Full Changelog: vuejs/eslint-plugin-vue@v9.20.1...v9.21.0

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

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}
simonhaenisch/prettier-plugin-organize-imports (prettier-plugin-organize-imports)

v4.1.0: 4.1.0

Compare Source

Bumped the peer dependency range for vue-tsc to ^2.1.0 because there was a breaking change in its API. If you're using Vue support, upgrade both packages simultaneously, e.g. npm i -D prettier-plugin-organize-imports vue-tsc.

swagger-api/swagger-ui (swagger-ui-dist)

v5.18.2: Swagger UI v5.18.2 Released!

Compare Source

Bug Fixes

v5.18.1: Swagger UI v5.18.1 Released!

Compare Source

Bug Fixes

v5.18.0: Swagger UI v5.18.0 Released!

Compare Source

Features
  • analytics: use Scarf.js to provide anonymized installation analytics (#​10194) (fb55b9c)

Anonymized analytics

SwaggerUI uses Scarf to collect anonymized installation analytics. These analytics help support the maintainers of this library and ONLY run during installation. To opt out, you can set the scarfSettings.enabled field to false in your project's package.json:

// package.json
{
  // ...
  "scarfSettings": {
    "enabled": false
  }
  // ...
}

Alternatively, you can set the environment variable SCARF_ANALYTICS to false as part of the environment that installs your npm packages, e.g., SCARF_ANALYTICS=false npm install.

v5.17.14: Swagger UI v5.17.14 Released!

Compare Source

Bug Fixes

v5.17.13: Swagger UI v5.17.13 Released!

Compare Source

Bug Fixes

v5.17.12: Swagger UI v5.17.12 Released!

Compare Source

Bug Fixes

v5.17.10: Swagger UI v5.17.10 Released!

Compare Source

Bug Fixes

v5.17.9: Swagger UI v5.17.9 Released!

Compare Source

Bug Fixes

v5.17.8: Swagger UI v5.17.8 Released!

Compare Source

Bug Fixes
  • components: fix rendering for empty examples in responses (#​9926) (94f2d82), closes #​9499
  • swagger-client: resolve multiple path parameters with the same name in path templates, closes #​9928

v5.17.7: Swagger UI v5.17.7 Released!

Compare Source

Bug Fixes

v5.17.6: Swagger UI v5.17.6 Released!

Compare Source

Bug Fixes
  • swagger-ui-react: display definition defined as YAML or JSON string (#​9918) (6ae2c1f), closes [#​9915]

Configuration

📅 Schedule: Branch creation - "every 2nd week starting on the 2 week of the year before 4am on Monday" (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 renovate bot requested a review from a team as a code owner June 24, 2024 01:00
Copy link

cloudflare-workers-and-pages bot commented Jun 24, 2024

Deploying passwordless-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: c94e351
Status:🚫  Build failed.

View logs

@renovate renovate bot force-pushed the renovate/npm-minor branch 2 times, most recently from b0ef872 to f626d61 Compare July 2, 2024 10:25
@renovate renovate bot force-pushed the renovate/npm-minor branch 4 times, most recently from ebaf2bf to 23dea4c Compare July 13, 2024 20:11
@renovate renovate bot force-pushed the renovate/npm-minor branch from 23dea4c to 36fc575 Compare July 19, 2024 16:43
@renovate renovate bot force-pushed the renovate/npm-minor branch from 36fc575 to 7b2b1bd Compare August 15, 2024 06:15
@Tyrrrz
Copy link
Contributor

Tyrrrz commented Aug 15, 2024

Build failed but I don't have the permissions on CF to see why

@renovate renovate bot force-pushed the renovate/npm-minor branch from 7b2b1bd to 3f7d036 Compare August 22, 2024 12:06
Copy link
Contributor

@Tyrrrz Tyrrrz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build failing

image

Seems like the issue is that we use rc builds for some of our dependencies and there are conflicts in version resolution. Is there any reason we don't use stable versions instead?

@renovate renovate bot force-pushed the renovate/npm-minor branch from 3f7d036 to 653e9ff Compare September 3, 2024 04:29
@renovate renovate bot force-pushed the renovate/npm-minor branch 5 times, most recently from 1d97221 to dcdb947 Compare September 23, 2024 13:10
@renovate renovate bot force-pushed the renovate/npm-minor branch 3 times, most recently from 1a031fa to 3abbc56 Compare October 1, 2024 15:24
@renovate renovate bot force-pushed the renovate/npm-minor branch 3 times, most recently from 76daa86 to 304c6b9 Compare October 11, 2024 08:19
@renovate renovate bot force-pushed the renovate/npm-minor branch 2 times, most recently from 20829cf to 1795033 Compare October 21, 2024 18:21
@renovate renovate bot force-pushed the renovate/npm-minor branch 2 times, most recently from 5c4dbaf to 06b7083 Compare October 31, 2024 11:59
@renovate renovate bot force-pushed the renovate/npm-minor branch 4 times, most recently from 5e655a6 to bf80344 Compare November 12, 2024 01:52
@renovate renovate bot force-pushed the renovate/npm-minor branch 3 times, most recently from 9e803e5 to a2e29ec Compare November 30, 2024 06:09
@renovate renovate bot force-pushed the renovate/npm-minor branch 4 times, most recently from 4746573 to 753172d Compare December 11, 2024 09:09
@renovate renovate bot force-pushed the renovate/npm-minor branch from 753172d to c94e351 Compare December 13, 2024 18:01
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.

1 participant