Are there any plans on releasing @cerbos/grpc with...
# help
j
Are there any plans on releasing @cerbos/grpc with the updated @grpc/grpc-js dependency? I’m not exactly sure bit I think we encounter the following issue with grpc-js@1.10.2 which leads to cerbos calls blocking all requests after some time: https://github.com/grpc/grpc-node/issues/2690
a
Yep, I'm planning to do a release early next week. But we only specify the minimum version of
@grpc/grpc-js
(
^1.10.1
) so you shouldn't need to wait for us to do a release - you can bump to the latest without any changes on our side (e.g.
pnpm update @grpc/grpc-js
). A fresh install of
@cerbos/grpc
would pull in
1.10.6
.
j
Ah good point! After a day of debugging I forgot looking at the dependencies 😵‍💫: it seems that pnpm added the 1.10.2 version as dependency to the lock file about three weeks ago 👀
👍🏼 1