Networked API maintainers: how do you track your client apps' usage requirements over time? (e.g. 1.4 uses *these*; 1.6 needs *this* etc)
Conversation
Coupling app version to to the API is bad imo. Better to version the API (`api/v1/endpoint`) and the app knows which to hit.
1
Replying to
More worried about helping API maintainers know what's in use by each version. Would you bump API version when *adding* a endpoint?
Replying to
Bump API version only when modifying. A map between app version and API version would be good. You could enforce via tests.

