Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 2.45 KB

VERSIONING_POLICY.md

File metadata and controls

23 lines (12 loc) · 2.45 KB

JsonApiDotNetCore versioning policy

Basically, we strive to adhere to semantic versioning.

However, we believe that our userbase is still small enough to allow for some flexibility in minor updates, see below.

Major updates

For breaking changes in major updates, we intend to list the ones that may affect user code or the clients of an API in our release notes. We also include important changes between versions in our published documentation.

Minor updates

We WILL NOT introduce breaking changes in minor updates on our common extensibility points such as controllers, resource services, resource repositories, resource definitions, and Identifiable as well as common annotations such as [Attr], [HasOne], [HasMany], and [HasManyThrough]. The same applies to the URL routes, JSON structure of request/response bodies, and query string syntax.

In previous versions of JsonApiDotNetCore, almost everything was public. While that makes customizations very easy for users, it kinda puts us in a corner: nearly every change would require a new major version. Therefore we try to balance between adding new features to the next minor version or postpone them to the next major version. This means we CAREFULLY CONSIDER if we can prevent breaking changes in minor updates to signatures of "pubternal" types (public types in Internal namespaces), as well as exposed types of which we believe users are unlikely to have taken a direct dependency on. One example would be to inject an additional dependency in the constructor of a not-so-well-known class, such as IncludedResourceObjectBuilder. In the unlikely case that a user has taken a dependency on this class, the compiler error message is clear and the fix is obvious and easy. We may introduce binary breaking changes (such as adding an optional constructor parameter to a custom exception type), which requires users to recompile their existing code.

Our goal is to try to minimize such breaks and require only a recompile of existing API projects. This also means that we'll need to publish an updated release for JsonApiDotNetCore.MongoDb when this happens.

We may also correct error messages in minor updates.

Backports

When users report that they are unable to upgrade as a result of breaking changes in a minor version, we're willing to consider backporting fixes they need to an earlier minor version.