June 30, 2017 at 12:06PM
"Microservices should be treated as living, changing things, not static releases or libraries." -- @susanthesquark #readingToday

A microservice is not a library (it is not loaded into memory at compilation-time or during runtime) but an independent software application. Due to the fast-paced nature of microservice development, versioning microservices can easily become an organizational nightmare, with developers on client services pinning specific (outdated, unmaintained) versions of a microservice in their own code. Microservices should be treated as living, changing things, not static releases or libraries. Versioning of API endpoints is another anti-pattern that should be avoided for the same reasons.

from Production-Ready Microservices by Susan J. Fowler