-
Notifications
You must be signed in to change notification settings - Fork 6
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
Retrieve API version #51
Comments
It isn't currently possible, but I can add it to the backlog! I'll update this issue again once it's been added. |
Great, thanks for the answer! |
Adding on to this, curious as to what typically motivates a version change? Just updates to the structure of the data? Or additions to the data itself: new armor, weapons, etc? |
For the most part it's data schema changes or data field deprecation/removals. @LartTyler Can advise in more detail. |
That's all I needed to know, thanks! |
Specifically, patch versions (e.g. 1.18.x) are generally reserved for fixes to things. So if validation is wrong for an object, or if the data it's returning isn't a consistent shape, that'll be part of a patch release. A minor version (e.g. 1.x) generally contains new features or fields / objects. It can also contain deprecations for older features that are being replaced, with old deprecated features being removed in the minor version following the release that deprecated them. |
@LartTyler Since you closed this issue, does it mean it's now possible to retrieve the version of the API? |
Nope, it was a misclick. Thanks for pointing it out! |
Hi!
Is it possible to retrieve current API version by API call? Something like:
GET https://mhw-db.com/version
I'm using your API in Java app and I would like to create some regression tests to check if something changes.
Thanks,
Kacper
The text was updated successfully, but these errors were encountered: