diff --git a/apps/site/pages/en/blog/vulnerability/december-2025-security-releases.md b/apps/site/pages/en/blog/vulnerability/december-2025-security-releases.md index ee6bdec23cf96..28e56b11414d9 100644 --- a/apps/site/pages/en/blog/vulnerability/december-2025-security-releases.md +++ b/apps/site/pages/en/blog/vulnerability/december-2025-security-releases.md @@ -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 diff --git a/apps/site/site.json b/apps/site/site.json index 5f2a3e668d145..ad9068daba79f 100644 --- a/apps/site/site.json +++ b/apps/site/site.json @@ -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" } diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 95c0e02c341eb..d4d56690e54c7 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@node-core/ui-components", - "version": "1.5.2", + "version": "1.5.3", "type": "module", "exports": { "./*": [ diff --git a/packages/ui-components/src/Common/Search/Modal/index.module.css b/packages/ui-components/src/Common/Search/Modal/index.module.css index 0c71fe9b86e52..1f63a7ebb5a40 100644 --- a/packages/ui-components/src/Common/Search/Modal/index.module.css +++ b/packages/ui-components/src/Common/Search/Modal/index.module.css @@ -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 diff --git a/packages/ui-components/src/Common/Search/Results/Hit/index.module.css b/packages/ui-components/src/Common/Search/Results/Hit/index.module.css index a12cd298c69f0..edb4bf24de14e 100644 --- a/packages/ui-components/src/Common/Search/Results/Hit/index.module.css +++ b/packages/ui-components/src/Common/Search/Results/Hit/index.module.css @@ -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; } diff --git a/packages/ui-components/src/Common/Search/Results/Tabs/index.module.css b/packages/ui-components/src/Common/Search/Results/Tabs/index.module.css index aa197710bd327..268bbf1804855 100644 --- a/packages/ui-components/src/Common/Search/Results/Tabs/index.module.css +++ b/packages/ui-components/src/Common/Search/Results/Tabs/index.module.css @@ -35,6 +35,7 @@ .facetTabsList { @apply flex + w-max items-center gap-2 overflow-x-auto;