feat: add related log lines and events to history id. - #888
Merged
Conversation
…arsing fix: stop reading digit prefixed tags as part of the episode range
doonga
pushed a commit
to greyrock-labs/home-ops
that referenced
this pull request
Sep 9, 2026
… v1.10.5) (#150) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/arabcoders/watchstate](https://github.com/arabcoders/watchstate) | patch | `v1.10.4` → `v1.10.5` | --- ### Release Notes <details> <summary>arabcoders/watchstate (ghcr.io/arabcoders/watchstate)</summary> ### [`v1.10.5`](https://github.com/arabcoders/watchstate/releases/tag/v1.10.5) [Compare Source](arabcoders/watchstate@v1.10.4...v1.10.5) ##### What's Changed - fix: remove baked WS\_TZ=UTC in Dockerfile by [@​arabcoders](https://github.com/arabcoders) in [#​885](arabcoders/watchstate#885) - fix: stop reading digit prefixed tags as part of the episode range by [@​Jellyfrog](https://github.com/Jellyfrog) in [#​886](arabcoders/watchstate#886) - feat: add related log lines and events to history id. by [@​arabcoders](https://github.com/arabcoders) in [#​888](arabcoders/watchstate#888) ##### New Contributors - [@​Jellyfrog](https://github.com/Jellyfrog) made their first contribution in [#​886](arabcoders/watchstate#886) **Full Changelog**: <arabcoders/watchstate@v1.10.4...v1.10.5> *** ##### Commits since v1.10.4 - [`e5051df`](arabcoders/watchstate@e5051df) refactor: improve error handling and during db lock - [`b0895be`](arabcoders/watchstate@b0895be) refactor: increase image timeout and improve error handling in image fetching - [`1d243e9`](arabcoders/watchstate@1d243e9) fix: remove harded WS\_TZ=UTC in dockerfile - [`8052023`](arabcoders/watchstate@8052023) refactor: improve worker exit status handling and logging in runner script - [`fb8a798`](arabcoders/watchstate@fb8a798) fix: silent errors in worker startup - [`abe80ba`](arabcoders/watchstate@abe80ba) fix: redirect redis server output to stderr for better logging - [`6698f78`](arabcoders/watchstate@6698f78) refactor: reduce lock window during import operations - [`f860653`](arabcoders/watchstate@f860653) feat: add related log lines and events to history id. - [`99f4895`](arabcoders/watchstate@99f4895) refactor: improve events listing in history page. - [`88fbd31`](arabcoders/watchstate@88fbd31) refactor: add git pre-commit hook - [`f6b2add`](arabcoders/watchstate@f6b2add) test: add cases for episode range vs digit prefixed tags - [`5daf47a`](arabcoders/watchstate@5daf47a) fix: stop reading digit prefixed tags as part of the episode range </details> --- ### Configuration 📅 **Schedule**: (in timezone America/New_York) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC42Ni4xIiwidXBkYXRlZEluVmVyIjoiNDQuNjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9wYXRjaCJdfQ==--> Reviewed-on: https://git.greyrock.io/todd/home-ops/pulls/150
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a comprehensive pre-commit hook system, improves backend API capabilities, and brings various fixes and enhancements throughout the codebase. The most notable changes are the addition of a flexible, parallelized pre-commit hook framework, a new API endpoint for retrieving logs and events related to a history record, and several improvements to logging, error handling, and the frontend.
Pre-commit hook system:
.githooks/installscript to automate installation of a standardized pre-commit hook, with support for forced replacement and extensible directories for extra checks. (.githooks/install).githooks/pre-commitscript that runs backend and frontend checks in parallel based on staged file changes, supports extra user-defined hooks, and aborts commits on failures. (.githooks/pre-commit)CONTRIBUTING.mdwith instructions for installing and extending the pre-commit hook system. (CONTRIBUTING.md)Backend API improvements:
GET /history/{id}/relatedendpoint to return logs and persisted events structurally related to a history record, with optimizations for searching logs usingripgrepif available and a PHP fallback. (src/API/History/Index.php)src/API/System/Images.php,container/files/runner.sh) [1] [2]Frontend and developer experience:
frontend/app/layouts/default.vue,frontend/app/pages/auth.vue) [1] [2]frontend/app/middleware/auth.global.ts) [1] [2]Dev tooling and containerization:
ripgrepto the Docker image to support fast log searching in the backend. (Dockerfile)container/files/init-container.sh)Jellyfin backend import:
src/Backends/Jellyfin/Action/Import.php) [1] [2]