Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
15 changes: 15 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@
"pip_requirements",
"pre-commit",
"dockerfile",
"npm",

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True, but I'll let the author decide.

"custom.regex",
"homeassistant-manifest"
],

"ignorePaths": ["**/node_modules/**"],

"pre-commit": {
"enabled": true
},
Expand All @@ -26,6 +29,10 @@
"managerFilePatterns": ["/^Dockerfile$/"]
},

"npm": {
"managerFilePatterns": ["/^tests/e2e/package\\.json$/"]
},

"homeassistant-manifest": {
"managerFilePatterns": [
"/^homeassistant/components/[^/]+/manifest\\.json$/"
Expand Down Expand Up @@ -180,6 +187,14 @@
"enabled": true,
"labels": ["dependency"]
},
{
"description": "pnpm version pinned in the E2E tests packageManager field (allowlisted)",
"matchManagers": ["npm"],
"matchDepTypes": ["packageManager"],
"matchPackageNames": ["pnpm"],
Comment thread
bramkragten marked this conversation as resolved.
"enabled": true,
"labels": ["dependency"]
},
{
"description": "For types-* stubs, only allow patch updates. Major/minor bumps track the upstream runtime package version and must be manually coordinated with the corresponding pin.",
"matchPackageNames": ["/^types-/"],
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"description": "End-to-end browser tests for Home Assistant Core",
"private": true,
"packageManager": "pnpm@11.13.0",
"packageManager": "pnpm@11.21.0",
"scripts": {
"test": "playwright test"
},
Expand Down
Loading