docs/decisions/0045-breaking-changes-guidance.md
We must avoid breaking changes in .Net because of the well known diamond dependency issue where breaking changes between different versions of the same package cause bugs and exceptions at run time.
Breaking changes are only allowed under the following circumstances:
All breaking changes must be clearly documented, definitely in the release notes and possibly also via a migration guide Blog post.
In all other cases we must avoid breaking changes. There will be situations where we need to move to accommodate a change to one of our dependencies or introduce a new capability e.g.
In these cases we will plan to obsolete the API(s) and provide a documented migration path to the new preferred pattern. An example of this will be the switch to the new OpenAI .Net SDK. During this transition there will be a period where the new and old API's will be supported to allow customers to migrate.
Chosen option: We must avoid breaking changes in .Net because of the well known diamond dependency issue.