Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [%IPM] >  [General] >  [SemanticVersion]
Private  Storage   

serial class %IPM.General.SemanticVersion extends %SerialObject, %XML.Adaptor

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
2 6 12


Summary

Properties
Build Major Minor Patch Postrelease
Prerelease

Methods
%AddToSaveSet %AddToSyncSet %ClassIsLatestVersion %ClassName
%ConstructClone %Delete %DeleteId %DispatchClassMethod
%DispatchGetModified %DispatchGetProperty %DispatchMethod %DispatchSetModified
%DispatchSetMultidimProperty %DispatchSetProperty %Extends %GetParameter
%GetSwizzleObject %IsA %IsModified %IsNull
%New %NormalizeObject %ObjectIsNull %ObjectModified
%OnBeforeAddToSync %OnDetermineClass %Open %OpenId
%OriginalNamespace %PackageName %RemoveFromSaveSet %ResolveConcurrencyConflict
%SerializeObject %SetModified %SyncObjectIn %SyncTransport
%ValidateObject CompareDotSeparatedStrings Follows FromListBuild
FromString IsBackwardCompatibleWith IsCompatibleWith IsSnapshot
IsValid LogicalToOdbc OdbcToLogical PostreleaseGet
Satisfies ToString XMLDTD XMLExport
XMLExportToStream XMLExportToString XMLNew XMLSchema
XMLSchemaNamespace XMLSchemaType


Parameters

• parameter DEFAULTGLOBAL = "^IPM.General.SemanticVersion";
• parameter NAMESPACE = "http://www.intersystems.com/PackageManager";
NAMESPACE specifies the XML namespace to be used when projecting the class to XML. If NAMESPACE = "", the default namespace is used for the XML schema is used as the namespace for his class.

Properties

• property Build as %IPM.DataType.RegExString(MAXLEN=100,REGEX="([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*");
• property Major as %Integer(MINVAL=0) [ Required ];
• property Minor as %Integer(MINVAL=0) [ Required ];
• property Patch as %Integer(MINVAL=0) [ Required ];
• property Postrelease as %IPM.DataType.RegExString(MAXLEN=100,REGEX="([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*") [ Calculated,Transient ];
This is an alias for Prerelease. It is used for code readability when SemVerPostRelease is enabled.
• property Prerelease as %IPM.DataType.RegExString(MAXLEN=100,REGEX="([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*");

Methods

• method CompareDotSeparatedStrings(pThis As %String, pOther As %String) as %Boolean
Compare two dot-separated strings (usually prerelease or postrelease identifiers).
• method Follows(pVersion As %IPM.General.SemanticVersion) as %Boolean
Returns 1 if this version is a later version than pVersion.
From the SemVer 2.0.0 specification:
1.0.0-alpha < 1.0.0-alpha.1 < 1.0.0-alpha.beta < 1.0.0-beta < 1.0.0-beta.2 < 1.0.0-beta.11 < 1.0.0-rc.1 < 1.0.0 Also, two prerelease versions with mismatched major/minor/patch should *not* follow each other; see: node-semver
• classmethod FromListBuild(pList As %List) as %IPM.General.SemanticVersion
• classmethod FromString(pString As %String) as %IPM.General.SemanticVersion
• method IsBackwardCompatibleWith(pVersion As %IPM.General.SemanticVersion) as %Boolean
Returns 1 if this version's number indicates that it will also support everything in pVersion. That is, it has the same major and a later or equal minor version to pVersion.
• method IsCompatibleWith(pVersion As %IPM.General.SemanticVersion) as %Boolean
Returns 1 if this version's number indicates that it supports in pVersion. That is, it has the same major and minor version as pVersion.
• method IsSnapshot() as %Boolean
• classmethod IsValid(pString As %String, ByRef pVersion As %IPM.General.SemanticVersion) as %Status
• method PostreleaseGet() as %IPM.DataType.RegExString
This is a Get accessor method for the Postrelease property.
• method Satisfies(pExpression As %IPM.General.SemanticVersionExpression) as %Boolean
• method ToString() as %String


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.