Skip to content

Releases: vapor-community/stripe-kit

StripeKit 7.0.1

28 Apr 22:52
Compare
Choose a tag to compare

Bug fixes.
See the CHANGELOG for more info.

StripeKit 7.0.0

21 Apr 00:02
948ff45
Compare
Choose a tag to compare

⚠️Breaking changes⚠️
This release adds support for Expandable objects and as a result requires swift 5.2
See the CHANGELOG for more info.

StripeKit 6.1.1

28 Mar 17:43
d9ba7bd
Compare
Choose a tag to compare

This release renames the package to stripe-kit.
So in Package.swift you'd declare your dependency like this.

Before:

targets: [
        .target(name: "MyTarget", dependencies: [
            .product(name: "StripeKit", package: "StripeKit"),
        ]),
    ]

After:

targets: [
        .target(name: "MyTarget", dependencies: [
            .product(name: "StripeKit", package: "stripe-kit"),
        ]),
    ]

StripeKit 6.1.0 💳

26 Mar 20:05
e67317e
Compare
Choose a tag to compare

StripeKit 6.0.0 💳

07 Mar 23:40
3fdab83
Compare
Choose a tag to compare

Major release ⚠️Breaking changes⚠️
See the changelog for more details.

StripeKit 5.1.0

21 Feb 13:04
7926ae9
Compare
Choose a tag to compare

Adds a new helper method hopped(to:...) on the StripeClient for switching event loops without having to create new client every time. (#35 )

StripeKit 5.0.1

02 Feb 01:39
4d38da4
Compare
Choose a tag to compare

Addresses #31

StripeKit 5.0.0

06 Jan 22:29
e9046e5
Compare
Choose a tag to compare

StripeKit 5.0.0 💳🎉

This release of StripeKit marks the completion of the full implementation of Stripes API.
The release also pins to the 2019-12-03 API version.

More about issues resolved with the release are here #21

StripeKit 4.0.0

26 Dec 21:14
7b99ff8
Compare
Choose a tag to compare

⚠️Breaking changes⚠️

This release allows initializing a StripeClient with a preconfigured HTTPClient and a specified EventLoop to have internal API requests/work to be executed and have EventLoopFutures returned on.

let specialConfig = HTTPClient.Configuration(....)
let client = HTTPClient(specialConfig)
let stripe = StripeClient(httpClient: client, eventLoop: myEventLoop, apiKey: "sk_123")

StripeKit 3.0.2

13 Dec 13:46
40ed178
Compare
Choose a tag to compare

The release adds some missing TaxID types.