Otázka
📝 **Otázka:** Kedy je vhodné prejsť z /v1 na /v2 API?
📋 Vyberte správnu odpoveď.
💡 **Tip:** Ak si nie ste istí, prečítajte si znova teóriu vyššie.
A Every new feature should ship under a new version path so clients can pin to exactly the feature set they were tested against, even when the changes are purely additive and backward compatible B Only on BREAKING changes — removed fields, renamed required params, changed response shape. Additive changes (new optional field, new endpoint) stay on the same version with feature flags or optional params C Versions should bump on a fixed quarterly schedule so client teams have a predictable cadence for upgrade work and can budget integration time during their own planning cycles around it D Versions bump whenever the team feels the API has drifted enough that a fresh start would be cleaner than continuing to add to the current surface area — it's largely a judgment call by the lead