* [Qemu-devel] [PULL 0/1] stable process documentation
@ 2018-02-19 10:08 Cornelia Huck
2018-02-19 10:08 ` [Qemu-devel] [PULL 1/1] docs: document our stable process Cornelia Huck
2018-02-19 11:18 ` [Qemu-devel] [PULL 0/1] stable process documentation Peter Maydell
0 siblings, 2 replies; 3+ messages in thread
From: Cornelia Huck @ 2018-02-19 10:08 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-devel, Michael Roth, Eric Blake, Cornelia Huck
The following changes since commit e5ecc287a7bd24a1364e23e263cb60cfc8d21eb5:
Merge remote-tracking branch 'remotes/dgilbert/tags/pull-hmp-20180216' into staging (2018-02-16 18:39:05 +0000)
are available in the git repository at:
git://github.com/cohuck/qemu tags/stable-doc-20180219
for you to fetch changes up to 7aa54229cfd24935d5d7bcc48534fe01934f3f52:
docs: document our stable process (2018-02-19 10:51:16 +0100)
----------------------------------------------------------------
Add some doc for the stable process.
----------------------------------------------------------------
Cornelia Huck (1):
docs: document our stable process
docs/devel/stable-process.rst | 69 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 69 insertions(+)
create mode 100644 docs/devel/stable-process.rst
--
2.13.6
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Qemu-devel] [PULL 1/1] docs: document our stable process
2018-02-19 10:08 [Qemu-devel] [PULL 0/1] stable process documentation Cornelia Huck
@ 2018-02-19 10:08 ` Cornelia Huck
2018-02-19 11:18 ` [Qemu-devel] [PULL 0/1] stable process documentation Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Cornelia Huck @ 2018-02-19 10:08 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-devel, Michael Roth, Eric Blake, Cornelia Huck
Some pointers on how to get a patch into stable.
[contains some suggestions by mdroth and eblake]
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
docs/devel/stable-process.rst | 69 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 69 insertions(+)
create mode 100644 docs/devel/stable-process.rst
diff --git a/docs/devel/stable-process.rst b/docs/devel/stable-process.rst
new file mode 100644
index 0000000000..98736a9ea4
--- /dev/null
+++ b/docs/devel/stable-process.rst
@@ -0,0 +1,69 @@
+QEMU and the stable process
+===========================
+
+QEMU stable releases
+--------------------
+
+QEMU stable releases are based upon the last released QEMU version
+and marked by an additional version number, e.g. 2.10.1. Occasionally,
+a four-number version is released, if a single urgent fix needs to go
+on top.
+
+Usually, stable releases are only provided for the last major QEMU
+release. For example, when QEMU 2.11.0 is released, 2.11.x or 2.11.x.y
+stable releases are produced only until QEMU 2.12.0 is released, at
+which point the stable process moves to producing 2.12.x/2.12.x.y releases.
+
+What should go into a stable release?
+-------------------------------------
+
+Generally, the following patches are considered stable material:
+- Patches that fix severe issues, like fixes for CVEs
+- Patches that fix regressions
+
+If you think the patch would be important for users of the current release
+(or for a distribution picking fixes), it is usually a good candidate
+for stable.
+
+
+How to get a patch into QEMU stable
+-----------------------------------
+
+There are various ways to get a patch into stable:
+
+* Preferred: Make sure that the stable maintainers are on copy when you send
+ the patch by adding
+
+ .. code::
+
+ Cc: qemu-stable@nongnu.org
+
+ to the patch description. By default, this will send a copy of the patch
+ to ``qemu-stable@nongnu.org`` if you use git send-email, which is where
+ patches that are stable candidates are tracked by the maintainers.
+
+* You can also reply to a patch and put ``qemu-stable@nongnu.org`` on copy
+ directly in your mail client if you think a previously submitted patch
+ should be considered for a stable release.
+
+* If a maintainer judges the patch appropriate for stable later on (or you
+ notify them), they will add the same line to the patch, meaning that
+ the stable maintainers will be on copy on the maintainer's pull request.
+
+* If you judge an already merged patch suitable for stable, send a mail
+ (preferably as a reply to the most recent patch submission) to
+ ``qemu-stable@nongnu.org`` along with ``qemu-devel@nongnu.org`` and
+ appropriate other people (like the patch author or the relevant maintainer)
+ on copy.
+
+Stable release process
+----------------------
+
+When the stable maintainers prepare a new stable release, they will prepare
+a git branch with a release candidate and send the patches out to
+``qemu-devel@nongnu.org`` for review. If any of your patches are included,
+please verify that they look fine, especially if the maintainer had to tweak
+the patch as part of back-porting things across branches. You may also
+nominate other patches that you think are suitable for inclusion. After
+review is complete (may involve more release candidates), a new stable release
+is made available.
--
2.13.6
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] stable process documentation
2018-02-19 10:08 [Qemu-devel] [PULL 0/1] stable process documentation Cornelia Huck
2018-02-19 10:08 ` [Qemu-devel] [PULL 1/1] docs: document our stable process Cornelia Huck
@ 2018-02-19 11:18 ` Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2018-02-19 11:18 UTC (permalink / raw)
To: Cornelia Huck; +Cc: QEMU Developers, Michael Roth, Eric Blake
On 19 February 2018 at 10:08, Cornelia Huck <cohuck@redhat.com> wrote:
> The following changes since commit e5ecc287a7bd24a1364e23e263cb60cfc8d21eb5:
>
> Merge remote-tracking branch 'remotes/dgilbert/tags/pull-hmp-20180216' into staging (2018-02-16 18:39:05 +0000)
>
> are available in the git repository at:
>
> git://github.com/cohuck/qemu tags/stable-doc-20180219
>
> for you to fetch changes up to 7aa54229cfd24935d5d7bcc48534fe01934f3f52:
>
> docs: document our stable process (2018-02-19 10:51:16 +0100)
>
> ----------------------------------------------------------------
> Add some doc for the stable process.
>
> ----------------------------------------------------------------
>
> Cornelia Huck (1):
> docs: document our stable process
>
> docs/devel/stable-process.rst | 69 +++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 69 insertions(+)
> create mode 100644 docs/devel/stable-process.rst
>
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-02-19 11:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-19 10:08 [Qemu-devel] [PULL 0/1] stable process documentation Cornelia Huck
2018-02-19 10:08 ` [Qemu-devel] [PULL 1/1] docs: document our stable process Cornelia Huck
2018-02-19 11:18 ` [Qemu-devel] [PULL 0/1] stable process documentation Peter Maydell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).