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.1 age adoption passing confidence
@vuepress/plugin-register-components (source) 2.0.0-rc.0 -> 2.0.0-rc.52 age adoption passing confidence
eslint (source) 8.56.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-vue (source) 9.20.1 -> 9.28.0 age adoption passing confidence
prettier (source) 3.2.4 -> 3.3.3 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.17.14 age adoption passing confidence
vuepress (source) 2.0.0-rc.0 -> 2.0.0-rc.17 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.57 age adoption passing confidence

Release Notes

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

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.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.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.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
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(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:

@​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.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

v5.17.5: Swagger UI v5.17.5 Released!

Compare Source

Bug Fixes
  • config: perform configuration synchronously (5fa60ce)
  • try-it-out: fix parsing null values when building requests (#​9914) (fc7410b)

v5.17.4: Swagger UI v5.17.4 Released!

Compare Source

Bug Fixes
  • security: remove patch-package production dependency (#​9909) (cb9a06f)

v5.17.3: Swagger UI v5.17.3 Released!

Compare Source

Bug Fixes

v5.17.2: Swagger UI v5.17.2 Released!

Compare Source

Bug Fixes
  • config: remove system config source (#​9875) (333e5e3), closes #​5148
  • allow to create SwaggerUI instances without rendering to the DOM container by default

v5.17.1: Swagger UI v5.17.1 Released!

Compare Source

Bug Fixes

v5.17.0: Swagger UI v5.17.0 Released!

Compare Source

Features

v5.16.2: Swagger UI v5.16.2 Released!

Compare Source

Bug Fixes

v5.16.1: Swagger UI v5.16.1 Released!

Compare Source

Bug Fixes

v5.16.0: Swagger UI v5.16.0 Released!

Compare Source

Bug Fixes
Features

v5.15.2: Swagger UI v5.15.2 Released!

Compare Source

Bug Fixes
  • try-it-out: fix objects in arrays being stringified twice when building requests (#​9805) (9e02f47)
  • utils: make URL search params parsing and serialization WHATWG URL compliant (#​9809) (52c4b95), closes #​9804

v5.15.1: Swagger UI v5.15.1 Released!

Compare Source

Bug Fixes

v5.15.0: Swagger UI v5.15.0 Released!

Compare Source

Bug Fixes
Features

v5.14.0: Swagger UI v5.14.0 Released!

Compare Source

Bug Fixes
Features
  • consolidate syntax highlighting code into standalone plugin (#​9783) (7260005)

v5.13.0: Swagger UI v5.13.0 Released!

Compare Source

Bug Fixes
Features
padarom/vuepress-plugin-code-switcher (vuepress-plugin-code-switcher)

v2.0.1

Compare Source

vuepr

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: 3abbc56
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
@Tyrrrz
Copy link
Contributor

Tyrrrz commented Aug 15, 2024

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

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 5 times, most recently from 1d97221 to dcdb947 Compare September 23, 2024 13:10
@renovate renovate bot force-pushed the renovate/npm-minor branch 2 times, most recently from 49347ee to 1a031fa Compare September 30, 2024 19:17
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