Summary:
This article explains how to read BrynQ version numbers based on Semantic Versioning.
BrynQ versioning overview
Salure uses Semantic Versioning (SemVer) for its software. This helps customers understand how big a change is and what they can expect from an update.
Semantic Versioning basics
-
Version numbers have the form X.Y.Z (for example 1.10.2).
-
X – Major version: increases when there are large, non-compatible changes. This may require changes in integrations or processes.
-
Y – Minor version: increases when new features or important improvements are added that stay compatible with earlier versions.
-
Z – Patch version: increases when small, compatible bug fixes are made.
Examples of BrynQ versions
Example: 1.10.2
-
1 = major release with possibly large, non-compatible changes.
-
10 = minor release with new features or improvements.
-
2 = patch release with bug fixes.
-
-
Whenever a change affects people outside the development team, the version number is updated according to SemVer rules.
How versioning supports security and stability
-
Clear version numbers make it easier to link security fixes to specific releases.
-
Patch versions often contain security improvements or small bug fixes that increase stability.
-
Minor and major versions can include new security features or architecture changes, such as improved logging or encryption, developed through the secure development process.
Procedure:
-
When a new BrynQ release is announced, note the X.Y.Z version number.
Check which part of the version has changed:
-
If X has changed, plan extra testing and review of integrations.
-
If Y has changed, review the new features and check if they fit your processes.
-
If Z has changed, check the list of fixes, especially any security updates.
-
-
Update your internal documentation or change log with the new version number and date.
-
Communicate major and minor version changes to relevant stakeholders such as system owners or integration partners.
-
Coordinate upgrade windows with Salure if your organization has strict change management rules.
Additional Information:
-
More information about Semantic Versioning is available on the SemVer website; BrynQ follows the core ideas summarized here.