DEV Community

Discussion on: Best way to manage new versions of my project making sure all client sessions are updated to latest version ?

Collapse
 
toastking profile image
Matt Del Signore

If the issue is backend code you could use semantic versioning. Have new users use /v2/api/... and old users use /v1/api/... for example. Or is it that frontend code changes drastically?