Skip to content

Releases: Klark-Morrigan/Infrastructure-GitHub

1.1.0

17 Jun 10:42
af7701b

Choose a tag to compare

Added

  • Get-PendingDeployment gains an optional -CreatedSince cutoff. Deployments
    created before the cutoff are skipped without a status API call. Defaults to
    MinValue (check every deployment), so existing callers are unaffected.

Fixed

  • The polling agent no longer exhausts the GitHub API rate limit. Because GitHub
    never deletes deployments, Get-PendingDeployment was fetching statuses for a
    full page of historical, terminal deployments on every tick - an N+1 fan-out
    (~31 calls/poll) that drained the hourly budget and crashed the agent with
    403 (rate limit exceeded). Callers now pass -CreatedSince to collapse a
    quiet poll to a single list call.

1.0.0

17 Jun 06:03
4bca5e5

Choose a tag to compare

Changed

  • Major version bump; no functional changes (version realignment).