summaryrefslogtreecommitdiff
path: root/COLLABORATOR_GUIDE.md
diff options
context:
space:
mode:
authorMyles Borins <mborins@us.ibm.com>2015-10-19 13:26:30 -0700
committerJames M Snell <jasnell@gmail.com>2015-10-28 08:53:27 -0700
commitd394e9e6bb75dc6a15befb89f7cd0b30df51596f (patch)
tree11e6ea38b7f275c646148902a5f1a7fa0f89b6e0 /COLLABORATOR_GUIDE.md
parent81f6b543d94d43fee9dc313e47a22199dd1ed5ba (diff)
downloadandroid-node-v8-d394e9e6bb75dc6a15befb89f7cd0b30df51596f.tar.gz
android-node-v8-d394e9e6bb75dc6a15befb89f7cd0b30df51596f.tar.bz2
android-node-v8-d394e9e6bb75dc6a15befb89f7cd0b30df51596f.zip
doc: add LTS info to COLLABORATOR_GUIDE.md
There is currently no information in the Collaborators guide regarding LTS. This commit adds some basic copy explaining what LTS is, what is considered for LTS, and a simple way collaborators can help. Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Steven R. Loomis <srloomis@us.ibm.com> PR-URL: https://github.com/nodejs/node/pull/3442
Diffstat (limited to 'COLLABORATOR_GUIDE.md')
-rw-r--r--COLLABORATOR_GUIDE.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/COLLABORATOR_GUIDE.md b/COLLABORATOR_GUIDE.md
index c5a13a5c9f..6b718b887b 100644
--- a/COLLABORATOR_GUIDE.md
+++ b/COLLABORATOR_GUIDE.md
@@ -8,6 +8,7 @@
* [Landing Pull Requests](#landing-pull-requests)
- [Technical HOWTO](#technical-howto)
- [I Just Made a Mistake](#i-just-made-a-mistake)
+ - [Long Term Support](#long-term-support)
This document contains information for Collaborators of the Node.js
project regarding maintaining the code, documentation and issues.
@@ -227,3 +228,41 @@ messages. However, you are only allowed to force push to any Node.js
branch within 10 minutes from your original push. If someone else
pushes to the branch or the 10 minute period passes, consider the
commit final.
+
+### Long Term Support
+
+#### What is LTS?
+
+Long Term Support (often referred to as *LTS*) guarantees application developers
+a 30 month support cycle with specific versions of Node.js.
+
+You can find more information [in the full LTS plan](https://github.com/nodejs/lts#lts-plan).
+
+#### How does LTS work?
+
+Once a stable branch enters LTS, no new features may be added to that release. Changes are
+limited to bug fixes, security updates, possible npm updates, documentation updates, and certain
+performance improvements that can be demonstrated to not break existing applications.
+Semver-minor changes are only permitted if required for bug fixes. Semver-major changes are only
+permitted if required for critical security and bug fixes.
+
+Once a stable branch moves into Maintenance mode, only **critical** bugs, **critical** security fixes,
+and documentation updates will be permitted.
+
+#### How can I help?
+
+When you send your pull request, consider including information about
+whether your change is breaking. If you think your patch can be backported,
+please feel free to include that information in the PR thread.
+
+#### Who is doing the backporting?
+
+The current plan is for commits to cherry pick into a staging branch (e.g. v4.x-staging),
+which can be done by anyone. The preference would be for the individual landing the commit
+on master to backport to staging branches if it is appropriate.
+
+#### How is an LTS release cut?
+
+When the LTS working group determines that a new LTS release is required, selected commits
+will be picked from the staging branch to be included in the release. This process of making
+a release will be a collaboration between the LTS working group and the Release team.