From 72197f93482afbaa9cc0a1dcafd8d48829ae2faf Mon Sep 17 00:00:00 2001 From: Matteo Collina Date: Thu, 25 Jun 2026 13:44:53 +0200 Subject: [PATCH 1/2] Update June 2026 security release credit (#8975) Signed-off-by: Matteo Collina --- .../pages/en/blog/vulnerability/june-2026-security-releases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/pages/en/blog/vulnerability/june-2026-security-releases.md b/apps/site/pages/en/blog/vulnerability/june-2026-security-releases.md index 5dbec23ecca0d..f261fbef239c1 100644 --- a/apps/site/pages/en/blog/vulnerability/june-2026-security-releases.md +++ b/apps/site/pages/en/blog/vulnerability/june-2026-security-releases.md @@ -113,7 +113,7 @@ A flaw in Node.js Permission API can cause a local server to be started (via a U This vulnerability affects one supported release line: **Node.js 26**. -Thank you, to cyberjoker for reporting this vulnerability and thank you RafaelGSS for fixing it. +Thank you, to Vitaly Simonovich for reporting this vulnerability and thank you RafaelGSS for fixing it. ## HTTP Response Queue Poisoning via TOCTOU Race Condition in `http.Agent` (CVE-2026-48931) - (low) From 1c3273c321932d2e6e072615b1097b9dba315edb Mon Sep 17 00:00:00 2001 From: Sebastian Beltran Date: Thu, 25 Jun 2026 11:44:15 -0500 Subject: [PATCH 2/2] feat: Add TuxCare partner (#8973) * feat: Add TuxCare partner - Created a new directory for TuxCare logos. - Imported Favicon and Logo components from TuxCare directory. - Updated the main PartnerLogos index to include TuxCare. * Update apps/site/pages/en/about/eol.mdx Co-authored-by: Jordan Harband Signed-off-by: Sebastian Beltran * remove specific Node.js versions per feedback from Kylie * improve visual weight of tuxcare logo * Update apps/site/pages/en/about/eol.mdx Co-authored-by: Sebastian Beltran Signed-off-by: Brian Muenzenmeyer --------- Signed-off-by: Sebastian Beltran Signed-off-by: Brian Muenzenmeyer Co-authored-by: Jordan Harband Co-authored-by: Brian Muenzenmeyer --- apps/site/pages/en/about/eol.mdx | 4 +- .../public/static/partners/constants.json | 7 + .../ui-components/src/Icons/Logos/Nodejs.tsx | 6 +- .../Icons/PartnerLogos/TuxCare/Favicon.tsx | 67 +++++++++ .../src/Icons/PartnerLogos/TuxCare/Logo.tsx | 138 ++++++++++++++++++ .../src/Icons/PartnerLogos/TuxCare/index.ts | 4 + .../src/Icons/PartnerLogos/index.ts | 2 + 7 files changed, 224 insertions(+), 4 deletions(-) create mode 100644 packages/ui-components/src/Icons/PartnerLogos/TuxCare/Favicon.tsx create mode 100644 packages/ui-components/src/Icons/PartnerLogos/TuxCare/Logo.tsx create mode 100644 packages/ui-components/src/Icons/PartnerLogos/TuxCare/index.ts diff --git a/apps/site/pages/en/about/eol.mdx b/apps/site/pages/en/about/eol.mdx index 7860f6ecd360c..f3295187f2d0c 100644 --- a/apps/site/pages/en/about/eol.mdx +++ b/apps/site/pages/en/about/eol.mdx @@ -37,8 +37,10 @@ When a version reaches End-Of-Life, it means that it will no longer receive upda ## Commercial Support -Despite the obvious downsides of using EOL releases, in practice, organizations face constraints that prevent immediate upgrades, such as legacy codebases, compliance requirements, or complex dependency chains. Through the [OpenJS Foundation Ecosystem Sustainability Program](https://openjsf.org/blog/ecosystem-sustainability-program), Node.js is supported by HeroDevs and NodeSource to provide commercial services for security fixes. +Despite the obvious downsides of using EOL releases, in practice, organizations face constraints that prevent immediate upgrades, such as legacy codebases, compliance requirements, or complex dependency chains. Through the [OpenJS Foundation Ecosystem Sustainability Program](https://openjsf.org/blog/ecosystem-sustainability-program), Node.js is supported by HeroDevs, NodeSource, and TuxCare to provide commercial services for security fixes. HeroDevs provides [Never-Ending Support (NES)](https://nodejs.org/esp/herodevs) for Node.js versions past their official maintenance phase. This includes security patches, compliance assistance, and technical support to help bridge the gap while you plan your upgrade strategy. +TuxCare’s [Endless Lifecycle Support (ELS)](https://tuxcare.com/endless-lifecycle-support/) gives you continued security patching for end-of-life Node.js versions. Security fixes are backported from upstream, tested for integrity and regression, signed, SLA-backed, and delivered through your existing package managers. + Using EOL releases through commercial support should be viewed as a temporary solution—the goal should always be to upgrade to actively supported versions. diff --git a/apps/site/public/static/partners/constants.json b/apps/site/public/static/partners/constants.json index 9aaf25866ca86..acfd2c214b989 100644 --- a/apps/site/public/static/partners/constants.json +++ b/apps/site/public/static/partners/constants.json @@ -48,6 +48,13 @@ "weight": 3, "categories": ["security", "esp", "release"] }, + { + "id": "TUXCARE", + "name": "TuxCare", + "href": "https://tuxcare.com", + "weight": 2, + "categories": ["esp"] + }, { "id": "CODEMOD", "name": "Codemod", diff --git a/packages/ui-components/src/Icons/Logos/Nodejs.tsx b/packages/ui-components/src/Icons/Logos/Nodejs.tsx index aaa225687413a..78610b60680e9 100644 --- a/packages/ui-components/src/Icons/Logos/Nodejs.tsx +++ b/packages/ui-components/src/Icons/Logos/Nodejs.tsx @@ -57,7 +57,7 @@ const NodejsIcon: FC = ({ /> {variant === 'pride' && ( - + @@ -144,8 +144,8 @@ const NodejsIcon: FC = ({ dx="0" dy="0" stdDeviation="2" - flood-color="#000000" - flood-opacity="0.5" + floodColor="#000000" + floodOpacity="0.5" /> )} diff --git a/packages/ui-components/src/Icons/PartnerLogos/TuxCare/Favicon.tsx b/packages/ui-components/src/Icons/PartnerLogos/TuxCare/Favicon.tsx new file mode 100644 index 0000000000000..51937f6b82d7c --- /dev/null +++ b/packages/ui-components/src/Icons/PartnerLogos/TuxCare/Favicon.tsx @@ -0,0 +1,67 @@ +import classNames from 'classnames'; + +import type { FC, SVGProps } from 'react'; + +const TuxCare: FC> = props => ( + + + + + + + + + + + + +); + +export default TuxCare; diff --git a/packages/ui-components/src/Icons/PartnerLogos/TuxCare/Logo.tsx b/packages/ui-components/src/Icons/PartnerLogos/TuxCare/Logo.tsx new file mode 100644 index 0000000000000..aa34a125e70a5 --- /dev/null +++ b/packages/ui-components/src/Icons/PartnerLogos/TuxCare/Logo.tsx @@ -0,0 +1,138 @@ +import classNames from 'classnames'; + +import type { FC, SVGProps } from 'react'; + +const TuxCare: FC> = props => ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); + +export default TuxCare; diff --git a/packages/ui-components/src/Icons/PartnerLogos/TuxCare/index.ts b/packages/ui-components/src/Icons/PartnerLogos/TuxCare/index.ts new file mode 100644 index 0000000000000..b4cd37328b21d --- /dev/null +++ b/packages/ui-components/src/Icons/PartnerLogos/TuxCare/index.ts @@ -0,0 +1,4 @@ +import Favicon from './Favicon'; +import Logo from './Logo'; + +export { Favicon, Logo }; diff --git a/packages/ui-components/src/Icons/PartnerLogos/index.ts b/packages/ui-components/src/Icons/PartnerLogos/index.ts index fd9ba073acc27..fbaa036580c5a 100644 --- a/packages/ui-components/src/Icons/PartnerLogos/index.ts +++ b/packages/ui-components/src/Icons/PartnerLogos/index.ts @@ -14,6 +14,7 @@ import * as OPENSSF from './OpenSSF'; import * as RACKSPACE from './Rackspace'; import * as SCALEWAY from './Scaleway'; import * as SENTRY from './Sentry'; +import * as TUXCARE from './TuxCare'; import * as VERCEL from './Vercel'; import * as VLT from './Vlt'; @@ -34,6 +35,7 @@ export { RACKSPACE, SCALEWAY, SENTRY, + TUXCARE, VERCEL, VLT, };