Release 14.2.7 for JH

Steps

  • Run git pull so that we can see the tag v14.2.7-ee.
  • Merge v14.2.7-ee into 14-2-stable-jh
    • git checkout 14-2-stable-jh
    • git merge v14.2.7-ee
      • A conflict might happen in VERSION. Set it to 14.2.7-jh and commit the change.
  • Tag v14.2.7-jh
    • git checkout 14-2-stable-jh
    • git tag -a v14.2.7-jh -m "Version v14.2.7-jh"
  • Review JH changes between v14.2.7-ee..v14.2.7-jh should be the same as v14.2.0-ee..v14.2.0-jh (other than the version change), because there's no changes from JH side.
    • git diff v14.2.0-ee..v14.2.0-jh > jh_diff.0
    • git diff v14.2.7-ee..v14.2.7-jh > jh_diff.7
    • diff jh_diff.0 jh_diff.7:
      2c2
      < index bd64fa04629..7a79be28e53 100644
      ---
      > index bb7a45264d4..f0918e9b30b 100644
      6,8c6
      < -14.2.0-ee
      < \ No newline at end of file
      < +14.2.0-jh
      ---
      > -14.2.7-ee
      9a8
      > +14.2.7-jh
  • Push the branch 14-2-stable-jh and the tag v14.2.7-jh
    • git checkout 14-2-stable-jh
    • git push
    • git push origin v14.2.7-jh