Update examples dependencies & scala-version #630
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I've just started messing around with zio-grpc (great work btw) and encountered some issues with the examples (all three).
1: A compiler error
It's caused by
compiler-bridge
, to fix this I had to update to Scala to2.13.14
.Error encountered in SBT
2:
ServerMain.serverLive
failing silentlyI noticed the Server applications were exiting immediately. To investigate this, I added the following to every main:
Which yielded the stack trace below. To fix this, I bumped
grpc-netty
to1.64.0
.(There might be another issue around the fact the error wasn't originally logged.)
Resulting error from
orDie
Additionally, I bumped the following dependencies (minor bump I imagine should be okay?):
zio-grpc-codegen
from0.6.1
->0.6.2
sbt-protoc
from1.0.6
->1.0.7
scalapb
)compilerplugin
from0.11.10
->0.11.15
Might be related to #592?