Policy-limits fetches can now be cleanly aborted, logged as 'cycle_aborted'
The component that fetches policy limits now uses an AbortController to cancel in-flight network requests. Its abort signal is passed into the fetch call and gets recreated whenever the fetcher is stopped. If a fetch is aborted, or if the session generation changes mid-flight, the outcome is now logged as cycle_aborted, and the fetchAndLoad function checks for this aborted state in addition to its previous check for a changed session generation.
This makes policy-limits fetching more robust by properly canceling requests that are no longer needed and giving clearer diagnostic information when a fetch is interrupted, rather than letting stale or interrupted requests run to completion silently.