-
This is a great project that I really enjoy using. Now, I face the problem that I need to adapt my interface, and it will lead to breaking changes. What would be the best way to implement a kind of versioning, similar to the versioning in WebApi projects? SR |
Beta Was this translation helpful? Give feedback.
Answered by
AArnott
Jan 4, 2024
Replies: 1 comment 1 reply
-
I don't know how WebApi projects do their versioning. But at a high level, I'd say you have two strategies to consider:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SR84
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't know how WebApi projects do their versioning. But at a high level, I'd say you have two strategies to consider:
interface
is a breaking change, but across JSON-RPC, it is not a breaking change to add methods to an interface.The most advanced…