chore: update @inworld/runtime to v1.0.5#19
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the root package dependency on @inworld/runtime to a newer stable version.
Changes:
- Bumped
@inworld/runtimein rootpackage.jsonfrom^0.8.0to^1.0.5.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| }, | ||
| "dependencies": { | ||
| "@inworld/runtime": "^0.8.0", | ||
| "@inworld/runtime": "^1.0.5", |
There was a problem hiding this comment.
package-lock.json in the repo still pins @inworld/runtime to the old 0.8.x release. If anyone runs npm ci (or relies on the lockfile for reproducible installs), this change in package.json will not actually take effect. Please run npm install and commit the updated package-lock.json for the root package.
| }, | ||
| "dependencies": { | ||
| "@inworld/runtime": "^0.8.0", | ||
| "@inworld/runtime": "^1.0.5", |
There was a problem hiding this comment.
This repo’s server code imports @inworld/runtime, but it is installed from server/package.json (currently a pinned 0.8.2-rc3 tarball). Updating the root package.json dependency may have no effect on the runtime version actually used at runtime. If the intent is to upgrade the runtime used by the server, update server/package.json (and its lockfile) to ^1.0.5 (or otherwise explain why the root dependency is the one being bumped).
Summary
Updates
@inworld/runtimeto the latest stable release.^0.8.0^1.0.5Changes
package.json:@inworld/runtime^0.8.0→^1.0.5