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

build(deps): update all non-major dependencies #58

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify-json/lucide 1.1.198 -> 1.2.4 age adoption passing confidence
@iconify-json/radix-icons 1.1.14 -> 1.2.0 age adoption passing confidence
@playwright/test (source) 1.45.0 -> 1.47.2 age adoption passing confidence
@rushstack/eslint-patch (source) 1.10.3 -> 1.10.4 age adoption passing confidence
@types/node (source) 20.14.9 -> 20.16.5 age adoption passing confidence
@vitejs/plugin-vue (source) 5.0.5 -> 5.1.4 age adoption passing confidence
@vueuse/core (source) 10.11.0 -> 10.11.1 age adoption passing confidence
autoprefixer 10.4.19 -> 10.4.20 age adoption passing confidence
axios (source) 1.7.2 -> 1.7.7 age adoption passing confidence
eslint-plugin-prettier 5.1.3 -> 5.2.1 age adoption passing confidence
eslint-plugin-vue (source) 9.26.0 -> 9.28.0 age adoption passing confidence
husky 9.0.11 -> 9.1.6 age adoption passing confidence
jsdom 24.1.0 -> 24.1.3 age adoption passing confidence
lint-staged 15.2.7 -> 15.2.10 age adoption passing confidence
npm-run-all2 6.2.0 -> 6.2.3 age adoption passing confidence
pinia 2.1.7 -> 2.2.2 age adoption passing confidence
postcss (source) 8.4.38 -> 8.4.47 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
radix-vue 1.8.5 -> 1.9.6 age adoption passing confidence
rimraf 5.0.7 -> 5.0.10 age adoption passing confidence
tailwind-merge 2.3.0 -> 2.5.2 age adoption passing confidence
tailwindcss (source) 3.4.4 -> 3.4.12 age adoption passing confidence
typescript (source) 5.5.2 -> 5.6.2 age adoption passing confidence
vite (source) 5.3.2 -> 5.4.7 age adoption passing confidence
vue (source) 3.4.31 -> 3.5.7 age adoption passing confidence
vue-i18n (source) 9.13.1 -> 9.14.0 age adoption passing confidence
vue-router 4.4.0 -> 4.4.5 age adoption passing confidence
vue-tsc (source) 2.0.22 -> 2.1.6 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.47.2

Compare Source

Highlights

https://github.com/microsoft/playwright/pull/32699- [REGRESSION]: fix(codegen): use content_frame property in python/.NEThttps://github.com/microsoft/playwright/issues/327066- [REGRESSION]: page.pause() does not pause test timeout after 1.4https://github.com/microsoft/playwright/pull/3266161 - fix(trace-viewer): time delta between local and remote actions

Browser Versions

  • Chromium 129.0.6668.29
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 128
  • Microsoft Edge 128

v1.47.1

Compare Source

v1.47.0

Compare Source

v1.46.1

Compare Source

v1.46.0

Compare Source

v1.45.3

Compare Source

v1.45.2

Compare Source

v1.45.1

Compare Source

microsoft/rushstack (@​rushstack/eslint-patch)

v1.10.4

Compare Source

Sat, 27 Jul 2024 00:10:27 GMT

Patches
  • Include CHANGELOG.md in published releases again
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.1.4

v5.1.3

v5.1.2

v5.1.1

  • fix(plugin-vue): clear script cache if recall (f5eb5ac), closes #​431

v5.1.0

vueuse/vueuse (@​vueuse/core)

v10.11.1

Compare Source

No significant changes

    View changes on GitHub
postcss/autoprefixer (autoprefixer)

v10.4.20

Compare Source

  • Fixed fit-content prefix for Firefox.
axios/axios (axios)

v1.7.7

Compare Source

Bug Fixes
  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#​6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#​5731) (364993f)
Contributors to this release

v1.7.6

Compare Source

Bug Fixes
Contributors to this release

v1.7.5

Compare Source

Bug Fixes
  • adapter: fix undefined reference to hasBrowserEnv (#​6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#​6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#​6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#​6533) (550d885)
Contributors to this release

v1.7.4

Compare Source

Bug Fixes
Contributors to this release

v1.7.3

Compare Source

Bug Fixes
Contributors to this release
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.1

Compare Source

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

v9.28.0

Compare Source

v9.27.0

Compare Source

typicode/husky (husky)

v9.1.6

Compare Source

v9.1.5

Compare Source

v9.1.4

Compare Source

v9.1.3

Compare Source

  • fix: better handle space in PATH

v9.1.2

Compare Source

v9.1.1

Compare Source

v9.1.0

Compare Source

Super saiyan god dog! It's over 9.0.0!

There's a bug with this release which prevents the deprecation notice to appear and requires to remove #!/usr/bin/env sh and . "$(dirname -- "$0")/_/husky.sh" (which are deprecated by the way). I'll publish a new version to fix that. Sorry about any inconvenience.

What's new

You can now run package commands directly, no need for npx or equivalents.
It makes writing hooks more intuitive and is also slightly faster 🐺⚡️

### .husky/pre-commit
- npx jest
+ jest # ~0.2s faster

A new recipe has been added to the docs. Lint staged files without external dependencies (inspired by Prettier docs). Feel free to modify it.

### .husky/pre-commit
prettier $(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g') --write --ignore-unknown
git update-index --again

For more advanced use cases, see lint-staged.

Fixes

  • bunx husky init command
  • Workaround for some hooks implementation on Windows 🤷

Deprecations

  • Remove #!/usr/bin/env sh and . "$(dirname -- "$0")/_/husky.sh" from your hooks
  • Move your code from ~/.huskyrc to .config/husky/init.sh

Support for these will be removed in v10, notices have been added.

Friendly reminder

If Git hooks don't fit your workflow, you can disable Husky globally. Just add export HUSKY=0 to .config/husky/init.sh.

I've seen some confusion about this on X, so just a heads-up!

Sponsoring

Husky is downloaded over 45M times per month and used by ~1.5M projects. If your company wants to sponsor, you can do so here: GitHub Sponsors.

Have a nice summer ☀️ I'm open to new opportunities/consulting so feel free to drop me a message 😉

jsdom/jsdom (jsdom)

v24.1.3

Compare Source

  • Fixed calls to postMessage() that were done as a bare property (i.e., postMessage() instead of window.postMessage()).

v24.1.2

Compare Source

  • Fixed an issue with the in operator applied to EventTarget methods, e.g. 'addEventListener' in window, which only appeared in Node.js ≥22.5.0. (legendecas)
  • Fixed the events fired by blur(): it no longer fires focus and focusin on the Document, and blur and focusout no longer have their relatedTarget property set. (asamuzaK)

v24.1.1

Compare Source

  • Fixed selection methods to trigger the selectionchange event on the Document object. (piotr-oles)
lint-staged/lint-staged (lint-staged)

v15.2.10

Compare Source

Patch Changes

v15.2.9

Compare Source

Patch Changes
  • #​1463 b69ce2d Thanks @​iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.

v15.2.8

Compare Source

Patch Changes
  • f0480f0 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version switched the --show-toplevel flag with --show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.js child_process. The new flag returns a path relative to the working directory, avoiding the issue.

    The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.

bcomnes/npm-run-all2 (npm-run-all2)

v6.2.3

Compare Source

Commits
  • Merge pull request #​151 from bcomnes/fix-pnpm-agian c43fa2b
  • Avoid passing config fields as flags for pnpm dc2d7da

v6.2.2

Compare Source

Commits
  • Revert "Compatibility: npm, yarn and pnpm run scripts" fc35f0d

v6.2.1

Compare Source

Merged
  • Compatibility: npm, yarn and pnpm run scripts #143
  • Use neostandard + add more static code analysis #142
  • Upgrade: Bump c8 from 9.1.0 to 10.0.0 #141
  • Upgrade: Bump p-queue from 7.4.1 to 8.0.1 #138
vuejs/pinia (pinia)

v2.2.2

Compare Source

Please refer to CHANGELOG.md for details.

v2.2.1

Compare Source

Please refer to CHANGELOG.md for details.

v2.2.0

Compare Source

Please refer to CHANGELOG.md for details.

postcss/postcss (postcss)

v8.4.47

Compare Source

  • Removed debug code.

v8.4.46

Compare Source

  • Fixed Cannot read properties of undefined (reading 'before').

v8.4.45

Compare Source

  • Removed unnecessary fix which could lead to infinite loop.

v8.4.44

Compare Source

  • Another way to fix markClean is not a function error.

v8.4.43

Compare Source

  • Fixed markClean is not a function error.

v8.4.42

Compare Source

  • Fixed CSS syntax error on long minified files (by @​varpstar).

v8.4.41

Compare Source

v8.4.40

Compare Source

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

v8.4.39

Compare Source

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.

radix-vue/radix-vue (radix-vue)

v1.9.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.9.5

Compare Source

   🚀 Features
   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - "on the 1st day of the month" (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 force-pushed the renovate/all-minor-patch branch 13 times, most recently from b5b5b92 to b30b44e Compare August 7, 2024 16:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 308a714 to c8cb810 Compare August 15, 2024 15:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d6912e7 to c07f189 Compare August 17, 2024 06:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 617838f to 9e38aba Compare September 10, 2024 19:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 76bb120 to 3d61526 Compare September 18, 2024 04:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ceeba0c to 4a2b778 Compare September 20, 2024 16:15
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