Versioning
All content in EventCatalog can be versioned.
This allows you to keep historic versions of content which can give context to users why things are changing.
Versioning in EventCatalog is a great way to track changes over time. At any point users using EventCatalog can look back in time and understand what changes have been made to domains, services and messages. This gives extra context that is usually missed.
Example would when new developers come on board, maybe they are interested in a particular domain, maybe they want to understand the history of this domain, where it started and how it came to be what it is today. Versioning allows you to capture this context.
How to version a domain​
- Create a
/versioned
directory inside the/domains
folder if one is not created already. - Create a new folder with the version number inside the folder.
- Example:
/domains/Orders/versioned/0.0.1
- Example:
- Copy contents into the new folder, it at least needs your index.md file.
- Example:
/domains/Orders/versioned/0.0.1/index.md
- Note: the version inside this index.md file would be
0.0.1
- Example:
- Bump the version of the
index.md
file in the route of the domain.- Example
/domains/Orders/index.md
, change theversion
to0.0.2
- Example
How to navigate to versions​
EventCatalog will automatically create links for you within your latest version of your document. Users will also be able to navigate to any version by adding the version in the url (e.g /docs/domains/Orders/1.0.2 would load the 1.0.2 version of this domain).