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

Merged
merged 1 commit into from
Mar 7, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@sveltejs/vite-plugin-svelte ^2.0.2 -> ^2.0.3 age adoption passing confidence devDependencies patch
@types/node (source) ^18.14.0 -> ^18.14.6 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin ^5.53.0 -> ^5.54.1 age adoption passing confidence devDependencies minor
@typescript-eslint/parser ^5.53.0 -> ^5.54.1 age adoption passing confidence devDependencies minor
core-js ^3.28.0 -> ^3.29.0 age adoption passing confidence dependencies minor
eslint (source) ^8.34.0 -> ^8.35.0 age adoption passing confidence devDependencies minor
phoenix ^1.6.16 -> ^1.7.1 age adoption passing confidence dependencies minor
playwright-chromium (source) ^1.31.1 -> ^1.31.2 age adoption passing confidence devDependencies patch
pnpm (source) 7.27.1 -> 7.29.0 age adoption passing confidence packageManager minor
preact (source) ^10.12.1 -> ^10.13.0 age adoption passing confidence dependencies minor
systemjs ^6.13.0 -> ^6.14.0 age adoption passing confidence dependencies minor
terser (source) ^5.16.4 -> ^5.16.5 age adoption passing confidence devDependencies patch
tj-actions/changed-files v35.5.6 -> v35.6.1 age adoption passing confidence action minor
ufo ^1.1.0 -> ^1.1.1 age adoption passing confidence devDependencies patch
vitepress (source) ^1.0.0-alpha.47 -> ^1.0.0-alpha.49 age adoption passing confidence devDependencies patch
vitest ^0.28.5 -> ^0.29.2 age adoption passing confidence devDependencies minor
vue-tsc ^1.1.7 -> ^1.2.0 age adoption passing confidence devDependencies minor

Release Notes

sveltejs/vite-plugin-svelte

v2.0.3

Compare Source

Patch Changes
  • fix(vitePreprocess): use relative paths in sourcemap sources (#​570)

  • show correct error overlay for compiler errors during hot update (#​592)

  • respect custom resolve.mainFields config when adding svelte (#​582)

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.54.1

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.54.0

Compare Source

Features
  • eslint-plugin: [promise-function-async] check for promises in implicit return types (#​6330) (de1e5ce), closes #​6329
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.54.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.54.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

zloirock/core-js

v3.29.0

Compare Source

  • Added URLSearchParams.prototype.size getter, url/734
  • Allowed cloning resizable ArrayBuffers in the structuredClone polyfill
  • Fixed wrong export in /(stable|actual|full)/instance/unshift entries, #​1207
  • Compat data improvements:
    • Set methods proposal marked as supported from Bun 0.5.7
    • String.prototype.toWellFormed marked as fixed from Bun 0.5.7
    • Added Deno 1.31 compat data mapping
eslint/eslint

v8.35.0

Compare Source

Features

  • 8e34a04 feat: add afterHashbangComment option to lines-around-comment rule (#​16920) (SUZUKI Sosuke)
  • c8c0c71 feat: Move all and recommended configs into package. (#​16844) (Nicholas C. Zakas)
  • 71f6f0d feat: report more cases with ?? in no-constant-binary-expression (#​16826) (Daiki Nishikawa)

Bug Fixes

Documentation

Chores

phoenixframework/phoenix

v1.7.1

Compare Source

Enhancements
  • [phx.new] Embed heroicons in app.css bundle to optimize usage

v1.7.0

Compare Source

Bug Fixes
  • Fix race conditions in the longpoll transport by batching messages
Microsoft/playwright

v1.31.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/20784 - [BUG] ECONNREFUSED on GitHub Actions with Node 18https://github.com/microsoft/playwright/issues/211455 - [REGRESSION]: firefox-1378 times out on await page.reload() when URL contains a #hashttps://github.com/microsoft/playwright/issues/2122626 - [BUG] Playwright seems to get stuck when using shard option and last test is skipphttps://github.com/microsoft/playwright/issues/21227227 - Using the webServer config with a Vite dev servehttps://github.com/microsoft/playwright/issues/21312312 - throw if defineConfig is not used for component testing

Browser Versions

  • Chromium 111.0.5563.19
  • Mozilla Firefox 109.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 110
  • Microsoft Edge 110
pnpm/pnpm

v7.29.0

Compare Source

Minor Changes

  • A new setting is now supported: dedupe-peer-dependents.

    When this setting is set to true, packages with peer dependencies will be deduplicated after peers resolution.

    For instance, let's say we have a workspace with two projects and both of them have webpack in their dependencies. webpack has esbuild in its optional peer dependencies, and one of the projects has esbuild in its dependencies. In this case, pnpm will link two instances of webpack to the node_modules/.pnpm directory: one with esbuild and another one without it:

    node_modules
      .pnpm
        webpack@1.0.0_esbuild@1.0.0
        webpack@1.0.0
    project1
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0/node_modules/webpack
    project2
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack
        esbuild
    

    This makes sense because webpack is used in two projects, and one of the projects doesn't have esbuild, so the two projects cannot share the same instance of webpack. However, this is not what most developers expect, especially since in a hoisted node_modules, there would only be one instance of webpack. Therefore, you may now use the dedupe-peer-dependents setting to deduplicate webpack when it has no conflicting peer dependencies (explanation at the end). In this case, if we set dedupe-peer-dependents to true, both projects will use the same webpack instance, which is the one that has esbuild resolved:

    node_modules
      .pnpm
        webpack@1.0.0_esbuild@1.0.0
    project1
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack
    project2
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack
        esbuild
    

    What are conflicting peer dependencies? By conflicting peer dependencies we mean a scenario like the following one:

    node_modules
      .pnpm
        webpack@1.0.0_react@16.0.0_esbuild@1.0.0
        webpack@1.0.0_react@17.0.0
    project1
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0/node_modules/webpack
        react (v17)
    project2
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack
        esbuild
        react (v16)
    

    In this case, we cannot dedupe webpack as webpack has react in its peer dependencies and react is resolved from two different versions in the context of the two projects.

Patch Changes

  • The configuration added by pnpm setup should check if the pnpm home directory is already in the PATH before adding to the PATH.

    Before this change, this code was added to the shell:

    export PNPM_HOME="$HOME/Library/pnpm"
    export PATH="$PNPM_HOME:$PATH"

    Now this will be added:

    export PNPM_HOME="$HOME/Library/pnpm"
    case ":$PATH:" in
      *":$PNPM_HOME:"*) ;;
      *) export PATH="$PNPM_HOME:$PATH" ;;
    esac
  • Add skipped status in exec report summary when script is missing #​6139.

  • pnpm env -g should fail with a meaningful error message if pnpm cannot find the pnpm home directory, which is the directory into which Node.js is installed.

  • Should not throw an error when local dependency use file protocol #​6115.

  • Fix the incorrect error block when subproject has been patched #​6183

Our Gold Sponsors

Our Silver Sponsors

v7.28.0

Compare Source

Minor Changes

  • Add --report-summary for pnpm exec and pnpm run #​6008.
  • Show path info for pnpm why --json or --long #​6103.
  • Extend the pnpm.peerDependencyRules.allowedVersions package.json option to support the parent>child selector syntax. This syntax allows for extending specific peerDependencies #​6108.

Patch Changes

  • Update the lockfile if a workspace has a new project with no dependencies.
  • Fix a case of installs not being deterministic and causing lockfile changes between repeat installs. When a dependency only declares peerDependenciesMeta and not peerDependencies, dependencies, or optionalDependencies, the dependency's peers were not considered deterministically before.
  • patch-commit should auto apply patches in workspaces #​6048
  • Automatically fix conflicts in v6 lockfile.
  • pnpm config set should write to the global config file by default #​5877.

Our Gold Sponsors

Our Silver Sponsors

preactjs/preact

v10.13.0

Compare Source

Features

Bug Fixes

Types

systemjs/systemjs

v6.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: systemjs/systemjs@6.13.0...6.14.0

terser/terser

v5.16.5

Compare Source

  • Correctly handle AST transform functions that mutate children arrays
  • Don't mutate the options object passed to Terser (#​1342)
  • Do not treat BigInt like a number
tj-actions/changed-files

v35.6.1

Compare Source

Full Changelog

Implemented enhancements:

  • [Feature] Add support for listing deleted submodules #​999

Merged pull requests:

v35.6.0

Compare Source

Full Changelog

Fixed bugs:

  • [BUG] Running on PR doesn't get the correct head sha #​998
  • [BUG] action fails when with a Git tag instead of branch #​995

Merged pull requests:

unjs/ufo

v1.1.1

Compare Source

compare changes

🩹 Fixes
  • hasProtocol: Expand protocol relative url regexp (#​126)
✅ Tests
  • Add more tests for full coverage (#​127)
❤️ Contributors
vuejs/vitepress

v1.0.0-alpha.49

Compare Source

Bug Fixes
  • disable fuzzy link recognition by default (2450710)
  • dyamic routes w/ srcDir + relative imports (b075ee5)
  • hmr on deps change of data loaders (5913ebc)
  • normalize all paths in config (8e8fcd9)
  • theme: "copy code" button not readable on hover state (#​819) (#​1892) (#​1998) (c2de4ca)
  • theme: tip custom container has wrong bg color for <code> block (d9a2e6e)
  • update route configs on file add / delete (bccce98)
Features

v1.0.0-alpha.48

Compare Source

Bug Fixes
Features
vitest-dev/vitest

v0.29.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.0

Compare Source

This release makes some significant changes to how tests are running. If you were using --no-threads before, you might consider enabling --single-thread instead (because your tests are now running in child_process instead of a worker thread) or try our new performance optimization feature (discussed later). If you were relying on API that was not available inside a worker (like process.chdir(), you can now use this option.

One of the potential breaking bug fixes is that environments do not share the same global scope anymore if you run them with --no-isolate, --no-threads or --single-thread - you might need to update your setup files if you were relying on a global variable before.

If you had performance issues on large code bases before, try the new deps.experimentalOptimizer option instead of disabling threads. Feedback is welcome!

One of the breaking changes includes adding a link to snapshots inside snapshot files, meaning you will need to update all your snapshots.

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
johnsoncodehk/volar

v1.2.0

Compare Source

  • feat: compatible with upstream monaco integration (https://github.com/volarjs/volar.js/pull/10)
  • feat: support array extends for tsconfig (#​2344)
  • feat: make cursor inside quotes when insert missing required props edit (#​2414)
  • feat: support mixin child nodes for pug (#​2447)
  • fix: ignore native tags for missing required props hint
  • fix: ignore methods for missing required props hint (#​2443)
  • fix: SFC outline not show child nodes (#​2446)

Full-time Support by


Just click, and start coding.


Our Sponsors ⭐✨




Adding You


Configuration

📅 Schedule: Branch creation - "before 3am 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 6, 2023
@stackblitz
Copy link

stackblitz bot commented Mar 6, 2023

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c140094 to d0080f3 Compare March 7, 2023 01:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d0080f3 to 5f32cfa Compare March 7, 2023 13:42
@patak-dev patak-dev merged commit b41336e into main Mar 7, 2023
@patak-dev patak-dev deleted the renovate/all-minor-patch branch March 7, 2023 14:44
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

1 participant