-
Notifications
You must be signed in to change notification settings - Fork 23
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
Update @bufbuild/connect* packages #908
Conversation
Ran `./manage.mjs forceupdateknown` to do so.
transport | ||
.stream<I, O>( | ||
service, | ||
method, | ||
options?.signal, | ||
options?.timeoutMs, | ||
options?.headers, | ||
createAsyncIterable([inputMessage]) | ||
createAsyncIterable([input]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -106,7 +105,7 @@ export function createXHRGrpcWebTransport( | |||
mode: "cors", | |||
}, | |||
header: requestHeader(useBinaryFormat, timeoutMs, header), | |||
message: normalize(message), | |||
message, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was missing in manage.mjs. Added it there and ran the commands `./manage.mjs forceupdateknown buf-nextjs` and `./manage.mjs test buf-nextjs` to update and verify.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TY for c917671 @srikrsna-buf
Ran
./manage.mjs forceupdateknown
to do so.