-
-
Notifications
You must be signed in to change notification settings - Fork 148
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
Fix #81 (update snakeyaml version to 1.21) #82
Conversation
I think ideally I would avoid dynamic discovery/linkage if possible. But it all comes down to how common there are to have transitive dependencies. Also, unfortunately use of shading of I think that one possible path here is to:
jackson 3 is still quite a ways off (first release perhaps by end of 2018) so to me that seems plausible path. |
Ok, in this case, we likely should:
Is my understanding correct? |
@yborovikov Yes. |
It should be better to use SnakeYAML engine in Jackson 3.0 |
@yborovikov : Yegor, I would like to make a pull request using the latest SnakeYAML release 1.23 and removing the deprecated methods. Which branch should I use for this exercise ? |
@asomov i'd probably put it in |
Created #101 |
This is a (minimalistic) fix for the backwards-incompatible refactoring in snakeyaml
1.20
.Note: if backwards compatibility with pre-
1.20
snakeyaml is strongly desired we could introduce a wrapper with runtime detection of*Event
constructor signatures. @cowtowncoder?