# XState 5.23.0 - Product: XState (https://whatsnew.fyi/product/xstate) - Vendor: Stately - Date: 2025-10-11 - Version: 5.23.0 - Original notes: https://github.com/statelyai/xstate/releases/tag/xstate%405.23.0 - Permalink: https://whatsnew.fyi/product/xstate/releases/5.23.0 What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **added** — Add `system.getAll` that returns a record of running actors within the system by their system id ###### Minor Changes - [#5387](https://github.com/statelyai/xstate/pull/5387) [`53dd7f1`](https://github.com/statelyai/xstate/commit/53dd7f1abe18f430d578072086e896ea8a22ee7f) Thanks [@farskid](https://github.com/farskid)! - Adds `system.getAll` that returns a record of running actors within the system by their system id ```ts const childMachine = createMachine({}); const machine = createMachine({ // ... invoke: [ { src: childMachine, systemId: 'test' } ] }); const system = createActor(machine); system.getAll(); // { test: ActorRefFrom } ```