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
18 changes: 18 additions & 0 deletions automation_inspector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 1.1.0 — 2026-07-28

### Added

- Inspect scripts alongside automations, including their entity dependencies, target resolution, native validation, compatibility findings, and recent trace failures.
- Report script totals in the API summary (`scripts`, `inspected_items`, `items_with_issues`) and list scripts in the dependency explorer with **Edit** and **Traces** links.

### Fixed

- Stop reporting event trigger `event_type` values such as `timer.finished` as missing entities; the referenced `event_data` entity is still tracked.
- Stop scanning automation `description` prose for entity references, so notes about removed entities no longer create missing dependencies.
- Stop reporting Jinja runtime context variables such as `trigger.entity_id`, `repeat.item`, and `repeat.item.boolean` as missing entities, while still detecting real entities referenced inside templates.
- Stop listing duplicate `automations.yaml` entries produced by YAML anchors and aliases as phantom "not loaded" automations that inflated the automation count.

### Changed

- Unreferenced helper detection now also accounts for helpers used by scripts, reducing false cleanup suggestions.

## 1.0.2 — 2026-07-12

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion automation_inspector/app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Automation Inspector application package."""

APP_VERSION = "1.0.2"
APP_VERSION = "1.1.0"
2 changes: 1 addition & 1 deletion automation_inspector/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Automation Inspector
version: 1.0.2
version: 1.1.0
slug: automation_inspector
description: >-
Audits automation and script dependencies, targets, compatibility, and recent
Expand Down