-
-
Notifications
You must be signed in to change notification settings - Fork 364
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
Added support for Revapi #3974
Added support for Revapi #3974
Conversation
@lihaoyi Please review. |
val oldFiles = revapiOldFiles() | ||
val oldFile = oldFiles.head | ||
val oldSupFiles = oldFiles.tail |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This (and below) can be written more concisely as val oldFile +: oldSupFiles = revapiOldFiles()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not for Agg
since it does not extend Seq
.
Some nits but otherwise looks good! |
Added Revapi support for API analysis and change tracking to identify incompatibilities.
Resolves #3929.