Skip to content

Latest commit

 

History

History
107 lines (77 loc) · 6.25 KB

RELEASES.md

File metadata and controls

107 lines (77 loc) · 6.25 KB

Releases

Semantic Versioning

Interchain Security (ICS) follows semantic versioning, but with the following deviations (similar to IBC-Go):

  • A library API breaking change will result in an increase of the MAJOR version number (X.y.z | X > 0).
  • A state-machine breaking change will result in an increase of the MINOR version number (x.Y.z | x > 0).
  • Any other changes (including node API breaking changes) will result in an increase of the PATCH version number (x.y.Z | x > 0).

Breaking Changes

A change is considered to be library API breaking if it modifies the integration of ICS on either consumer or provider chains (i.e., it changes the way ICS is used as a library). Note that bumping the major version of Cosmos SDK or IBC will be considered as a library API breaking change.

A change is considered to be state-machine breaking if it requires a coordinated upgrade and/or state migration for either consumer or provider chains in order to preserve state compatibility. Note that when bumping the dependencies of Cosmos SDK and IBC we will only treat patch releases as non state-machine breaking.

A change is considered to be node API breaking if it modifies the API provided by a node of either consumer or provider chains. This includes events, queries, CLI interfaces.

Release Cycle

ICS follows a traditional release cycle involving release candidates (RCs) releases before finalizing a new version. The stable release guarantees do not go into affect until a final release is performed.

It is never advisable to use a non-final release in production.

Final releases should contain little to no changes in comparison to the latest RC.

A release should not be finalized until the development team and the external community have done sufficient integration tests on the targeted release.

Stable Release Policy

The beginning of a new major release series is marked by the release of a new major version. A major release series is comprised of all minor and patch releases made under the same major version number. The series continues to receive bug fixes (released as minor or patch releases) until it reaches end of life. The date when a major release series reaches end of life is determined by one of the following methods:

  • If there is no known chain using a major release series, then it reached end of life. This is a temporary policy that is possible due to the relatively low number of consumer chains.
  • If the next major release is made within the first 6 months, then the end of life date of the major release series is 1 year after its initial release.
  • If the next major release is made 6 months after the initial release, then the end of life date of the major release series is 6 months after the release date of the next major release.

Only the following major release series have a stable release status. All missing minor release versions have been discontinued.

Release End of Life Date
v3.2.x July 10, 2024
v3.3.x July 10, 2024
v3.3.x-lsm July 10, 2024
v4.0.x January 24, 2025
v4.1.x January 24, 2025

Note: As of Gaia v15.1.0, the Cosmos Hub uses a fork of Cosmos SDK (v0.47.10-ics-lsm) that contains the Liquid Staking Module (LSM). This means the Cosmos Hub requires a fork of ICS. This fork is maintained by the development team and released using the -lsm prefix. As soon as the Cosmos Hub uses mainline Cosmos SDK, the -lsm releases will reach end of life.

Version Matrix

Versions of Golang, IBC, Cosmos SDK and CometBFT used by ICS in the currently active releases:

ICS Golang IBC Cosmos SDK CometBFT Note
v3.2.0 1.20 v7.3.0 v0.47.5 v0.37.2
v3.3.0 1.20 v7.3.0 v0.47.5 v0.37.2
v3.3.3-lsm 1.20 v7.3.1 v0.47.10-ics-lsm v0.37.4 Provider only (Cosmos Hub specific)
v4.0.0 1.21 v7.3.1 v0.47.7 v0.37.4 Provider on >= v4.0.0 backwards compatible with consumers >= v3.2.0
v4.1.1 1.21 v7.4.0 v0.47.10 v0.37.4
v4.1.1-lsm 1.21 v7.4.0 v0.47.12-ics-lsm v0.37.4 Provider only (Cosmos Hub specific)

Note: For a list of major ICS features available in the currently active releases, see FEATURES.md.

Backwards Compatibility

A MAJOR version of ICS will always be backwards compatible with the previous MAJOR version of ICS.

The following table indicates the compatibility of currently active releases:

Consumer Provider v3.2.0 v3.3.0 v3.3.3-lsm v4.0.0 v4.1.1-lsm
v3.2.0 ✅ (1)
v3.3.0 ✅ (1)
v4.0.0 ✅ (1) ✅ (1) ✅ (1)
v4.1.1 ✅ (1) ✅ (1) ✅ (1)

Notes

The following adjustments must be made to the CCV consumer genesis state that is obtained from the provider chain after the spawn time is reached in order for the consumer chain to start without errors.

  • (1) Use interchain-security-cd genesis transform to transform the consumer genesis file obtained from the provider.