-
-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Remove links to common tasks for Core and Supervisor #39238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove links to common tasks for Core and Supervisor #39238
Conversation
✅ Deploy Preview for home-assistant-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
It seems that this PR is targeted against an incorrect branch since it has a parent PR on one of our codebases. Documentation that needs to be updated for an upcoming release should target the |
📝 WalkthroughWalkthroughThe changes update documentation by removing references to configuration check options for "Core" and "Supervised" installation types. Only "Operating System" and "Container" options remain in the lists for configuration validation and troubleshooting. No structural or control flow changes are introduced; the updates are limited to documentation content. Changes
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
source/_faq/component.markdown (1)
12-12
: Add a single trailing newline to satisfy Markdown linting
The file currently misses a final newline, triggering MD047 (single-trailing-newline). Please ensure there’s exactly one newline at the end.🧰 Tools
🪛 markdownlint-cli2 (0.17.2)
12-12: Files should end with a single newline character
null(MD047, single-trailing-newline)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
Cache: Disabled due to data retention organization setting
Knowledge Base: Disabled due to data retention organization setting
📒 Files selected for processing (3)
source/_docs/configuration/splitting_configuration.markdown
(0 hunks)source/_docs/configuration/troubleshooting.markdown
(0 hunks)source/_faq/component.markdown
(1 hunks)
💤 Files with no reviewable changes (2)
- source/_docs/configuration/splitting_configuration.markdown
- source/_docs/configuration/troubleshooting.markdown
🧰 Additional context used
🪛 markdownlint-cli2 (0.17.2)
source/_faq/component.markdown
12-12: Files should end with a single newline character
null
(MD047, single-trailing-newline)
⏰ Context from checks skipped due to timeout of 90000ms (3)
- GitHub Check: Redirect rules - home-assistant-docs
- GitHub Check: Header rules - home-assistant-docs
- GitHub Check: Pages changed - home-assistant-docs
🔇 Additional comments (1)
source/_faq/component.markdown (1)
11-12
:✅ Verification successful
Removed deprecated installation type links – aligns with deprecation roadmap
The removal of “Core” and “Supervised” links narrows the guidance to the supported installation types (Operating System and Container), which matches the deprecation plan discussed in home-assistant/architecture#1197 and #1198. Please verify that no other documentation still references the old Core or Supervised common-tasks sections.Run this script to confirm there are no lingering references in the repo:
🏁 Script executed:
#!/bin/bash # Verify no residual Core or Supervised CLI links to common-tasks rg -n 'common-tasks/(core|supervised)' -g '*.md' .Length of output: 52
Let’s expand the search to include both
.md
and.markdown
files:
🏁 Script executed:
#!/bin/bash # Re-verify no residual “core” or “supervised” common-tasks links in all markdown files rg -n 'common-tasks/(core|supervised)' -g '*.md' -g '*.markdown' .Length of output: 68
No lingering Core or Supervised references found – ready to approve
We’ve searched all.md
and.markdown
files with:rg -n 'common-tasks/(core|supervised)' -g '*.md' -g '*.markdown' .and confirmed there are no matches. Removing these deprecated links is safe and aligns with the deprecation roadmap.
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)
12-12: Files should end with a single newline character
null(MD047, single-trailing-newline)
Proposed change
Remove links to common tasks for Core and Supervisor
As per architecture discussion on
home-assistant/architecture#1197,
and home-assistant/architecture#1198
https://www.home-assistant.io/blog/2025/05/22/deprecating-core-and-supervised-installation-methods-and-32-bit-systems
Type of change
current
branch).current
branch).next
branch).next
branch).Additional information
Checklist
current
branch.next
branch.Summary by CodeRabbit