You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Release Process

Right after update release 11.0.<n-1> was branched from mercurial repository jdk11u-dev to jdk11u, the release cycle for release 11.0.<n> starts. As the very first step, the jdk11u-dev repository will be tagged with jdk11.0.<n>+0. One of the first changes should be to bump the version, e.g. something similar to JDK-8219710. At about 6 weeks before its general availability (GA), an update release enters ramp down phase 2 (RDP2) and the current state of jdk11u-dev will be transported to jdk11u. From that point onwards, the update release is stabilized by only accepting very select fixes in jdk11u. Eligible candidates are fixes that Oracle has brought to their correspondent JDK11 update release, fixes for high priority issues or test fixes. Builds from jdk11u will be tagged on a weekly basis, when new changesets have been pushed. The tags will have the format of jdk11.0.<n>+<build>, where <n> is the placeholder for the update release and <build> is the monotonically increasing build number. Each tag that gets set in jdk11u will be integrated back to jdk11u-dev in a timely manner. At about 2 weeks before GA, a complete freeze will be anounced for jdk11u, allowing the maintainers of the security changes (currently Red Hat) to integrate and test the collected fixes in a secure, internal environment. At the release day, these will be merged into jdk11u and the final tags jdk11.0.<n>+<build> and jdk11.0.<n>-ga will be set.

Release engineers checklist

WhenWhat
Very early, e.g. 6 months before GAPublish timeline on Wiki page

Create release specific JBS filters, e.g. for monitoring backports to keep in sync with Oracle

~ 4 months before GA

when update release n-1 was branched to jdk11u

Tag jdk11u-dev with jdk11.0.<n>+0:

hg pull -u

hg tag jdk-11.0.<n>+0


Create patch to bump the version, look at JDK-8219710 for an example.
~ 6 weeks before GA

Merge jdk11u-dev to jdk11u:

  1. On jdk11u-dev repository:hg pull -u
  2. On jdk11u repository:
    1. hg pull -u
      hg pull <jdk11u-dev repository location>
      hg merge
      hg commit -m "Merge"
      hg push ssh://<userid>@hg.openjdk.java.net/jdk-updates/jdk11u
weekly, ~6 weeks before GA until ~2 weeks before GA



  1. On jdk11u repository:
    1. hg pull -u
    2. hg tag jdk-11.0.<n>+<b>
    3. hg push ssh://<userid>@hg.openjdk.java.net/jdk-updates/jdk11u
      In case
  2. On jdk11u repository:
    1. hg pull -u
    2. hg pull <jdk11u-dev repository location>
    3. hg merge
    4. hg commit -m "Merge"
    5. hg push ssh://<userid>@hg.openjdk.java.net/jdk-updates/jdk11u


















  • No labels