Skip to content

Commit

Permalink
src: add process.release.lts property
Browse files Browse the repository at this point in the history
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #3212
  • Loading branch information
rvagg authored and jasnell committed Oct 12, 2015
1 parent 7472713 commit 42b936e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions doc/api/process.markdown
Expand Up @@ -689,6 +689,11 @@ for the source tarball and headers-only tarball.

* `name`: a string with a value that will always be `"node"` for Node.js. For
legacy io.js releases, this will be `"io.js"`.
* `lts`: a string with a value indicating the _codename_ of the LTS (Long-term
Support) line the current release is part of. This property only exists for
LTS releases and is `undefined` for all other release types, including stable
releases. Current valid values are:
- `"Argon"` for the v4.x LTS line beginning with v4.2.0.
* `sourceUrl`: a complete URL pointing to a _.tar.gz_ file containing the
source of the current release.
* `headersUrl`: a complete URL pointing to a _.tar.gz_ file containing only
Expand Down
5 changes: 5 additions & 0 deletions src/node.cc
Expand Up @@ -2774,6 +2774,11 @@ void SetupProcessObject(Environment* env,
READONLY_PROPERTY(process, "release", release);
READONLY_PROPERTY(release, "name", OneByteString(env->isolate(), "node"));

#if NODE_VERSION_IS_LTS
READONLY_PROPERTY(release, "lts",
OneByteString(env->isolate(), NODE_VERSION_LTS_CODENAME));
#endif

// if this is a release build and no explicit base has been set
// substitute the standard release download URL
#ifndef NODE_RELEASE_URLBASE
Expand Down
3 changes: 3 additions & 0 deletions src/node_version.h
Expand Up @@ -5,6 +5,9 @@
#define NODE_MINOR_VERSION 1
#define NODE_PATCH_VERSION 3

#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Argon"

#define NODE_VERSION_IS_RELEASE 0

#ifndef NODE_STRINGIFY
Expand Down
14 changes: 14 additions & 0 deletions test/parallel/test-process-release.js
@@ -0,0 +1,14 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const versionParts = process.versions.node.split('.');

assert.equal(process.release.name, 'node');

// it's expected that future LTS release lines will have additional
// branches in here
if (versionParts[0] === '4' && versionParts[1] >= 2) {
assert.equal(process.release.lts, 'Argon');
} else {
assert.strictEqual(process.release.lts, undefined);
}

0 comments on commit 42b936e

Please sign in to comment.