Update zuplo dependency version#79
Conversation
Updated zuplo dependency version to 6.61.23.
|
The latest build updates on your Zuplo project. Learn more about Zuplo for GitHub ↗︎
Warning This project is configured with the legacy Zuplo developer portal that was retired on November 15, 2025. To ensure your project continues to function, you must upgrade to the new Developer Portal. Review the migration guide for instructions. |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
This PR adjusts the zuplo npm dependency specification in package.json.
Changes:
- Changed
zuplodependency spec from a caret range (^6.61.23) to an exact pinned version (6.61.23).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "vitest": "^2.1.4", | ||
| "yaml": "^2.6.0", | ||
| "zuplo": "^6.61.23" | ||
| "zuplo": "6.61.23" |
There was a problem hiding this comment.
Changing zuplo from a caret range to an exact version makes package.json disagree with package-lock.json (which still records "zuplo": "^6.61.23"). This will cause npm ci in CI to fail with a lockfile/package.json mismatch. Please update package-lock.json (e.g., regenerate with npm install) or keep the dependency spec consistent with the lockfile.
| "zuplo": "6.61.23" | |
| "zuplo": "^6.61.23" |
| "vitest": "^2.1.4", | ||
| "yaml": "^2.6.0", | ||
| "zuplo": "^6.61.23" | ||
| "zuplo": "6.61.23" |
There was a problem hiding this comment.
PR title/description say the zuplo version was updated to 6.61.23, but the previous spec was already ^6.61.23; the only functional change here is pinning the version (removing the caret). Please adjust the PR metadata to reflect the intent (pin vs upgrade) or change the version if an upgrade is intended.
Updated zuplo dependency version to 6.61.23.