Skip to content

v0.1.3

Latest

Choose a tag to compare

@github-actions github-actions released this 13 Jun 09:01
· 2 commits to main since this release

This release introduces full webhook support:

  • run with STRIPEEK_WEBHOOK_TARGET=http://localhost:4567 stripeek to point stripeek to your local server that processes Stripe webhooks. there's no need to provide the exact webhook endpoint.
  • point your stripe listen to stripeek's listening port stripe listen --forward-to localhost:4243/webhooks. The path you set will be the path stripeek forwards the webhooks to, so your local server will receive them at http://localhost:4567/webhooks.
  • now all the incoming webhooks will be displayed in stripeek's TUI in real time, you can press r to group related requests and webhooks together: the relation is inferred from a combination of request_id and object IDs (subscription, customer, invoice etc.) so even the webhooks tha don't follow the request directly (e.g., from subscription change due to test clock advancing) will be correctly attributed
image