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
5 changes: 5 additions & 0 deletions .changeset/theme-toggle-aria.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@node-core/ui-components': patch
---

Add a default `aria-label` to `ThemeToggle`.
2 changes: 2 additions & 0 deletions .github/workflows/pull-request-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
pull_request:
branches:
- main
paths:
- packages/**
types: [opened, edited, synchronize, reopened, ready_for_review]

permissions:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ layout: blog-post
author: The Node.js Project
---

## _(Update 28-July-2026)_ Security releases postponed

The Node.js project is delaying the planned security releases until Wednesday,
July 29, 2026 due to infrastructure issues.

## _(Update 27-July-2026)_ Security releases postponed

The Node.js project is delaying the planned security releases until Tuesday,
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": "2026-07-21T03:00:00.000Z",
"endDate": "2026-07-29T03:00:00.000Z",
"text": "New security releases to be made available Tuesday, July 28, 2026",
"endDate": "2026-07-30T03:00:00.000Z",
"text": "New security releases to be made available Wednesday, July 29, 2026",
"link": "https://nodejs.org/en/blog/vulnerability/july-2026-security-releases",
"type": "warning"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/src/Common/ThemeToggle/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const themes: Array<Theme> = ['system', 'light', 'dark'];
const ThemeToggle: FC<ThemeToggleProps> = ({
onChange = () => {},
currentTheme = 'system',
ariaLabel,
ariaLabel = 'Select theme',
themeLabels = { system: 'System', light: 'Light', dark: 'Dark' },
}) => {
const TriggerIcon = themeIcons[currentTheme];
Expand Down
Loading