Skip to content

Commit b883b4b

Browse files
avivkellerCopilotMattIPv4
authored
Add incident report for April 1st (#121)
* Add incident report for March 31, 2025 * add root cause * Update and rename 2026-03-31.md to 2026-04-01.md * fixup! * Update incidents/2026-04-01.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update incidents/2026-04-01.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update incidents/2026-04-01.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * typo fix * Apply suggestions from code review Co-authored-by: Matt Cowley <me@mattcowley.co.uk> * Update 2026-04-01.md Co-authored-by: Matt Cowley <me@mattcowley.co.uk> * Update 2026-04-01.md Co-authored-by: Matt Cowley <me@mattcowley.co.uk> * Update 2026-04-01.md Co-authored-by: Matt Cowley <me@mattcowley.co.uk> * Update 2026-04-01.md Co-authored-by: Matt Cowley <me@mattcowley.co.uk> * Update 2026-04-01.md Co-authored-by: Matt Cowley <me@mattcowley.co.uk> * Apply suggestion from @MattIPv4 --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Matt Cowley <me@mattcowley.co.uk>
1 parent 69a5f5c commit b883b4b

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

incidents/2026-04-01.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# 2026-04-01 Incident Report
2+
3+
- Incident Commander: @MattIPv4
4+
- Severity Level: P2
5+
6+
For a brief period of time, the `/en/download/current` page was blank due to a logic bug in determining the Current version of Node.js. The main `/en/download` page was unaffected and could be accessed throughout.
7+
8+
## Timeline
9+
10+
- **2025-04-01 12:00 AM UTC**: Start of impact. Release schedule indicates that Node.js 25.x has moved from Current to Maintenance LTS.
11+
12+
- **2025-04-01 00:14 AM UTC**: Impact identified by [@MattIPv4's monitoring action](https://github.com/MattIPv4/monitors/actions/runs/23825485542).
13+
14+
- **2025-04-01 00:51 AM UTC**: Impact reported in [OpenJSF Slack](https://openjs-foundation.slack.com/archives/CVAMEJ4UV/p1775004674164609). Investigation began.
15+
16+
- **2025-04-01 01:00 AM UTC**: Root cause identified.
17+
18+
- **2025-04-01 01:20 AM UTC**: [nodejs/nodejs.org#8787](https://github.com/nodejs/nodejs.org/issues/8787) opened to resolve issue.
19+
20+
- **2025-04-01 01:33 AM UTC**: [nodejs/nodejs.org#8787](https://github.com/nodejs/nodejs.org/issues/8787) merged. Impact resolved shortly after.
21+
22+
## Impact
23+
24+
Users navigating to `https://nodejs.org/en/download/current` would see a blank page instead of the proper download instructions.
25+
26+
Users accessing any page on the website would see only the 24.x LTS release in the footer, no Current release.
27+
28+
`https://nodejs.org/en/download` showed 25.x as an LTS release, but was otherwise unaffected by this issue, with users being able to access download instructions as normal.
29+
30+
On both the `/en/download` page, and throughout the site in the footer, 24.x continued to be shown as the LTS release, due to it still being the Active LTS major, with 25.x having transitioned directly to Maintenance LTS in the schedule.
31+
32+
## Root Cause
33+
34+
According to the static release schedule, on April 1st, 2026, Node.js 25.x was expected to move from Current to Maintenance LTS. Due to this, the website logic automatically started treating 25.x as a Maintenance LTS major.
35+
36+
However, no new release of 25.x has yet been made to be marked as LTS, nor has the first release of 26.x been made to become the new Current major. This left the website with no Current release per its logic.
37+
38+
## Fix
39+
40+
[nodejs/nodejs.org#8787](https://github.com/nodejs/nodejs.org/issues/8787) resolved the issue by changing the detection of a release's `status` to require `.lts.isLts` to be `true` before allowing a release to be marked as `Active LTS` or `Maintenance LTS`, ensuring that a given major has a valid LTS release available before the website considers it an LTS release.
41+
42+
## Follow-up Work
43+
44+
* When possible, avoid relying on [the expected schedule](https://raw.githubusercontent.com/nodejs/Release/main/schedule.json), as various
45+
delays and circumstances cause this to be inaccurate to actual release dates.

0 commit comments

Comments
 (0)