2
0

stable-process.rst 2.7 KB

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