posva / vue-router-mock

🧪 Easily mock routing interactions in your Vue apps
MIT License
201 stars 7 forks source link

chore(deps): update all non-major dependencies #270

Closed renovate[bot] closed 3 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pnpm (source) 9.6.0 -> 9.7.0 age adoption passing confidence
vue (source) ^3.4.35 -> ^3.4.37 age adoption passing confidence
vue-router ^4.4.2 -> ^4.4.3 age adoption passing confidence

Release Notes

pnpm/pnpm (pnpm) ### [`v9.7.0`](https://togithub.com/pnpm/pnpm/releases/tag/v9.7.0): pnpm 9.7 [Compare Source](https://togithub.com/pnpm/pnpm/compare/v9.6.0...v9.7.0) #### Minor Changes - Added pnpm version management. If the `manage-package-manager-versions` setting is set to `true`, pnpm will switch to the version specified in the `packageManager` field of `package.json` [#​8363](https://togithub.com/pnpm/pnpm/pull/8363). This is the same field used by Corepack. Example: ```json { "packageManager": "pnpm@9.3.0" } ``` - Added the ability to apply patch to all versions [#​8337](https://togithub.com/pnpm/pnpm/pull/8337). If the key of `pnpm.patchedDependencies` is a package name without a version (e.g. `pkg`), pnpm will attempt to apply the patch to all versions of the package. Failures will be skipped. If there's only one version of `pkg` installed, `pnpm patch pkg` and subsequent `pnpm patch-commit $edit_dir` will create an entry named `pkg` in `pnpm.patchedDependencies`. And pnpm will attempt to apply this patch to other versions of `pkg` in the future. - Change the default edit dir location when running `pnpm patch` from a temporary directory to `node_modules/.pnpm_patches/pkg[@​version]` to allow the code editor to open the edit dir in the same file tree as the main project [#​8379](https://togithub.com/pnpm/pnpm/issues/8379). - Substitute environment variables in config keys [#​6679](https://togithub.com/pnpm/pnpm/issues/6679). #### Patch Changes - `pnpm install` should run `node-gyp rebuild` if the project has a `binding.gyp` file even if the project doesn't have an install script [#​8293](https://togithub.com/pnpm/pnpm/issues/8293). - Print warnings to stderr [#​8342](https://togithub.com/pnpm/pnpm/pull/8342). - Peer dependencies of optional peer dependencies should be automatically installed [#​8323](https://togithub.com/pnpm/pnpm/issues/8323). #### Platinum Sponsors
#### Gold Sponsors
#### Our Silver Sponsors
vuejs/core (vue) ### [`v3.4.37`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#3437-2024-08-08) [Compare Source](https://togithub.com/vuejs/core/compare/v3.4.36...v3.4.37) ##### Bug Fixes - **compiler-core:** use `isProp.arg.loc` instead of `isProp.loc` ([#​11547](https://togithub.com/vuejs/core/issues/11547)) ([236fb7a](https://togithub.com/vuejs/core/commit/236fb7abebe567b73826a3ddc2120f3273377ba0)) - **custom-element:** fix custom-element double render on immediate prop change ([978ff3c](https://togithub.com/vuejs/core/commit/978ff3c1dbff9c93ec284c1804d3c77331ea33f8)), closes [#​9885](https://togithub.com/vuejs/core/issues/9885) [#​11335](https://togithub.com/vuejs/core/issues/11335) - **defineModel:** detect changes respect custom getter and setter ([#​11543](https://togithub.com/vuejs/core/issues/11543)) ([e042888](https://togithub.com/vuejs/core/commit/e0428884b57ac834274045bd33841263aeae259e)), closes [#​11541](https://togithub.com/vuejs/core/issues/11541) [#​11526](https://togithub.com/vuejs/core/issues/11526) [#​11527](https://togithub.com/vuejs/core/issues/11527) - **keep-alive:** avoid cache suspense comment root ([#​11479](https://togithub.com/vuejs/core/issues/11479)) ([a917c05](https://togithub.com/vuejs/core/commit/a917c0539cdc55c0188ca91f70b6ff79fee13ed9)) - **keep-alive:** fix render error in cached is undefined ([#​11496](https://togithub.com/vuejs/core/issues/11496)) ([81351dc](https://togithub.com/vuejs/core/commit/81351dc7fbdabcfa0f545f7d924c31a3c367e496)), closes [#​11427](https://togithub.com/vuejs/core/issues/11427) [#​11431](https://togithub.com/vuejs/core/issues/11431) - Revert "fix(types/ref): allow getter and setter types to be unrelated ([#​11442](https://togithub.com/vuejs/core/issues/11442))" ([b1abac0](https://togithub.com/vuejs/core/commit/b1abac06cdb198bd72f8e614b1f68b92e1c78339)) - Revert "fix(types/ref): correct type inference for nested refs ([#​11536](https://togithub.com/vuejs/core/issues/11536))" ([3a56315](https://togithub.com/vuejs/core/commit/3a56315f94bc0e11cfbb288b65482ea8fc3a39b4)) - **runtime-core:** fix warning for missing event handler ([#​11489](https://togithub.com/vuejs/core/issues/11489)) ([e359ff0](https://togithub.com/vuejs/core/commit/e359ff0046286aee03fe31656c023677be457e07)), closes [#​4803](https://togithub.com/vuejs/core/issues/4803) [#​8268](https://togithub.com/vuejs/core/issues/8268) - **runtime-core:** prioritize using the provides from currentApp in nested createApp ([#​11502](https://togithub.com/vuejs/core/issues/11502)) ([7e75de0](https://togithub.com/vuejs/core/commit/7e75de002f08076a02c9361a58fa1d0af1772964)), closes [#​11488](https://togithub.com/vuejs/core/issues/11488) - **runtime-dom:** apply css vars before mount ([#​11538](https://togithub.com/vuejs/core/issues/11538)) ([fdc2a31](https://togithub.com/vuejs/core/commit/fdc2a31dbd4196d6432be16767a1bfdab1240d49)), closes [#​11533](https://togithub.com/vuejs/core/issues/11533) - **ssr:** ensure content is valid when rendering normal slot ([#​11491](https://togithub.com/vuejs/core/issues/11491)) ([6c90324](https://togithub.com/vuejs/core/commit/6c903248703e2413c6197b9ad4d535f31c8eac39)), closes [#​11326](https://togithub.com/vuejs/core/issues/11326) - **types/ref:** correct type inference for nested refs ([#​11536](https://togithub.com/vuejs/core/issues/11536)) ([536f623](https://togithub.com/vuejs/core/commit/536f62332c455ba82ef2979ba634b831f91928ba)), closes [#​11532](https://togithub.com/vuejs/core/issues/11532) [#​11537](https://togithub.com/vuejs/core/issues/11537) - **types:** allow `DirectiveArguments` third parameter to accept undefined ([#​11540](https://togithub.com/vuejs/core/issues/11540)) ([1058ce8](https://togithub.com/vuejs/core/commit/1058ce8e747ce606e5e86fca5a2acce3c12a0846)) ### [`v3.4.36`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#3436-2024-08-06) [Compare Source](https://togithub.com/vuejs/core/compare/v3.4.35...v3.4.36)
vuejs/router (vue-router) ### [`v4.4.3`](https://togithub.com/vuejs/router/releases/tag/v4.4.3) [Compare Source](https://togithub.com/vuejs/router/compare/v4.4.2...v4.4.3) Please refer to [CHANGELOG.md](https://togithub.com/vuejs/router/blob/main/packages/router/CHANGELOG.md) for details.

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.



This PR was generated by Mend Renovate. View the repository job log.