Refactor: expose the transport queue - #874
Merged
Merged
Conversation
foreach over a list produces integer keys. When $prefix is empty,
$path was assigned $key directly, so an int got passed as the
$prefix argument on the next recursive call, which is typed string.
This throws a TypeError for any request body containing a JSON
array (e.g. PUT /v1/api/identities/{id} with a backends array),
surfacing as a 503 in the API.
Fixes #869
…pe-error-dev fix: flat_array() TypeError when flattening a JSON list
doonga
added a commit
to greyrock-labs/home-ops
that referenced
this pull request
Aug 3, 2026
… v1.10.1) (#231) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/arabcoders/watchstate](https://github.com/arabcoders/watchstate) | patch | `v1.10.0` → `v1.10.1` | --- ### Release Notes <details> <summary>arabcoders/watchstate (ghcr.io/arabcoders/watchstate)</summary> ### [`v1.10.1`](https://github.com/arabcoders/watchstate/releases/tag/v1.10.1) [Compare Source](arabcoders/watchstate@v1.10.0...v1.10.1) ##### What's Changed - fix: flat\_array() TypeError when flattening a JSON list by [@​andrejkurlovic](https://github.com/andrejkurlovic) in [#​871](arabcoders/watchstate#871) - Refactor: expose the transport queue by [@​arabcoders](https://github.com/arabcoders) in [#​874](arabcoders/watchstate#874) ##### New Contributors - [@​andrejkurlovic](https://github.com/andrejkurlovic) made their first contribution in [#​871](arabcoders/watchstate#871) **Full Changelog**: <arabcoders/watchstate@v1.10.0...v1.10.1> *** ##### Commits since v1.10.0 - [`95b560a`](arabcoders/watchstate@95b560a) Fix flat\_array() type error when flattening a JSON list - [`83d96a6`](arabcoders/watchstate@83d96a6) fix: update action versions and improve StructuredLogLine component with copy options - [`52502c1`](arabcoders/watchstate@52502c1) fix: update checkout steps for conditional registry handling in build workflow - [`e48215c`](arabcoders/watchstate@e48215c) refactor: minor logline update - [`4314d81`](arabcoders/watchstate@4314d81) refactor: expose the transport queue - [`dce4271`](arabcoders/watchstate@dce4271) docs: improve docs consistency. </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:eyJjcmVhdGVkSW5WZXIiOiI0NC4wLjAiLCJ1cGRhdGVkSW5WZXIiOiI0NC43LjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> Co-authored-by: todd <tpunderson@greyrock.io> Reviewed-on: https://git.greyrock.io/greyrock-labs/home-ops/pulls/231
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 updates the documentation and CI workflows to improve clarity, accuracy, and maintainability, and adds new API endpoints. The most significant changes are the addition of new system and transport queue API endpoints, multiple dependency updates in GitHub Actions workflows, and various documentation clarifications.
API documentation improvements:
GET /v1/api/system/stats,GET /v1/api/system/transport/queue, andGET /v1/api/system/transport/queue/{id}. These endpoints provide pending event/transport counts and allow inspection of the transport queue and its items.CI workflow updates:
General documentation and clarity:
FAQ.mdregarding import/export semantics, credential format, and Jellyfin played state workarounds.NEWS.mdentries for clarity, conciseness, and accuracy, especially around playlist sync, the v1.0.0 release, webhooks, and authentication changes. [1] [2] [3]These changes collectively improve the developer and user experience by keeping documentation accurate and workflows up-to-date.