2
0

stable-process.rst 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. QEMU and the stable process
  2. ===========================
  3. QEMU stable releases
  4. --------------------
  5. QEMU stable releases are based upon the last released QEMU version
  6. and marked by an additional version number, e.g. 2.10.1. Occasionally,
  7. a four-number version is released, if a single urgent fix needs to go
  8. on top.
  9. Usually, stable releases are only provided for the last major QEMU
  10. release. For example, when QEMU 2.11.0 is released, 2.11.x or 2.11.x.y
  11. stable releases are produced only until QEMU 2.12.0 is released, at
  12. which point the stable process moves to producing 2.12.x/2.12.x.y releases.
  13. What should go into a stable release?
  14. -------------------------------------
  15. Generally, the following patches are considered stable material:
  16. - Patches that fix severe issues, like fixes for CVEs
  17. - Patches that fix regressions
  18. If you think the patch would be important for users of the current release
  19. (or for a distribution picking fixes), it is usually a good candidate
  20. for stable.
  21. How to get a patch into QEMU stable
  22. -----------------------------------
  23. There are various ways to get a patch into stable:
  24. * Preferred: Make sure that the stable maintainers are on copy when you send
  25. the patch by adding
  26. .. code::
  27. Cc: qemu-stable@nongnu.org
  28. to the patch description. By default, this will send a copy of the patch
  29. to ``qemu-stable@nongnu.org`` if you use git send-email, which is where
  30. patches that are stable candidates are tracked by the maintainers.
  31. * You can also reply to a patch and put ``qemu-stable@nongnu.org`` on copy
  32. directly in your mail client if you think a previously submitted patch
  33. should be considered for a stable release.
  34. * If a maintainer judges the patch appropriate for stable later on (or you
  35. notify them), they will add the same line to the patch, meaning that
  36. the stable maintainers will be on copy on the maintainer's pull request.
  37. * If you judge an already merged patch suitable for stable, send a mail
  38. (preferably as a reply to the most recent patch submission) to
  39. ``qemu-stable@nongnu.org`` along with ``qemu-devel@nongnu.org`` and
  40. appropriate other people (like the patch author or the relevant maintainer)
  41. on copy.
  42. Stable release process
  43. ----------------------
  44. When the stable maintainers prepare a new stable release, they will prepare
  45. a git branch with a release candidate and send the patches out to
  46. ``qemu-devel@nongnu.org`` for review. If any of your patches are included,
  47. please verify that they look fine, especially if the maintainer had to tweak
  48. the patch as part of back-porting things across branches. You may also
  49. nominate other patches that you think are suitable for inclusion. After
  50. review is complete (may involve more release candidates), a new stable release
  51. is made available.