-
Notifications
You must be signed in to change notification settings - Fork 41
chore: update sdk #1182
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: update sdk #1182
Conversation
Claude finished @jog1t's task —— View job Pull Request ReviewReviewing this SDK update PR for code quality, potential issues, and best practices. Todo List:
Review SummaryThis PR updates the Changes Analysis1. Dependency Update (
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
e6785c6
to
98a7b6d
Compare
Claude finished @jog1t's task —— View job Pull Request ReviewReviewing this SDK update PR for code quality, potential issues, and best practices. Todo List:
Review SummaryThis PR updates the Changes Analysis1. Dependency Update (
|
98a7b6d
to
7ff83e6
Compare
Claude finished @jog1t's task —— View job Pull Request ReviewReviewing this SDK update PR for code quality, potential issues, and best practices. Todo List:
Review SummaryThis PR updates the Changes Analysis1. Dependency Update (
|
Merge activity
|
### TL;DR Updated the engine-runner dependency and added TypeScript type annotations to fix type errors. ### What changed? - Updated `@rivetkit/engine-runner` dependency from version `472` to `7f23f3a` - Added explicit type annotations in `actor-driver.ts`: - Added type `any` to the `input` variable - Added type `Promise<UpgradeWebSocketArgs>` to the `wsHandlerPromise` variable - Added import for `UpgradeWebSocketArgs` type ### How to test? 1. Run the TypeScript compiler to verify no type errors remain 2. Test WebSocket connections to ensure they still function properly 3. Verify that actor input handling works as expected ### Why make this change? This change addresses TypeScript type errors in the engine actor driver by adding proper type annotations. The update to the engine-runner dependency likely includes fixes or improvements that complement these type changes, ensuring better type safety and code reliability.
TL;DR
Updated the engine-runner dependency and added TypeScript type annotations to fix type errors.
What changed?
@rivetkit/engine-runner
dependency from version472
to7f23f3a
actor-driver.ts
:any
to theinput
variablePromise<UpgradeWebSocketArgs>
to thewsHandlerPromise
variableUpgradeWebSocketArgs
typeHow to test?
Why make this change?
This change addresses TypeScript type errors in the engine actor driver by adding proper type annotations. The update to the engine-runner dependency likely includes fixes or improvements that complement these type changes, ensuring better type safety and code reliability.