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 all non-major dependencies #254

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 25, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config ^2.19.1 -> ^2.21.0 age adoption passing confidence
@iconify-json/fluent ^1.1.55 -> ^1.1.56 age adoption passing confidence
@types/lodash (source) ^4.17.4 -> ^4.17.5 age adoption passing confidence
@types/node (source) ^20.12.13 -> ^20.14.2 age adoption passing confidence
ajv (source) ^8.14.0 -> ^8.16.0 age adoption passing confidence
axios-retry ^4.3.0 -> ^4.4.0 age adoption passing confidence
bullmq (source) ^5.7.14 -> ^5.7.15 age adoption passing confidence
dompurify ^3.1.4 -> ^3.1.5 age adoption passing confidence
eslint (source) ^9.3.0 -> ^9.4.0 age adoption passing confidence
express-rate-limit ^7.2.0 -> ^7.3.1 age adoption passing confidence
mariadb ^3.3.0 -> ^3.3.1 age adoption passing confidence
nodemon (source) ^3.1.2 -> ^3.1.3 age adoption passing confidence
otpauth ^9.2.4 -> ^9.3.1 age adoption passing confidence
pg (source) ^8.11.5 -> ^8.12.0 age adoption passing confidence
pg-cursor (source) ^2.10.5 -> ^2.11.0 age adoption passing confidence
pnpm (source) 9.1.2 -> 9.2.0 age adoption passing confidence
prettier (source) ^3.2.5 -> ^3.3.1 age adoption passing confidence
sass ^1.77.3 -> ^1.77.4 age adoption passing confidence
terser (source) ^5.31.0 -> ^5.31.1 age adoption passing confidence
tinymce (source) ^7.1.1 -> ^7.1.2 age adoption passing confidence
tsx ^4.11.0 -> ^4.14.0 age adoption passing confidence
type-fest ^4.18.3 -> ^4.20.0 age adoption passing confidence
vanilla-jsoneditor ^0.23.5 -> ^0.23.7 age adoption passing confidence
vite (source) ^5.2.12 -> ^5.2.13 age adoption passing confidence
vitepress (source) ^1.2.2 -> ^1.2.3 age adoption passing confidence
vue-echarts ^6.7.2 -> ^6.7.3 age adoption passing confidence
vue-tsc (source) ^2.0.19 -> ^2.0.21 age adoption passing confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v2.21.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.20.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.19.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
ajv-validator/ajv (ajv)

v8.16.0

Compare Source

What's Changed

Full Changelog: ajv-validator/ajv@v8.15.0...v8.16.0

v8.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: ajv-validator/ajv@v8.14.0...v8.15.0

softonic/axios-retry (axios-retry)

v4.4.0

Compare Source

  • honor client abort signal
taskforcesh/bullmq (bullmq)

v5.7.15

Compare Source

Performance Improvements
cure53/DOMPurify (dompurify)

v3.1.5: DOMPurify 3.1.5

Compare Source

  • Fixed a minor issue with the dist paths in bower.js, thanks @​HakumenNC
  • Fixed a minor issue with sanitizing HTML coming from copy&paste Word content, thanks @​kakao-bishop-cho
eslint/eslint (eslint)

v9.4.0

Compare Source

express-rate-limit/express-rate-limit (express-rate-limit)

v7.3.1

Compare Source

You can view the changelog here.

v7.3.0

Compare Source

You can view the changelog here.

mariadb-corporation/mariadb-connector-nodejs (mariadb)

v3.3.1

Compare Source

Full Changelog

remy/nodemon (nodemon)

v3.1.3

Compare Source

Bug Fixes
hectorm/otpauth (otpauth)

v9.3.1

Compare Source

What's Changed

Full Changelog: hectorm/otpauth@v9.3.0...v9.3.1

v9.3.0

Compare Source

What's Changed

Full Changelog: hectorm/otpauth@v9.2.4...v9.3.0

brianc/node-postgres (pg)

v8.12.0

Compare Source

v8.11.6

Compare Source

pnpm/pnpm (pnpm)

v9.2.0

Compare Source

Minor Changes

  • If package-manager-strict-version is set to true, pnpm will fail if its version doesn't exactly match the version in the "packageManager" field of package.json.

Patch Changes

  • Update @yarnpkg/pnp to the latest version, fixing issue with node: imports #​8161.
  • Deduplicate bin names to prevent race condition and corrupted bin scripts #​7833.
  • pnpm doesn't fail if its version doesn't match the one specified in the "packageManager" field of package.json #​8087.
  • exec now also streams prefixed output when --recursive or --parallel is specified just as run does #​8065.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v9.1.4

Compare Source

v9.1.3

Compare Source

prettier/prettier (prettier)

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

sass/dart-sass (sass)

v1.77.4

Compare Source

Embedded Sass
  • Support passing Version input for fatalDeprecations as string over
    embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted
    as input for silenceDeprecations and futureDeprecations in pure JS.

terser/terser (terser)

v5.31.1

Compare Source

  • Allow drop-unused to drop the whole assignment (not just the assigned name) in more situations, in order to avoid duplication of long strings.
tinymce/tinymce (tinymce)

v7.1.2

Compare Source

Fixed
  • CSS color values set to transparent were incorrectly converted to '#​000000`. #TINY-10916
privatenumber/tsx (tsx)

v4.14.0

Compare Source

v4.13.3

Compare Source

Bug Fixes
  • cjs: resolve directory import relative to parent (#​42) (02d3856)
  • esm: cjs interop to support decorators (807f467)
  • esm: resolve .ts extension in imports map (89621bf)

This release is also available on:

v4.13.2

Compare Source

Bug Fixes
  • esm: ignore transforming .js files with CJS syntax (#​40) (87a7683)

This release is also available on:

v4.13.1

Compare Source

Bug Fixes
  • esm/api: tsImport() to parse CJS exports (0a78bfd)

This release is also available on:

v4.13.0

Compare Source

Features
  • cjs/api: register() to support namespace (#​35) (c703300)
  • esm/api: tsImport() to support loading CommonJS files (0eb4e91)

This release is also available on:

v4.12.1

Compare Source

Bug Fixes
  • esm: resolve implicit ts paths in packages (de900a1)

This release is also available on:

v4.12.0

Compare Source

Bug Fixes
Features
Performance Improvements
  • esm: only try extensions if file path (72d0896)

This release is also available on:

v4.11.2

Compare Source

Bug Fixes

This release is also available on:

v4.11.1

Compare Source

Bug Fixes
  • cjs/api: resolve correct module and types when imported (#​566) (5e70105)

This release is also available on:

sindresorhus/type-fest (type-fest)

v4.20.0

Compare Source

v4.19.0

Compare Source

josdejong/svelte-jsoneditor (vanilla-jsoneditor)

v0.23.7

Compare Source

v0.23.6

Compare Source

vitejs/vite (vite)

v5.2.13

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/vitepress (vitepress)

v1.2.3

Compare Source

Bug Fixes
  • theme,a11y: handle overflow on long mathematical equation and make tables focusable (#​3932) (closes #​3914) (afc611d)
  • types: wrong types generated for markdown-it > mdurl (48ca76c), closes #​3935
ecomfe/vue-echarts (vue-echarts)

v6.7.3

Compare Source

  • Fixed that padding on the component root doesn't work.
vuejs/language-tools (vue-tsc)

v2.0.21

Compare Source

But Fixes
  • fix(typescript-plugin): TS plugin cause type checking broken in .ts files (#​4453)

v2.0.20

Compare Source

Features
  • feat(language-service): add localization support for zh-hk/zh-tw
  • feat(vscode): enable syntax highlighting of cue code blocks in MDX (#​4425) - Thanks @​remcohaszing
But Fixes
  • fix(vscode): fix "as"/"instanceof" expressions syntax highlight (#​4412)
  • fix(language-core): ForIteratorExpression's returns property may be undefined (#​4418) - Thanks @​so1ve
  • fix(language-core): use defineEmits calls instead of type infer (#​4430) - Thanks @​zhiyuanzmj
  • fix(tsc): log catched errors to console (#​4451) - Thanks @​mik3ybark3r
  • fix(typescript-plugin): TS not working in template when tsconfig missing (#​4452)
  • fix(language-core): use type infer instead of await import (#​4436) - Thanks @​zhiyuanzmj
  • feat(language-core): ignore type error for new functional component (#​4445) - Thanks @​zhiyuanzmj
  • fix(language-core): ignore type error for possible component name (#​4446) - Thanks @​zhiyuanzmj
  • fix(language-service): filter internal props in template completion
  • fix(language-service): sort component props in template completion
  • fix(language-core): duplicate completion appears at the beginning of script setup block
Other Changes
  • Upgrade Volar from v2.2.4 to v2.3.0-alpha.14.
    • LSP server performance improved
    • Language server now responds with the exact server capabilities for initialization requests
    • Auto insertion requests can now exit early in the language client
  • The following extensions have been added to Hybrid Mode’s compatibility whitelist:

Configuration

📅 Schedule: Branch creation - "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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 25, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2a8ebf0 to 8984438 Compare March 25, 2024 14:25
@renovate renovate bot changed the title fix(deps): update all non-major dependencies fix(deps): update all non-major dependencies - autoclosed Mar 25, 2024
@renovate renovate bot closed this Mar 25, 2024
@renovate renovate bot deleted the renovate/all-minor-patch branch March 25, 2024 14:54
@renovate renovate bot restored the renovate/all-minor-patch branch March 25, 2024 18:44
@renovate renovate bot changed the title fix(deps): update all non-major dependencies - autoclosed fix(deps): update all non-major dependencies Mar 25, 2024
@renovate renovate bot reopened this Mar 25, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 20 times, most recently from 6cd85ab to 261ece2 Compare March 31, 2024 17:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 28 times, most recently from 3c5e98e to 65dcd6e Compare June 8, 2024 13:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 65dcd6e to bf72e06 Compare June 8, 2024 15:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants