build(deps): bump the npm_and_yarn group across 8 directories with 5 updates - #306
Conversation
…updates Bumps the npm_and_yarn group with 2 updates in the /apps/next-js directory: [js-yaml](https://github.com/nodeca/js-yaml) and [undici](https://github.com/nodejs/undici). Bumps the npm_and_yarn group with 1 update in the /examples/cookbook/mastra directory: [ws](https://github.com/websockets/ws). Bumps the npm_and_yarn group with 1 update in the /examples/javascript directory: [js-yaml](https://github.com/nodeca/js-yaml). Bumps the npm_and_yarn group with 1 update in the /examples/javascript-web directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Bumps the npm_and_yarn group with 1 update in the /moss-live-labs/examples/image-search/react-app directory: [js-yaml](https://github.com/nodeca/js-yaml). Bumps the npm_and_yarn group with 1 update in the /packages/vitepress-plugin-moss directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Bumps the npm_and_yarn group with 1 update in the /sdks/javascript/bindings directory: [js-yaml](https://github.com/nodeca/js-yaml). Bumps the npm_and_yarn group with 2 updates in the /sdks/javascript/sdk directory: [js-yaml](https://github.com/nodeca/js-yaml) and [markdown-it](https://github.com/markdown-it/markdown-it). Updates `js-yaml` from 4.1.1 to 4.2.0 - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md) - [Commits](https://github.com/nodeca/js-yaml/commits) Updates `undici` from 7.25.0 to 7.28.0 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](nodejs/undici@v7.25.0...v7.28.0) Updates `ws` from 8.20.1 to 8.21.0 - [Release notes](https://github.com/websockets/ws/releases) - [Commits](websockets/ws@8.20.1...8.21.0) Updates `js-yaml` from 4.1.1 to 4.2.0 - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md) - [Commits](https://github.com/nodeca/js-yaml/commits) Updates `vite` from 8.0.12 to 8.0.16 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.0.16/packages/vite) Updates `js-yaml` from 4.1.1 to 4.2.0 - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md) - [Commits](https://github.com/nodeca/js-yaml/commits) Updates `vite` from 6.4.2 to 6.4.3 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.0.16/packages/vite) Updates `js-yaml` from 4.1.1 to 4.2.0 - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md) - [Commits](https://github.com/nodeca/js-yaml/commits) Updates `js-yaml` from 4.1.1 to 4.2.0 - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md) - [Commits](https://github.com/nodeca/js-yaml/commits) Updates `markdown-it` from 14.1.0 to 14.2.0 - [Changelog](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md) - [Commits](markdown-it/markdown-it@14.1.0...14.2.0) --- updated-dependencies: - dependency-name: js-yaml dependency-version: 4.2.0 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: undici dependency-version: 7.28.0 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: ws dependency-version: 8.21.0 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: js-yaml dependency-version: 4.2.0 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: vite dependency-version: 8.0.16 dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: js-yaml dependency-version: 4.2.0 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: vite dependency-version: 6.4.3 dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: js-yaml dependency-version: 4.2.0 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: js-yaml dependency-version: 4.2.0 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: markdown-it dependency-version: 14.2.0 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
|
|
| "tsup": "8.4.0", | ||
| "typescript": "5.8.2", | ||
| "vitest": "3.2.6" | ||
| "vitest": "4.1.9" |
There was a problem hiding this comment.
🔴 Missing required vite peer dependency after vitest 3→4 major upgrade
Vitest 4.1.9 changed vite from a bundled dependency to a required (non-optional) peer dependency ("vite": "^6.0.0 || ^7.0.0 || ^8.0.0"). However, packages/vercel-sdk/package.json does not list vite in its devDependencies. The lock file confirms vite is absent from node_modules. Previously with vitest 3.2.6, vite 7.3.5 was automatically installed as a transitive dependency. This will produce peer dependency warnings on npm install and may cause vitest run or the import { defineConfig } from 'vitest/config' in packages/vercel-sdk/vitest.config.ts:1 to fail at runtime.
Prompt for agents
In packages/vercel-sdk/package.json, vitest was upgraded from 3.2.6 to 4.1.9. Vitest 4 requires vite as a required peer dependency (vite: ^6.0.0 || ^7.0.0 || ^8.0.0), whereas vitest 3 bundled vite internally. The package-lock.json confirms vite is NOT installed in node_modules. You need to add vite to devDependencies (e.g. "vite": "^6.4.3" or similar) so vitest can find its required peer. The same issue exists in packages/mastra-moss/package.json. After adding the dependency, regenerate the lock files with npm install.
Was this helpful? React with 👍 or 👎 to provide feedback.
| "tsup": "8.4.0", | ||
| "typescript": "5.8.2", | ||
| "vitest": "3.2.6", | ||
| "vitest": "4.1.9", |
There was a problem hiding this comment.
🔴 Missing required vite peer dependency after vitest 3→4 major upgrade
Same issue as in vercel-sdk: Vitest 4.1.9 requires vite as a non-optional peer dependency, but packages/mastra-moss/package.json does not include vite in devDependencies. The lock file confirms vite is not installed. With vitest 3.2.6, vite was installed automatically as a transitive dependency. Without vite, vitest run (the test script) will fail or produce peer dependency errors.
Prompt for agents
In packages/mastra-moss/package.json, vitest was upgraded from 3.2.6 to 4.1.9. Vitest 4 requires vite as a required peer dependency (vite: ^6.0.0 || ^7.0.0 || ^8.0.0), whereas vitest 3 included vite as an internal dependency. The package-lock.json confirms vite is NOT present in node_modules. You need to add vite to devDependencies (e.g. "vite": "^6.4.3" or a version matching vitest 4's peer requirement) and regenerate the lock file.
Was this helpful? React with 👍 or 👎 to provide feedback.
|
Dependabot can't resolve your JavaScript dependency files. Because of this, Dependabot cannot update this pull request. |
|
Superseded by #328. |
Bumps the npm_and_yarn group with 2 updates in the /apps/next-js directory: js-yaml and undici.
Bumps the npm_and_yarn group with 1 update in the /examples/cookbook/mastra directory: ws.
Bumps the npm_and_yarn group with 1 update in the /examples/javascript directory: js-yaml.
Bumps the npm_and_yarn group with 1 update in the /examples/javascript-web directory: vite.
Bumps the npm_and_yarn group with 1 update in the /moss-live-labs/examples/image-search/react-app directory: js-yaml.
Bumps the npm_and_yarn group with 1 update in the /packages/vitepress-plugin-moss directory: vite.
Bumps the npm_and_yarn group with 1 update in the /sdks/javascript/bindings directory: js-yaml.
Bumps the npm_and_yarn group with 2 updates in the /sdks/javascript/sdk directory: js-yaml and markdown-it.
Updates
js-yamlfrom 4.1.1 to 4.2.0Changelog
Sourced from js-yaml's changelog.
Commits
Updates
undicifrom 7.25.0 to 7.28.0Release notes
Sourced from undici's releases.
... (truncated)
Commits
f9eba0aBumped v7.28.0 (#5430)a027a4aBackport WebSocket maxPayloadSize fixes to v7.x (#5423)8cb10f9websocket: limit the number of fragments in a message04201f8fix: honor requestTls when proxy is SOCKS5fcd642ffix(socks5): preserve dispatch backpressure return value (#5166)bc98c97fix(socks5): use configured connector in Socks5ProxyAgent (#5168)9e1c743fix(socks5): encode embedded IPv4 tails in IPv6 literals correctly (#5099)376c8befix(socks5): enforce authenticated state before CONNECT (#5097)3805b8ffix(socks5-proxy-agent): use per-origin pools to prevent cross-origin routing...85a2405fix(cache): trim qualified field namesUpdates
wsfrom 8.20.1 to 8.21.0Release notes
Sourced from ws's releases.
Commits
bca91ad[dist] 8.21.02b2abd4[security] Limit retained message parts78eabe2[security] Add latest vulnerability to SECURITY.mdUpdates
js-yamlfrom 4.1.1 to 4.2.0Changelog
Sourced from js-yaml's changelog.
Commits
Updates
vitefrom 8.0.12 to 8.0.16Release notes
Sourced from vite's releases.
Changelog
Sourced from vite's changelog.
... (truncated)
Commits
f94df87release: v8.0.16dc245c7fix: reject windows alternate paths (#22572)50b9512fix(deps): reject UNC paths for launch-editor-middleware (#22571)8d1b019release: v8.0.152686d7dfix(deps): update all non-major dependencies (#22511)3052a67chore(deps): update rolldown-related dependencies (#22566)e3cfb9dfix(optimizer): close the rolldown bundle when write() rejects (#22528)6978a9crefactor: correct logic incollectAllModulesfunction (#22562)646dbedfeat: update rolldown to 1.0.3 (#22538)85a0efffix: capitalize error messages and remove spurious space in parse error (#22488)Updates
js-yamlfrom 4.1.1 to 4.2.0Changelog
Sourced from js-yaml's changelog.
Commits
Updates
vitefrom 6.4.2 to 6.4.3Release notes
Sourced from vite's releases.
Changelog
Sourced from vite's changelog.
... (truncated)
Commits
f94df87release: v8.0.16dc245c7fix: reject windows alternate paths (#22572)50b9512fix(deps): reject UNC paths for launch-editor-middleware (#22571)8d1b019release: v8.0.152686d7dfix(deps): update all non-major dependencies (#22511)3052a67chore(deps): update rolldown-related dependencies (#22566)e3cfb9dfix(optimizer): close the rolldown bundle when write() rejects (#22528)6978a9crefactor: correct logic incollectAllModulesfunction (#22562)646dbedfeat: update rolldown to 1.0.3 (#22538)85a0efffix: capitalize error messages and remove spurious space in parse error (#22488)Updates
js-yamlfrom 4.1.1 to 4.2.0Changelog
Sourced from js-yaml's changelog.
Commits
Updates
js-yamlfrom 4.1.1 to 4.2.0Changelog
Sourced from js-yaml's changelog.
Commits
Updates
markdown-itfrom 14.1.0 to 14.2.0Changelog
Sourced from markdown-it's changelog.
Commits
829797a14.2.0 released9ce2087Fix smartquotes perfomance02e73b8linkify-it bump68cfb8cfix: don't end HTML comment blocks on a blank line (#1155)1083137Readme cleanup97c7ca2Update funding infoc471b55Changelog update7769621isPunctChar => isPunctCharCodeaa2aa70fix: always reset parentType in lheading rule (#1131)59955f2Polish PRs #1072, #1074Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.