Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 81 additions & 49 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resolver = "2"
exclude = ["openapi"]

[workspace.package]
version = "1.0.0-alpha.8"
version = "1.0.0-alpha.9"
description = "API bindings for the Stripe HTTP API"
rust-version = "1.88.0"
authors = [
Expand Down
13 changes: 13 additions & 0 deletions async-stripe-client-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.0.0-alpha.9](https://github.com/arlyon/async-stripe/compare/async-stripe-client-core-v1.0.0-alpha.8...async-stripe-client-core-v1.0.0-alpha.9) - 2025-12-04

### Fixed

- fix tests

### Other

- Merge pull request #804 from arlyon/claude/issue-722-20251126-2114
- Fix retry mechanism to follow Stripe documentation
- update readme
- make site public and add docs

## [1.0.0-alpha.8](https://github.com/arlyon/async-stripe/compare/async-stripe-client-core-v1.0.0-alpha.7...async-stripe-client-core-v1.0.0-alpha.8) - 2025-11-26

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions async-stripe-client-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ edition.workspace = true
name = "stripe_client_core"

[dependencies]
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.9" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.9" }
serde_json.workspace = true
serde.workspace = true
serde_qs.workspace = true
Expand Down
26 changes: 13 additions & 13 deletions async-stripe-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ edition.workspace = true
crate-type = ["cdylib"]

[dependencies]
async-stripe-billing = { features = ["full", "deserialize"], version = "1.0.0-alpha.8", path = "../generated/async-stripe-billing" }
async-stripe-checkout = { features = ["full", "deserialize"], version = "1.0.0-alpha.8", path = "../generated/async-stripe-checkout" }
async-stripe-connect = { features = ["full", "deserialize"],version = "1.0.0-alpha.8", path = "../generated/async-stripe-connect" }
async-stripe-core = { features = ["full", "deserialize"],version = "1.0.0-alpha.8", path = "../generated/async-stripe-core" }
async-stripe-fraud = { features = ["full", "deserialize"],version = "1.0.0-alpha.8", path = "../generated/async-stripe-fraud" }
async-stripe-issuing = {features = ["full", "deserialize"], version = "1.0.0-alpha.8", path = "../generated/async-stripe-issuing" }
async-stripe-misc = { features = ["full", "deserialize"],version = "1.0.0-alpha.8", path = "../generated/async-stripe-misc" }
async-stripe-payment = { features = ["full", "deserialize"],version = "1.0.0-alpha.8", path = "../generated/async-stripe-payment" }
async-stripe-product = { features = ["full", "deserialize"],version = "1.0.0-alpha.8", path = "../generated/async-stripe-product" }
async-stripe-shared = { features = ["deserialize"],version = "1.0.0-alpha.8", path = "../generated/async-stripe-shared" }
async-stripe-terminal = {features = ["full", "deserialize"], version = "1.0.0-alpha.8", path = "../generated/async-stripe-terminal" }
async-stripe-treasury = {features = ["full", "deserialize"], version = "1.0.0-alpha.8", path = "../generated/async-stripe-treasury" }
async-stripe-webhook = { version = "1.0.0-alpha.8", path = "../async-stripe-webhook", features = ["deserialize", "serialize", "full", "detailed-errors"] }
async-stripe-billing = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-billing" }
async-stripe-checkout = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-checkout" }
async-stripe-connect = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-connect" }
async-stripe-core = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-core" }
async-stripe-fraud = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-fraud" }
async-stripe-issuing = {features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-issuing" }
async-stripe-misc = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-misc" }
async-stripe-payment = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-payment" }
async-stripe-product = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-product" }
async-stripe-shared = { features = ["deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-shared" }
async-stripe-terminal = {features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-terminal" }
async-stripe-treasury = {features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-treasury" }
async-stripe-webhook = { version = "1.0.0-alpha.9", path = "../async-stripe-webhook", features = ["deserialize", "serialize", "full", "detailed-errors"] }
serde.workspace = true
serde_json.workspace = true
serde_path_to_error = "0.1.20"
Expand Down
12 changes: 12 additions & 0 deletions async-stripe-webhook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.0.0-alpha.9](https://github.com/arlyon/async-stripe/compare/async-stripe-webhook-v1.0.0-alpha.8...async-stripe-webhook-v1.0.0-alpha.9) - 2025-12-04

### Added

- add generate_test_header for webhook signature testing

### Other

- round trip webhook
- Merge pull request #815 from arlyon/claude/issue-808-20251127-2210
- add wasm webhook parser

## [1.0.0-alpha.8](https://github.com/arlyon/async-stripe/compare/async-stripe-webhook-v1.0.0-alpha.7...async-stripe-webhook-v1.0.0-alpha.8) - 2025-11-26

### Fixed
Expand Down
20 changes: 10 additions & 10 deletions async-stripe-webhook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ categories.workspace = true
name = "stripe_webhook"

[dependencies]
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.9" }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
Expand All @@ -27,14 +27,14 @@ miniserde.workspace = true
serde.workspace = true
serde_json = { workspace = true, optional = true }

async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-alpha.8" }
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-alpha.8" }
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-alpha.8" }
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-alpha.8" }
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-alpha.8" }
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-alpha.8" }
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-alpha.8" }
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-alpha.8" }
async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-alpha.9" }
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-alpha.9" }
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-alpha.9" }
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-alpha.9" }
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-alpha.9" }
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-alpha.9" }
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-alpha.9" }
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-alpha.9" }
serde_path_to_error = { version = "0.1.20", optional = true }

[dev-dependencies]
Expand Down
12 changes: 12 additions & 0 deletions async-stripe/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.0.0-alpha.9](https://github.com/arlyon/async-stripe/compare/async-stripe-v1.0.0-alpha.8...async-stripe-v1.0.0-alpha.9) - 2025-12-04

### Fixed

- fix tests

### Other

- update readme
- make site public and add docs
- Add tracing instrumentation to core API calls

## [1.0.0-alpha.8](https://github.com/arlyon/async-stripe/compare/async-stripe-v1.0.0-alpha.7...async-stripe-v1.0.0-alpha.8) - 2025-11-26

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions async-stripe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ async-std = { version = "1.12.0", optional = true }
surf = { version = "2.1", optional = true }
http-types = { version = "2.12.0", default-features = false, optional = true }

async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.9" }
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-alpha.9" }

[features]
default = ["default-tls"]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-billing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-checkout/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-connect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-fraud/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-issuing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-misc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-payment/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-product/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
2 changes: 1 addition & 1 deletion generated/async-stripe-shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }



Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-terminal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-treasury/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }

async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }


[features]
Expand Down