Skip to content

Releases: hookdeck/outpost

v1.0.5

16 Jun 18:24
f43a92f

Choose a tag to compare

Fixes

  • Webhook secret rotation now correctly defaults the previous-secret invalidation window to 24h on every rotation, not just the first — previously later rotations carried forward a stale (often already-expired) timestamp, stripping the previous secret from API responses by @alexluong in #951
  • Duplicate log messages are now handled idempotently — at-least-once duplicates in the same batch no longer fail the whole batch or re-run alert evaluation per copy by @alexluong in #953
  • Per-event format errors (e.g. an aws_s3 key_template referencing a missing field) are now recorded as normal failed deliveries that retry and surface to the customer, instead of being silently dead-lettered and paging on-call by @alexluong in #957
  • OpenAPI spec ManagedConfig now accurately reflects the supported configs by @alexbouchardd in #943
  • Fixed portal font loading by @alexbouchardd in #944

Updates

  • Clarified signature behavior in the docs by @alexbouchardd in #945
  • Overhauled the local dev stack: unified into a single Compose project with opt-in dependency/add-on flags, added make health/make smoke, and repaired make up/test by @alexluong in #930, #952
  • Aligned the docs-eval scenario with the TS SDK publish() shape and surfaced failing checks in CI logs by @leggetter in #950

Full Changelog: v1.0.4...v1.0.5

typescript - sdks/outpost-typescript/v1.4.1 - 2026-06-16 19:09:41

16 Jun 19:09
cc89cf0

Choose a tag to compare

Generated by Speakeasy CLI

@hookdeck/outpost-sdk 1.4.1

Typescript SDK Changes:

  • outpost.configuration.getManagedConfig(): response Changed (Breaking ⚠️)
  • outpost.configuration.updateManagedConfig():
    • request Changed (Breaking ⚠️)
    • response Changed (Breaking ⚠️)

Generated with Speakeasy CLI 1.780.0

Publishing Completed

python - sdks/outpost-python/v1.4.1 - 2026-06-16 18:54:29

16 Jun 18:54
df22de0

Choose a tag to compare

Generated by Speakeasy CLI

outpost_sdk 1.4.1

Python SDK Changes:

  • outpost.configuration.get_managed_config(): response Changed (Breaking ⚠️)
  • outpost.configuration.update_managed_config():
    • request Changed (Breaking ⚠️)
    • response Changed (Breaking ⚠️)

Generated with Speakeasy CLI 1.780.0

Publishing Completed

go - sdks/outpost-go/v1.4.1 - 2026-06-16 18:42:46

16 Jun 18:42
c8908ac

Choose a tag to compare

Generated by Speakeasy CLI

github.com/hookdeck/outpost/sdks/outpost-go 1.4.1

Go SDK Changes:

  • Outpost.Configuration.GetManagedConfig(): response Changed (Breaking ⚠️)
  • Outpost.Configuration.UpdateManagedConfig():
    • request.Request Changed (Breaking ⚠️)
    • response Changed (Breaking ⚠️)

Generated with Speakeasy CLI 1.780.0

v1.0.4

29 May 18:03
34bd2a8

Choose a tag to compare

Features

  • Mobile-responsive portal layout — sidebar overlays on narrow viewports, tables scroll horizontally, and scenes reflow for tablet/phone widths by @lovlyx in #915
  • Cleaned up OTel logs to only include audit lines, eliminating operator-diagnostic noise from the customer-visible sink by @alexluong in #913

Fixes

  • Fixed a portal load race where the destinations list could blank out when /destinations resolved before /destination-types by @alexluong in #914
  • Spec corrections: added the missing DestinationUpdate type discriminator so partial PATCH bodies are typeable, restored event.data on listAttempts with include=event.data, and dropped the Speakeasy pagination overlay (TS list endpoints return flat XPaginatedResult again instead of PageIterator) by @alexluong and @leggetter in #924

Performance

  • Enabled LZ4 client compression on ClickHouse inserts, cutting insert wall-clock by ~65% and wire bytes by ~10× on event-shaped payloads by @alexluong in #911

Updates

  • Added spec-sdk-tests CI workflow that runs the contract suite against a locally-built Outpost so spec/server drift is caught at PR time by @leggetter in #925
  • Added a companion CI workflow that runs the PR's SDK against the latest released Outpost image, closing the gap on bot-generated SDK regen PRs by @leggetter in #927

New Contributors

Full Changelog: v1.0.3...v1.0.4

typescript - sdks/outpost-typescript/v1.4.0 - 2026-05-29 19:00:39

29 May 19:00
08c270a

Choose a tag to compare

Generated by Speakeasy CLI

@hookdeck/outpost-sdk 1.4.0

Typescript SDK Changes:

  • outpost.destinations.update(): request.body Changed (Breaking ⚠️)

Generated with Speakeasy CLI 1.768.2

Publishing Completed

python - sdks/outpost-python/v1.4.0 - 2026-05-29 18:50:43

29 May 18:50
71849b9

Choose a tag to compare

Generated by Speakeasy CLI

outpost_sdk 1.4.0

Python SDK Changes:

  • outpost.destinations.update(): request.body Changed (Breaking ⚠️)

Generated with Speakeasy CLI 1.768.2

Publishing Completed

go - sdks/outpost-go/v1.4.0 - 2026-05-29 18:37:30

29 May 18:37
8124138

Choose a tag to compare

Generated by Speakeasy CLI

github.com/hookdeck/outpost/sdks/outpost-go 1.4.0

Go SDK Changes:

  • Outpost.Destinations.Update(): request.Body Changed (Breaking ⚠️)

Generated with Speakeasy CLI 1.763.0

v1.0.3

13 May 17:53
2aa4cec

Choose a tag to compare

Features

  • Enable/disable destinations directly through Create and Update endpoints via the disabled_at field, plus importable created_at/updated_at timestamps so migrations can preserve original source-system timestamps by @alexluong in #895
  • Proxy-aware error handling for webhook deliveries through a forward proxy: proxy infrastructure failures (auth, dial) now nack instead of burning the destination's retry budget, and proxy-reported upstream errors are translated into accurate destination error codes (dns_error, connection_refused, timeout, etc.). Envoy-specific response headers/bodies are stripped on the plain-HTTP path; HTTPS deliveries remain byte-transparent by @alexluong in #899
  • Node identifier added to every log line (derived from os.Hostname()) so multi-node deployments are traceable from logs alone — surfaces pod name on Kubernetes, container/task ID on Docker/ECS by @mvanhorn in #894

Fixes

  • Consumer error tolerance increased from ~3s to ~1min (10 errors, 15s backoff cap) so brief infra blips like OAuth token timeouts or managed broker restarts no longer permanently kill logmq / deliverymq workers by @alexluong in #900
  • Automated database migrations in the examples/docker-compose/ setup via a new migrate service — api, log, and delivery now wait for migrations to finish before booting, removing the manual migration step for local example runs by @distroaryan in #898
  • Corrected misleading desc tags on AttemptPrefix, DestinationPrefix, and EventPrefix config fields — prefixes are used as-is, not prepended with an underscore by @alexluong in #896

New Contributors

Full Changelog: v1.0.2...v1.0.3

typescript - sdks/outpost-typescript/v1.3.0 - 2026-05-13 18:14:46

13 May 18:14
d875c66

Choose a tag to compare

Generated by Speakeasy CLI

@hookdeck/outpost-sdk 1.3.0

Typescript SDK Changes:

  • outpost.destinations.create(): request.body Changed
  • outpost.destinations.update(): request.body Changed

Generated with Speakeasy CLI 1.763.0

Publishing Completed