Skip to content

Commit d3cb88b

Browse files
committed
Merge branch 'fix-selected-article-sidebar-scroll-fix' of https://github.com/malav2110/nodejs.org into fix-selected-article-sidebar-scroll-fix
2 parents c723ccf + d021e51 commit d3cb88b

7 files changed

Lines changed: 23 additions & 9 deletions

File tree

.github/workflows/scorecard.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@ on:
1111
branches:
1212
- main
1313

14-
# Declare default permissions as read only.
15-
permissions: read-all
14+
permissions: {}
1615

1716
jobs:
1817
analysis:
1918
name: Scorecard analysis
20-
uses: nodejs/web-team/.github/workflows/scorecard.yml@9f3c83af227d721768d9dbb63009a47ed4f4282f
19+
uses: nodejs/web-team/.github/workflows/scorecard.yml@b62c434f5e530041c288a40280567849449e74be
2120
permissions:
2221
# Needed to upload the results to code-scanning dashboard.
2322
security-events: write

apps/site/pages/en/blog/vulnerability/december-2025-security-releases.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
---
22
date: 2025-12-08T23:00:00.000Z
33
category: vulnerability
4-
title: Wednesday, January 7, 2026 Security Releases
4+
title: Thursday, January 8, 2026 Security Releases
55
slug: december-2025-security-releases
66
layout: blog-post
77
author: The Node.js Project
88
---
99

10+
## (Update 07-Jan-2026) Security Release postponed to January 8th
11+
12+
Our team decided to postpone the release to Thursday, January 8th, 2026,
13+
due to complications in the Node.js testing CI.
14+
1015
## (Update 17-Dec-2025) Security Release target January 7th
1116

1217
We have decided to delay the release further to Wednesday, January 7th, 2026. Many of the

apps/site/site.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
"websiteBanners": {
3030
"index": {
3131
"startDate": "2025-12-08T17:00:00.000Z",
32-
"endDate": "2026-01-07T23:00:00.000Z",
33-
"text": "New security releases to be made available Wednesday, January 7, 2026",
32+
"endDate": "2026-01-08T23:00:00.000Z",
33+
"text": "New security releases to be made available Thursday, January 8, 2026",
3434
"link": "https://nodejs.org/en/blog/vulnerability/december-2025-security-releases",
3535
"type": "warning"
3636
}

packages/ui-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@node-core/ui-components",
3-
"version": "1.5.2",
3+
"version": "1.5.4",
44
"type": "module",
55
"exports": {
66
"./*": [

packages/ui-components/src/Common/Search/Modal/index.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@
110110
w-screen
111111
flex-col
112112
border-neutral-200
113+
md:max-w-[42rem]
113114
lg:h-auto
114115
lg:max-h-[70vh]
115116
lg:w-auto

packages/ui-components/src/Common/Search/Results/Hit/index.module.css

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,20 @@
2424
lg:dark:bg-neutral-950;
2525

2626
svg {
27-
@apply size-5;
27+
@apply size-5
28+
shrink-0;
29+
}
30+
31+
> div {
32+
@apply min-w-0;
2833
}
2934
}
3035

3136
.hitDescription {
32-
@apply text-sm
37+
@apply overflow-hidden
38+
text-sm
39+
text-ellipsis
40+
whitespace-nowrap
3341
text-neutral-600
3442
dark:text-neutral-700;
3543
}

packages/ui-components/src/Common/Search/Results/Tabs/index.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
.facetTabsList {
3737
@apply flex
38+
w-max
3839
items-center
3940
gap-2
4041
overflow-x-auto;

0 commit comments

Comments
 (0)