- Building Microservices with Go
- Nic Jackson
- 228字
- 2021-07-15 17:28:15
Semantic versioning
Microservices should implement the Major versioning scheme. Quite often, designers will elect to only implement a Major version number and imply .0 for the minor version as according to the semantic versioning principles http://semver.org a Minor version would generally indicate the addition of functionality that has been implemented in a backwards compatible way. This could be adding additional endpoints to your API. It can be argued that since this would not affect the client's ability to interact with your API you should not worry about Minor versions and only concentrate on major as the client will not need to request a particular version without these additions in order to function.
When versioning APIs I think it is cleaner to drop the minor version and only concentrate on major version. We would take this approach for two reasons:
- The URI becomes more readable, and dots are only used as network location separators. When using an RPC API dots are only used to separate API.VERSION.METHOD and make everything easier to read.
- We should be inferring through our API versioning that change is a big thing and has an impact on the function of the client. Internally we can still use Major.Minor; however, this does not need to be something to the client as they will not have the capability to elect to use minor versions of the API.
- 從零構建知識圖譜:技術、方法與案例
- Drupal 8 Blueprints
- Learning SAP Analytics Cloud
- Learning Network Forensics
- Linux操作系統基礎案例教程
- Mastering Linux Security and Hardening
- LabVIEW虛擬儀器入門與測控應用100例
- JavaScript動態網頁編程
- jQuery for Designers Beginner's Guide Second Edition
- Get Your Hands Dirty on Clean Architecture
- ASP.NET Core and Angular 2
- H5頁面設計與制作(全彩慕課版·第2版)
- 走近SDN/NFV
- Scratch超人漫游記:創意程序設計:STEAM創新教育指南
- 機器人ROS開發實踐