Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 2.69 KB

SUPPORT_POLICY.md

File metadata and controls

42 lines (30 loc) · 2.69 KB

Summary

At any given point in time, Mooncake.jl supports the current Long Term Support (LTS) release of Julia, and the latest release version of Julia 1. Consequently, the versions of Julia which are officially supported by Mooncake.jl will change (almost) immediately whenever a new Julia LTS version is declared, or a minor release of Julia is made.

For example, the LTS is 1.10 and the latest release is 1.11 at the time of writing. When 1.12 is released, we will

  1. bump the Julia compat bounds in Mooncake.jl to require either 1.10 or 1.12,
  2. cease to run CI on 1.11,
  3. cease to provide bug fixes for 1.11,
  4. cease to accept 1.11-specific bug fixes, as we will not be running CI for 1.11 and therefore will not be able to test that they have worked.

In short: as far as Mooncake.jl's future releases, 1.11 ceases to exist the moment 1.12 is released.

Note that these changes are not applied retrospectively to existing releases of Mooncake.jl. Suppose that Mooncake.jl is at v0.4.50 when 1.12 is released. Then the above changes would be relevant to Mooncake.jl versions v0.4.51 and higher.

Patch Versions

The above only discussed minor versions of Julia (1.10, 1.11, 1.12, etc). However, it also applies to patch versions of Julia. For example, at the time of writing, Julia version 1.10.6 is actually the LTS, and 1.11.1 the current release of Julia. The moment that 1.10.7 is released, we will cease to run any CI on 1.10.6, and will not accept fixes for it. The same is true of 1.11.2.

Since patch releases of Julia are less invasive than minor releases, this should generally not cause users problems.

Context

In order to support a particular version of Julia, we must

  1. always run CI for that version,
  2. accept and proactively produce fixes for that version,
  3. maintain version-specific code in the Mooncake.jl codebase.

This requires a surprisingly amount of overhead to the development of Mooncake.jl, and has the potential to substantially increase the complexity of the codebase. All of this makes it harder to improve Mooncake.jl. Consequently, this policy represents a decision to tradeoff support for a range of minor Julia versions in exchange for easing the development burden associated to Mooncake.jl.

Why not gently drop support?

In the JuliaGaussianProcesses ecosystem, we had a loosely-defined policy of keeping support for an older version until we ran into a large problem which could not be fixed easily, at which point we would drop support. While this sounds appealing, in practice it makes it hard to know exactly when to drop support for a particular version of Julia, increases the burden for maintainers, and makes it hard for users to know exactly what to expect.