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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
Releases prior to `1.0.0` were published before this changelog was added and
are not documented here.

## [1.2.0]

### Added

- `createPayment` creates a Payment on a Ledger. Pass an `ik`, a `ledgerIk`, and
a Payment `type`, along with optional `typeVersion` and `parameters`. It
returns the Payment's `clientSecret` and `status`. Payments are experimental,
so this API may change in a future release.

### Changed

- `typeVersion` on `LedgerEntryInput` is now supported and defaults to `1`. It
was previously reserved for an upcoming feature.
- `PaymentStatus` now uses `needs_payment_method` instead of
`requires_confirmation`.
- `SchemaPaymentEntryStatus` is now named `SchemaPaymentTypeStatus`, and
`SchemaPaymentEntryInput` now takes `needs_payment_method_to_processing`
instead of `needs_confirmation_to_processing`.

## [1.1.1]

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ target_package_name = "fragment_graphql_client"

[tool.poetry]
name = "fragment-python"
version = "1.1.1"
version = "1.2.0"
description = "Python SDK for https://fragment.dev/"
authors = ["Fragment Foundries Inc"]
license = "Apache 2.0"
Expand Down
Loading