Skip to content

Commit 1378b36

Browse files
authored
Merge pull request #6660 from esphome/bump-2026.5.0
2026.5.0
2 parents 3acf492 + 9994243 commit 1378b36

67 files changed

Lines changed: 3246 additions & 369 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

data/version.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
release: 2026.4.5
2-
version: '2026.4'
1+
release: 2026.5.0
2+
version: '2026.5'

lint.mjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ const fileTypes = [
3939
'.cfg', '.css', '.gif', '.h', '.html', '.ico', '.jpg', '.js', '.json',
4040
'.md', '.mdx', '.png', '.py', '.svg', '.toml', '.txt', '.webmanifest',
4141
'.xml', '.yaml', '.yml', '.mjs', '.ts', '.tsx', '.astro', '.sh', '.webp',
42-
'' // empty string for files without extension (like .gitignore)
42+
'.bin', '' // empty string for files without extension (like .gitignore)
4343
];
4444
const imageTypes = ['.webp', '.jpg', '.ico', '.png', '.svg', '.gif'];
45+
const binaryTypes = ['.bin'];
4546

4647
// Store errors
4748
const errors = new Map();
@@ -301,6 +302,10 @@ async function checkInternalLinks(fname, content, anchorCache) {
301302
if (linkUrl.startsWith('/images/') && /\.(png|jpg|jpeg|gif|svg|webp|pdf|zip)$/i.test(linkUrl)) {
302303
continue;
303304
}
305+
if (linkUrl.startsWith('/files/') && /\.(bin|zip)$/i.test(linkUrl)) {
306+
continue;
307+
}
308+
304309

305310
// Skip links with spaces or parentheses (likely code)
306311
if (linkUrl.includes(' ') || linkUrl.includes('(') || linkUrl.includes(')')) {
@@ -486,6 +491,9 @@ async function main() {
486491
if (imageTypes.includes(extname(fname))) {
487492
continue;
488493
}
494+
if (binaryTypes.includes(extname(fname))) {
495+
continue;
496+
}
489497

490498
// Read and check content
491499
let content;
3 KB
Binary file not shown.
3 KB
Binary file not shown.
3 KB
Binary file not shown.
3 KB
Binary file not shown.
3 KB
Binary file not shown.
69.5 KB
Loading

public/images/music.svg

Lines changed: 1 addition & 0 deletions
Loading

src/content/docs/changelog/2026.5.0.mdx

Lines changed: 997 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)