-
Notifications
You must be signed in to change notification settings - Fork 162
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 dom.crypto.getRandomValues
#669
Conversation
For df03142 I get the following in CI:
|
I assume that releasing this fix will require a bump to 2.2.0? |
After reading scalacenter/sbt-version-policy#71 I understand forward binary compatibility is really just an approximation used for checking backward source compatibility. So even though we are breaking forward binary compatibility here, we are not breaking source compatibility, so we can release this in 2.1.1. |
You're changing the public API (even if it's just an "added" implicit parameter) so you are potentially breaking source compatibility. In fact, given the nature of scalajs-dom, it is extremely unlikely that there will ever be a patch release. It's virtually 100% API and no implementation, so any change triggers a minor version update. |
Thanks, that's very helpful. |
Will fix #668.