Skip to content

Rename 'Stable' release to 'Current' #672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,19 +240,14 @@ function copyStatic () {
})
}

// This is where the build is orchestrated from, as indicated by the function
// name. It brings together all build steps and dependencies and executes them.
function fullBuild () {
// Copies static files.
copyStatic()
function getSource (callback) {
// Loads all node/io.js versions.
loadVersions((err, versions) => {
if (err) { throw err }
const source = {
project: {
versions,
currentVersions: {
stable: latestVersion.stable(versions),
current: latestVersion.current(versions),
lts: latestVersion.lts(versions)
},
banner: {
Expand All @@ -262,6 +257,18 @@ function fullBuild () {
}
}

callback(err, source)
})
}

// This is where the build is orchestrated from, as indicated by the function
// name. It brings together all build steps and dependencies and executes them.
function fullBuild () {
// Copies static files.
copyStatic()
getSource((err, source) => {
if (err) { throw err }

// Executes the build cycle for every locale.
fs.readdir(path.join(__dirname, 'locale'), (e, locales) => {
locales.filter(junk.not).forEach((locale) => {
Expand All @@ -276,6 +283,7 @@ if (require.main === module) {
fullBuild()
}

exports.getSource = getSource
exports.fullBuild = fullBuild
exports.buildLocale = buildLocale
exports.copyStatic = copyStatic
4 changes: 2 additions & 2 deletions layouts/download-stable.hbs → layouts/download-current.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<h1>{{downloads.headline}}</h1>
</div>

{{> primary-download-matrix version=project.currentVersions.stable versionTypeStable="true"}}
{{> secondary-download-matrix version=project.currentVersions.stable versionTypeStable="true"}}
{{> primary-download-matrix version=project.currentVersions.current versionTypeCurrent="true"}}
{{> secondary-download-matrix version=project.currentVersions.current versionTypeCurrent="true"}}

</article>

Expand Down
14 changes: 7 additions & 7 deletions layouts/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,23 @@

</div>

{{#if project.currentVersions.stable}}
{{#if project.currentVersions.current}}
<div class="home-downloadblock">

<a href="https://nodejs.org/dist/{{ project.currentVersions.stable }}/" class="home-downloadbutton" title="{{ labels.download }} {{ project.currentVersions.stable }} {{ labels.stable }}" data-version="{{ project.currentVersions.stable }}">
{{ project.currentVersions.stable }} {{ labels.stable }}
<small>{{ labels.tagline-stable }}</small>
<a href="https://nodejs.org/dist/{{ project.currentVersions.current }}/" class="home-downloadbutton" title="{{ labels.download }} {{ project.currentVersions.current }} {{ labels.current }}" data-version="{{ project.currentVersions.current }}">
{{ project.currentVersions.current }} {{ labels.current }}
<small>{{ labels.tagline-current }}</small>
</a>

<ul class="list-divider-pipe home-secondary-links">
<li>
<a href="https://nodejs.org/{{site.locale}}/download/stable/">{{ labels.other-downloads }}</a>
<a href="https://nodejs.org/{{site.locale}}/download/current/">{{ labels.other-downloads }}</a>
</li>
<li>
<a href="https://github.com/nodejs/node/blob/{{ project.currentVersions.stable }}/CHANGELOG.md">{{ labels.changelog }}</a>
<a href="https://github.com/nodejs/node/blob/{{ project.currentVersions.current }}/CHANGELOG.md">{{ labels.changelog }}</a>
</li>
<li>
<a href="{{majorapidocslink project.currentVersions.stable}}">{{ labels.api }}</a>
<a href="{{majorapidocslink project.currentVersions.current}}">{{ labels.api }}</a>
</li>
</ul>

Expand Down
6 changes: 3 additions & 3 deletions layouts/partials/primary-download-matrix.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<div class="title">{{downloads.lts}}</div>
<div class="tag">{{downloads.tagline-lts}}</div>
</a>
<a {{#if versionTypeStable}}class="is-version"{{/if}} href="/{{site.locale}}/{{site.download.link}}/stable" title="{{downloads.display-hint}} {{downloads.stable}}">
<div class="title">{{downloads.stable}}</div>
<div class="tag">{{downloads.tagline-stable}}</div>
<a {{#if versionTypeCurrent}}class="is-version"{{/if}} href="/{{site.locale}}/{{site.download.link}}/current" title="{{downloads.display-hint}} {{downloads.current}}">
<div class="title">{{downloads.current}}</div>
<div class="tag">{{downloads.tagline-current}}</div>
</a>
</div>
</li>
Expand Down
4 changes: 2 additions & 2 deletions locale/en/blog/community/node-v5.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ We just released [Node.js v5.0.0](https://nodejs.org/en/blog/release/v5.0.0/). Y

Node.js is growing, and growing fast. As we continue to innovate quickly, we will focus on two different release lines. One release line will fall under our **LTS** plan. All release lines that have LTS support will be even numbers, and (most importantly) focus on stability and security. These release lines are for organizations with complex environments that find it cumbersome to continually upgrade. We recently released the first in this line: [Node.js v4.2.1](https://nodejs.org/en/blog/release/v4.2.1/) “Argon.”

The other release line is called **Stable**. All release lines will be odd numbers, and have a shorter lifespan and more frequent updates to the code. The Stable release line will focus on active development of necessary features and refinement of existing APIs. Node.js version 5 is this type of release.
The other release line is called **Current**. All release lines will be odd numbers, and have a shorter lifespan and more frequent updates to the code. The Current release line will focus on active development of necessary features and refinement of existing APIs. Node.js version 5 is this type of release.

We want to make sure that you are adopting the release that best meets your Node.js needs, so to break it down:

Expand Down Expand Up @@ -47,7 +47,7 @@ First and foremost, if you haven’t read the [Essential Steps: Long Term Suppor

* There will be no more than two active LTS release lines at any given time. Overlap is intended to help ease migration planning.

* Once a Stable release line becomes LTS, no new features or breaking changes will be added to that release. Changes are limited to bug fixes for stability, security updates, possible npm updates, documentation updates and certain performance improvements that can be demonstrated to not break existing applications.
* Once a Current release line becomes LTS, no new features or breaking changes will be added to that release. Changes are limited to bug fixes for stability, security updates, possible npm updates, documentation updates and certain performance improvements that can be demonstrated to not break existing applications.

## Questions?

Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v4.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2015-09-08T12:10:06.000Z
version: 4.0.0
category: release
title: Node v4.0.0 (Stable)
title: Node v4.0.0 (Current)
slug: node-v4-0-0-stable
layout: blog-post.hbs
---
Expand Down
6 changes: 3 additions & 3 deletions locale/en/blog/release/v4.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
date: 2015-09-17T05:30:00.969Z
version: 4.1.0
category: release
title: Node v4.1.0 (Stable)
title: Node v4.1.0 (Current)
slug: node-v4-1-0-stable
layout: blog-post.hbs
---

## 2015-09-17, Version 4.1.0 (Stable), @Fishrock123
## 2015-09-17, Version 4.1.0 (Current), @Fishrock123

### Notable changes

Expand Down Expand Up @@ -36,7 +36,7 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
### Commits

* [[`b1abe812cd`](https://github.com/nodejs/node/commit/b1abe812cd)] - Working on 4.0.1 (Rod Vagg)
* [[`f9f8378853`](https://github.com/nodejs/node/commit/f9f8378853)] - 2015-09-08, Version 4.0.0 (Stable) Release (Rod Vagg)
* [[`f9f8378853`](https://github.com/nodejs/node/commit/f9f8378853)] - 2015-09-08, Version 4.0.0 (Current) Release (Rod Vagg)
* [[`9683e5df51`](https://github.com/nodejs/node/commit/9683e5df51)] - **bindings**: close after reading module struct (Fedor Indutny) [#2792](https://github.com/nodejs/node/pull/2792)
* [[`4b4cfa2d44`](https://github.com/nodejs/node/commit/4b4cfa2d44)] - **buffer**: always allocate typed arrays outside heap (Trevor Norris) [#2893](https://github.com/nodejs/node/pull/2893)
* [[`7df018a29b`](https://github.com/nodejs/node/commit/7df018a29b)] - **buffer**: construct Uint8Array in JS (Trevor Norris) [#2866](https://github.com/nodejs/node/pull/2866)
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v4.1.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2015-09-23T02:01:38.545Z
version: 4.1.1
category: release
title: Node v4.1.1 (Stable)
title: Node v4.1.1 (Current)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not under the impression that we will be changing the release type of old releases... these posts should likely remain unchanged

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just seeing that this was discussed above. I for one would push towards not making a decision in this PR and supporting the old names. There is no way for us to update release commits, and I do not believe there is any intention of modifying the changelogs. It would be odd if the release posts + changelogs are not the same

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's why I did this in a separate commit, so the others can be cherry-picked, if needed.

slug: node-v4-1-1-stable
layout: blog-post.hbs
author: Rod Vagg
Expand Down
4 changes: 2 additions & 2 deletions locale/en/blog/release/v4.1.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
date: 2015-10-05T20:05:01.925Z
version: 4.1.2
category: release
title: Node v4.1.2 (Stable)
title: Node v4.1.2 (Current)
slug: node-v4-1-2-stable
layout: blog-post.hbs
---

## 2015-10-05, Version 4.1.2 (Stable), @rvagg
## 2015-10-05, Version 4.1.2 (Current), @rvagg

This release includes a fix for [CVE-2015-7384](https://github.com/nodejs/node/issues/3138), a Denial of Service (DoS) bug. Details of the bug can be found on the [nodejs-sec](https://groups.google.com/forum/#!topic/nodejs-sec/fSNEQiuof6I) group. Please subscribe to [nodejs-sec](https://groups.google.com/forum/#!forum/nodejs-sec) to receive future notifications of security releases.

Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2015-10-29T12:33:38.068Z
version: 5.0.0
category: release
title: Node v5.0.0 (Stable)
title: Node v5.0.0 (Current)
slug: node-v5-0-0
layout: blog-post.hbs
author: Rod Vagg
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2015-11-17T21:47:36.127Z
version: 5.1.0
category: release
title: Node v5.1.0 (Stable)
title: Node v5.1.0 (Current)
slug: node-v5-1-0
layout: blog-post.hbs
author: Jeremiah Senkpiel
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.1.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2015-12-04T03:04:00.000Z
version: 5.1.1
category: release
title: Node v5.1.1 (Stable)
title: Node v5.1.1 (Current)
slug: node-v5-1-1
layout: blog-post.hbs
author: Rod Vagg
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.10.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-04-01T03:31:50.474Z
version: 5.10.0
category: release
title: Node v5.10.0 (Stable)
title: Node v5.10.0 (Current)
slug: node-v5-10-0
layout: blog-post.hbs
author: Evan Lucas
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.10.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-04-05T23:33:44.892Z
version: 5.10.1
category: release
title: Node v5.10.1 (Stable)
title: Node v5.10.1 (Current)
slug: node-v5-10-1
layout: blog-post.hbs
author: Myles Borins
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2015-12-09T05:24:54.976Z
version: 5.2.0
category: release
title: Node v5.2.0 (Stable)
title: Node v5.2.0 (Current)
slug: node-v5-2-0
layout: blog-post.hbs
author: Rod Vagg
Expand Down
4 changes: 2 additions & 2 deletions locale/en/blog/release/v5.3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2015-12-16T20:23:07.363Z
version: 5.3.0
category: release
title: Node v5.3.0 (Stable)
title: Node v5.3.0 (Current)
slug: node-v5-3-0
layout: blog-post.hbs
author: Colin Ihrig
Expand Down Expand Up @@ -31,7 +31,7 @@ author: Colin Ihrig

### Commits

* [[`6ca5ea3860`](https://github.com/nodejs/node/commit/6ca5ea3860)] - 2015-12-09, Version 5.2.0 (Stable) (Rod Vagg) [#4181](https://github.com/nodejs/node/pull/4181)
* [[`6ca5ea3860`](https://github.com/nodejs/node/commit/6ca5ea3860)] - 2015-12-09, Version 5.2.0 (Current) (Rod Vagg) [#4181](https://github.com/nodejs/node/pull/4181)
* [[`da5cdc2207`](https://github.com/nodejs/node/commit/da5cdc2207)] - **assert**: accommodate ES6 classes that extend Error (Rich Trott) [#4166](https://github.com/nodejs/node/pull/4166)
* [[`67e181986a`](https://github.com/nodejs/node/commit/67e181986a)] - **(SEMVER-MINOR)** **buffer**: add includes() for parity with TypedArray (Alexander Martin) [#3567](https://github.com/nodejs/node/pull/3567)
* [[`84dea1bd0c`](https://github.com/nodejs/node/commit/84dea1bd0c)] - **configure**: fix arm vfpv2 (Jörg Krause) [#4203](https://github.com/nodejs/node/pull/4203)
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-01-06T22:41:09.455Z
version: 5.4.0
category: release
title: Node v5.4.0 (Stable)
title: Node v5.4.0 (Current)
slug: node-v5-4-0
layout: blog-post.hbs
author: Jeremiah Senkpiel
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.4.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-01-12T23:59:28.459Z
version: 5.4.1
category: release
title: Node v5.4.1 (Stable)
title: Node v5.4.1 (Current)
slug: node-v5-4-1
layout: blog-post.hbs
author: Myles Borins
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-01-21T02:26:55.519Z
version: 5.5.0
category: release
title: Node v5.5.0 (Stable)
title: Node v5.5.0 (Current)
slug: node-v5-5-0
layout: blog-post.hbs
author: Evan Lucas
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-02-09T17:32:46.793Z
version: 5.6.0
category: release
title: Node v5.6.0 (Stable)
title: Node v5.6.0 (Current)
slug: node-v5-6-0
layout: blog-post.hbs
author: James M Snell
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-02-23T05:37:34.766Z
version: 5.7.0
category: release
title: Node v5.7.0 (Stable)
title: Node v5.7.0 (Current)
slug: node-v5-7-0
layout: blog-post.hbs
author: Rod Vagg
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.7.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-03-02T23:23:06.216Z
version: 5.7.1
category: release
title: Node v5.7.1 (Stable)
title: Node v5.7.1 (Current)
slug: node-v5-7-1
layout: blog-post.hbs
author: Jeremiah Senkpiel
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.8.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-03-09T15:57:36.574Z
version: 5.8.0
category: release
title: Node v5.8.0 (Stable)
title: Node v5.8.0 (Current)
slug: node-v5-8-0
layout: blog-post.hbs
author: Jeremiah Senkpiel
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.9.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-03-16T21:34:26.150Z
version: 5.9.0
category: release
title: Node v5.9.0 (Stable)
title: Node v5.9.0 (Current)
slug: node-v5-9-0
layout: blog-post.hbs
author: Evan Lucas
Expand Down
2 changes: 1 addition & 1 deletion locale/en/blog/release/v5.9.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: 2016-03-23T17:40:02.432Z
version: 5.9.1
category: release
title: Node v5.9.1 (Stable)
title: Node v5.9.1 (Current)
slug: node-v5-9-1
layout: blog-post.hbs
author: Jeremiah Senkpiel
Expand Down
8 changes: 4 additions & 4 deletions locale/en/blog/weekly-updates/weekly-update.2015-10-30.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ layout: blog-post.hbs
---

### Node.js News — October 30th
Node.js v5.0.0 (Stable) is released
Node.js v5.0.0 (Current) is released

### Node.js v5.0.0 (Stable) Releases
### Node.js v5.0.0 (Current) Releases

This week we have one release: [Node.js v5.0.0 (Stable)](https://nodejs.org/en/blog/release/v5.0.0/). Complete changelog from previous releases can be found [on GitHub](https://github.com/nodejs/node/blob/master/CHANGELOG.md).
This week we have one release: [Node.js v5.0.0 (Current)](https://nodejs.org/en/blog/release/v5.0.0/). Complete changelog from previous releases can be found [on GitHub](https://github.com/nodejs/node/blob/master/CHANGELOG.md).

### Notable changes : v5.0.0 (Stable)
### Notable changes : v5.0.0 (Current)

* **v8**: _(Breaking)_ Upgraded to 4.6.85.25 from 4.5.103.35 (Ali Ijaz Sheikh) [#3351](https://github.com/nodejs/node/pull/3351).
- Implements the spread operator, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator for further information.
Expand Down
6 changes: 3 additions & 3 deletions locale/en/blog/weekly-updates/weekly-update.2015-11-20.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ layout: blog-post.hbs
---

### Node.js News — November 20th
Node.js v5.1.0 (Stable) is released
Node.js v5.1.0 (Current) is released

### Node.js v5.1.0 (Stable) Releases
### Node.js v5.1.0 (Current) Releases

This week we have one release: [Node.js v5.1.0 (Stable)](https://nodejs.org/en/blog/release/v5.1.0/). Complete changelog from previous releases can be found [on GitHub](https://github.com/nodejs/node/blob/master/CHANGELOG.md).
This week we have one release: [Node.js v5.1.0 (Current)](https://nodejs.org/en/blog/release/v5.1.0/). Complete changelog from previous releases can be found [on GitHub](https://github.com/nodejs/node/blob/master/CHANGELOG.md).

### Notable changes

Expand Down
4 changes: 2 additions & 2 deletions locale/en/blog/weekly-updates/weekly-update.2015-12-04.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ layout: blog-post.hbs
---

### Node.js News — December 4th
Node v5.1.1 (Stable), v4.2.3 "Argon" (LTS), v0.12.9 (LTS) and v0.10.41 (Maintenance) are released
Node v5.1.1 (Current), v4.2.3 "Argon" (LTS), v0.12.9 (LTS) and v0.10.41 (Maintenance) are released

### December Security Release Summary
* This is an important security release. Please update your Node.js installation.
* We have released Node.js [v0.10.41 (Maintenance)](/en/blog/release/v0.10.41/), [v0.12.9 (LTS)](/en/blog/release/v0.12.9/), [v4.2.3 "Argon" (LTS)](/en/blog/release/v4.2.3/) and [v5.1.1 (Stable)](/en/blog/release/v5.1.1/) with fixes for the announced vulnerabilities and updates to OpenSSL.
* We have released Node.js [v0.10.41 (Maintenance)](/en/blog/release/v0.10.41/), [v0.12.9 (LTS)](/en/blog/release/v0.12.9/), [v4.2.3 "Argon" (LTS)](/en/blog/release/v4.2.3/) and [v5.1.1 (Current)](/en/blog/release/v5.1.1/) with fixes for the announced vulnerabilities and updates to OpenSSL.
* All Node.js users should consult our December Security Release Summary for details on patched vulnerabilities.

See https://nodejs.org/en/blog/vulnerability/december-2015-security-releases/ for more information.
Expand Down
6 changes: 3 additions & 3 deletions locale/en/blog/weekly-updates/weekly-update.2015-12-11.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ layout: blog-post.hbs
---

### Node.js News — December 11st
Node v5.2.0 (Stable) is released
Node v5.2.0 (Current) is released

### Node.js v5.2.0 (Stable) Releases
### Node.js v5.2.0 (Current) Releases

This week we have one release: [Node.js v5.2.0 (Stable)](https://nodejs.org/en/blog/release/v5.2.0/). Complete changelog from previous releases can be found [on GitHub](https://github.com/nodejs/node/blob/master/CHANGELOG.md).
This week we have one release: [Node.js v5.2.0 (Current)](https://nodejs.org/en/blog/release/v5.2.0/). Complete changelog from previous releases can be found [on GitHub](https://github.com/nodejs/node/blob/master/CHANGELOG.md).

### Notable changes

Expand Down
Loading