Versioning¶
Hint
This chapter is only relevant to HTTP-based applications.
Versioning allows you to have different versions of your controllers or individual routes running within the same application. Applications change very often and it is not unusual that there are breaking changes that you need to make while still needing to support the previous version of the application.
There are 3 types of versioning that are supported:
URI Versioning |
The version will be passed within the URI of the request (default) |
Header Versioning |
A custom request header will specify the version |
Media Type Versioning |
The Accept header of the request will specify the version |
URI Versioning Type¶
URI Versioning uses the version passed within the URI of the request, such as https://example.com/v1/route
and https://example.com/v2/route
.
Warning
With URI Versioning the version will be automatically added to the URI after the global path prefix (if one exists), and before any controller or route paths.
To enable URI Versioning for your application, do the following:
Warning
The version in the URI will be automatically prefixed with v
by default, however the prefix value can be configured by setting the prefix
key to your desired prefix or false
if you wish to disable it.
Hint
The VersioningType
enum is available to use for the type
property and is imported from the @nestjs/common
package.
Header Versioning Type¶
Header Versioning uses a custom, user specified, request header to specify the version where the value of the header will be the version to use for the request.
Example HTTP Requests for Header Versioning:
To enable Header Versioning for your application, do the following:
The header
property should be the name of the header that will contain the version of the request.
Hint
The VersioningType
enum is available to use for the type
property and is imported from the @nestjs/common
package.
Media Type Versioning Type¶
Media Type Versioning uses the Accept
header of the request to specify the version.
Within the Accept
header, the version will be separated from the media type with a semi-colon, ;
. It should then contain a key-value pair that represents the version to use for the request, such as Accept: application/json;v=2
. They key is treated more as a prefix when determining the version will to be configured to include the key and separator.
To enable Media Type Versioning for your application, do the following:
The key
property should be the key and separator of the key-value pair that contains the version. For the example Accept: application/json;v=2
, the key
property would be set to v=
.
Hint
The VersioningType
enum is available to use for the type
property and is imported from the @nestjs/common
package.
Usage¶
Versioning allows you to version controllers, individual routes, and also provides a way for certain resources to opt-out of versioning. The usage of versioning is the same regardless of the Versioning Type your application uses.
Warning
If versioning is enabled for the application but the controller or route does not specify the version, any requests to that controller/route will be returned a 404
response status. Similarly, if a request is received containing a version that does not have a corresponding controller or route, it will also be returned a 404
response status.
Controller versions¶
A version can be applied to a controller, setting the version for all routes within the controller.
To add a version to a controller do the following:
Route versions¶
A version can be applied to an individual route. This version will override any other version that would effect the route, such as the Controller Version.
To add a version to an individual route do the following:
Multiple versions¶
Multiple versions can be applied to a controller or route. To use multiple versions, you would set the version to be an Array.
To add multiple versions do the following:
Version "Neutral"¶
Some controllers or routes may not care about the version and would have the same functionality regardless of the version. To accommodate this, the version can be set to VERSION_NEUTRAL
symbol.
An incoming request will be mapped to a VERSION_NEUTRAL
controller or route regardless of the version sent in the request in addition to if the request does not contain a version at all.
Warning
For URI Versioning, a VERSION_NEUTRAL
resource would not have the version present in the URI.
To add a version neutral controller or route do the following:
Global default version¶
If you do not want to provide a version for each controller/or individual routes, or if you want to have a specific version set as the default version for every controller/route that don't have the version specified, you could set the defaultVersion
as follows: