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 #1360

Merged
merged 1 commit into from
Jun 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 10, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@iconify-json/simple-icons ^1.1.102 -> ^1.1.105 age adoption passing confidence dependencies patch
@nuxt/devtools (source) ^1.3.1 -> ^1.3.3 age adoption passing confidence devDependencies patch
@nuxt/eslint-config (source) 0.3.12 -> 0.3.13 age adoption passing confidence devDependencies patch
@nuxt/module-builder 0.6.0 -> 0.7.1 age adoption passing confidence devDependencies minor
@types/node (source) ^20.12.11 -> ^20.14.2 age adoption passing confidence devDependencies minor
@types/node (source) ^20.12.12 -> ^20.14.2 age adoption passing confidence devDependencies minor
@vueuse/core (source) ^10.9.0 -> ^10.11.0 age adoption passing confidence dependencies minor
@vueuse/nuxt (source) ^10.9.0 -> ^10.11.0 age adoption passing confidence dependencies minor
actions/checkout v4.1.5 -> v4.1.7 age adoption passing confidence action patch
eslint (source) 9.2.0 -> 9.4.0 age adoption passing confidence devDependencies minor
execa ^9.0.1 -> ^9.2.0 age adoption passing confidence devDependencies minor
happy-dom ^14.10.1 -> ^14.12.0 age adoption passing confidence devDependencies minor
jiti 1.21.0 -> 1.21.6 age adoption passing confidence devDependencies patch
playwright-core (source) ^1.44.0 -> ^1.44.1 age adoption passing confidence devDependencies patch
pnpm (source) 9.1.0 -> 9.3.0 age adoption passing confidence packageManager minor
vue (source) 3.4.27 -> 3.4.28 age adoption passing confidence resolutions patch
vue (source) 3.4.27 -> 3.4.28 age adoption passing confidence devDependencies patch
vue-tsc (source) ^2.0.16 -> ^2.0.21 age adoption passing confidence devDependencies patch

Release Notes

nuxt/devtools (@​nuxt/devtools)

v1.3.3

Compare Source

Bug Fixes

v1.3.2

Compare Source

Bug Fixes
nuxt/eslint (@​nuxt/eslint-config)

v0.3.13

Compare Source

   🚀 Features
    View changes on GitHub
nuxt/module-builder (@​nuxt/module-builder)

v0.7.1

Compare Source

compare changes

🩹 Fixes
  • build: Declare ModuleOptions in correct place (#​283)
📖 Documentation
  • Update path for runtime js files (#​282)
❤️ Contributors

v0.7.0

Compare Source

compare changes

🚀 Enhancements
  • Auto generate module options from schema meta (#​33)
🩹 Fixes
  • Use tsconfck to resolve tsconfig compilerOptions (#​274)
  • ⚠️ Use .js extension for files in runtime/ directory (dbd05bb)
  • Resolve full path to runtime externals (#​275)
  • Include dist/runtime in externals list (0946c04)
📖 Documentation
  • Add types condition to export subpath (#​265)
🏡 Chore
✅ Tests
  • Add additional test for validity of types shared from runtime (afc4374)
🤖 CI
  • Adds reproduction workflow (0dc73bb)
⚠️ Breaking Changes
  • ⚠️ Use .js extension for files in runtime/ directory (dbd05bb)
❤️ Contributors
vueuse/vueuse (@​vueuse/core)

v10.11.0

Compare Source

v10.10.1

Compare Source

v10.10.0

Compare Source

vueuse/vueuse (@​vueuse/nuxt)

v10.11.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v10.10.1

Compare Source

v10.10.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
actions/checkout (actions/checkout)

v4.1.7

Compare Source

v4.1.6

Compare Source

eslint/eslint (eslint)

v9.4.0

Compare Source

v9.3.0

Compare Source

sindresorhus/execa (execa)

v9.2.0

Compare Source

This release includes a new set of methods to exchange messages between the current process and a Node.js subprocess, also known as "IPC". This allows passing and returning almost any message type to/from a Node.js subprocess. Also, debugging IPC is now much easier.

Moreover, a new gracefulCancel option has also been added to terminate a subprocess gracefully.

For a deeper dive-in, please check and share the release post!

Thanks @​iiroj for your contribution, @​SimonSiefke and @​adymorz for reporting the bugs fixed in this release, and @​karlhorky for improving the documentation!

Deprecations

  • Passing 'ipc' to the stdio option has been deprecated. It will be removed in the next major release. Instead, the ipc: true option should be used. (#​1056)
- await execa('npm', ['run', 'build'], {stdio: ['pipe', 'pipe', 'pipe', 'ipc']});
+ await execa('npm', ['run', 'build'], {ipc: true});
- import {execaCommand} from 'execa';
+ import {execa} from 'execa';

- await execaCommand('npm run build');
+ await execa`npm run build`;

const taskName = 'build';
- await execaCommand(`npm run ${taskName}`);
+ await execa`npm run ${taskName}`;

const commandArguments = ['run', 'task with space'];
await execa`npm ${commandArguments}`;

If the file and/or multiple arguments are supplied as a single string, parseCommandString(command) can split that string into an array. More info. (#​1054)

- import {execaCommand} from 'execa';
+ import {execa, parseCommandString} from 'execa';

const commandString = 'npm run task';
- await execaCommand(commandString);
+ const commandArray = parseCommandString(commandString); // ['npm', 'run', 'task']
+ await execa`${commandArray}`;

// Or alternatively:
const [file, ...commandArguments] = commandArray;
await execa(file, commandArguments);

Features

Types

Bug fixes

v9.1.0

Compare Source

Features (types)

v9.0.2

Compare Source

Bug fixes (types)

capricorn86/happy-dom (happy-dom)

v14.12.0

Compare Source

v14.11.4

Compare Source

v14.11.3

Compare Source

v14.11.2

Compare Source

v14.11.1

Compare Source

v14.11.0

Compare Source

🎨 Features

v14.10.3

Compare Source

👷‍♂️ Patch fixes
  • Adds check for if Window and MutationObserver has been destroyed when triggering listeners - By @​capricorn86 in task #​1436

v14.10.2

Compare Source

👷‍♂️ Patch fixes
  • HTMLAnchorElement, HTMLButtonElement, HTMLInputElement and HTMLLabelElement checked that click events triggering native behavior was of type PointerEvent, but should check that they are of type MouseEvent - By @​capricorn86 in task #​1397
unjs/jiti (jiti)

v1.21.6

Compare Source

compare changes

🩹 Fixes
  • Use internal cached modules only if loaded (#​247)

v1.21.5

Compare Source

compare changes

🩹 Fixes

From 1.21.4

  • Avoid node: protocol for node 14 compatibility (5d877de)
  • Update deps (5e11181)

v1.21.4

Compare Source

v1.21.3

Compare Source

compare changes

🩹 Fixes
❤️ Contributors

v1.21.2

Compare Source

compare changes

🩹 Fixes
❤️ Contributors

v1.21.1

Compare Source

compare changes

🏡 Chore
🤖 CI
❤️ Contributors
microsoft/playwright (playwright-core)

v1.44.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30779 - [REGRESSION]: When using video: 'on' with VSCode extension the browser got closed
https://github.com/microsoft/playwright/issues/30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't workhttps://github.com/microsoft/playwright/issues/307700 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't worhttps://github.com/microsoft/playwright/issues/3085858 - [REGRESSION]: ipv6 got shown instead of localhost in show-trace/show-report

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124
pnpm/pnpm (pnpm)

v9.3.0

Compare Source

Minor Changes

  • Semi-breaking. Dependency key names in the lockfile are shortened if they are longer than 1000 characters. We don't expect this change to affect many users. Affected users most probably can't run install successfully at the moment. This change is required to fix some edge cases in which installation fails with an out-of-memory error or "Invalid string length (RangeError: Invalid string length)" error. The max allowed length of the dependency key can be controlled with the peers-suffix-max-length setting #​8177.

Patch Changes

  • Set reporter-hide-prefix to true by default for pnpm exec. In order to show prefix, the user now has to explicitly set reporter-hide-prefix=false #​8174.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

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

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.

Copy link

cloudflare-pages bot commented May 10, 2024

Deploying nuxt-image with  Cloudflare Pages  Cloudflare Pages

Latest commit: 8af84fe
Status: ✅  Deploy successful!
Preview URL: https://7b3fba52.nuxt-image.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.nuxt-image.pages.dev

View logs

@codecov-commenter
Copy link

codecov-commenter commented May 10, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 60.20%. Comparing base (16b20b4) to head (8af84fe).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1360      +/-   ##
==========================================
- Coverage   60.22%   60.20%   -0.02%     
==========================================
  Files          78       78              
  Lines        5091     5091              
  Branches      392      394       +2     
==========================================
- Hits         3066     3065       -1     
- Misses       1997     1998       +1     
  Partials       28       28              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot changed the title chore(deps): update devdependency execa to ^9.0.2 chore(deps): update all non-major dependencies May 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 56e1d68 to 8176058 Compare May 16, 2024 21:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 503448b to 6416141 Compare May 23, 2024 15:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 69022a7 to b7563ff Compare May 30, 2024 00:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 79ddaaf to e60e425 Compare June 6, 2024 12:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from b70943d to 974e054 Compare June 12, 2024 20:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a277977 to 61deae9 Compare June 14, 2024 10:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 61deae9 to 8af84fe Compare June 14, 2024 10:41
@danielroe danielroe merged commit c5817f7 into main Jun 14, 2024
2 checks passed
@danielroe danielroe deleted the renovate/all-minor-patch branch June 14, 2024 10:44
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.

None yet

2 participants