Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
---
date: 2025-12-08T23:00:00.000Z
category: vulnerability
title: Wednesday, January 7, 2026 Security Releases
title: Thursday, January 8, 2026 Security Releases
slug: december-2025-security-releases
layout: blog-post
author: The Node.js Project
---

## (Update 07-Jan-2026) Security Release postponed to January 8th

Our team decided to postpone the release to Thursday, January 8th, 2026,
due to complications in the Node.js testing CI.

## (Update 17-Dec-2025) Security Release target January 7th

We have decided to delay the release further to Wednesday, January 7th, 2026. Many of the
Expand Down
4 changes: 2 additions & 2 deletions apps/site/site.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"websiteBanners": {
"index": {
"startDate": "2025-12-08T17:00:00.000Z",
"endDate": "2026-01-07T23:00:00.000Z",
"text": "New security releases to be made available Wednesday, January 7, 2026",
"endDate": "2026-01-08T23:00:00.000Z",
"text": "New security releases to be made available Thursday, January 8, 2026",
"link": "https://nodejs.org/en/blog/vulnerability/december-2025-security-releases",
"type": "warning"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-core/ui-components",
"version": "1.5.2",
"version": "1.5.3",
"type": "module",
"exports": {
"./*": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
w-screen
flex-col
border-neutral-200
md:max-w-[42rem]
lg:h-auto
lg:max-h-[70vh]
lg:w-auto
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,20 @@
lg:dark:bg-neutral-950;

svg {
@apply size-5;
@apply size-5
shrink-0;
}

> div {
@apply min-w-0;
}
}

.hitDescription {
@apply text-sm
@apply overflow-hidden
text-sm
text-ellipsis
whitespace-nowrap
text-neutral-600
dark:text-neutral-700;
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

.facetTabsList {
@apply flex
w-max
items-center
gap-2
overflow-x-auto;
Expand Down
Loading