indentlabs / notebook

Notebook.ai is a set of tools for writers, game designers, and roleplayers to create magnificent universes – and everything within them.
http://www.notebook.ai
MIT License
353 stars 72 forks source link

Bump stripe from 5.55.0 to 8.3.0 #1232

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps stripe from 5.55.0 to 8.3.0.

Release notes

Sourced from stripe's releases.

v8.3.0

  • #1175 API Updates
    • Add support for refund_payment method on resource Terminal.Reader

See the changelog for more details.

v8.3.0-beta.1

  • #1174 API Updates for beta branch
    • Updated stable APIs to the latest version
    • Add support for new resource FinancialConnections.Transaction
    • Add support for list method on resource Transaction

See the changelog for more details.

v8.2.0

  • #1173 API Updates
    • Add support for resume method on resource Subscription
  • #1171 Remove unused partial param from initialize_from

See the changelog for more details.

v8.2.0-beta.3

  • #1172 API Updates for beta branch
    • Updated stable APIs to the latest version
    • Add support for list_transactions method on resource Tax.Transaction

See the changelog for more details.

v8.2.0-beta.2

  • #1170 API Updates for beta branch
    • Updated stable APIs to the latest version
    • Add support for Tax.Settings resource.

See the changelog for more details.

v8.2.0-beta.1

  • #1167 API Updates for beta branch
    • Updated stable APIs to the latest version
    • Change quote.draft_quote implementation to from calling POST /v1/quotes/{quote}/draft to POST /v1/quotes/{quote}/mark_draft
    • Add support for Tax::Register resource

See the changelog for more details.

v8.1.0

  • #1162 Improve request events instrumentation

See the changelog for more details.

v8.1.0-beta.4

  • #1164 API Updates for beta branch

... (truncated)

Changelog

Sourced from stripe's changelog.

8.3.0 - 2023-02-16

  • #1175 API Updates
    • Add support for refund_payment method on resource Terminal.Reader

8.2.0 - 2023-02-02

  • #1173 API Updates
    • Add support for resume method on resource Subscription
  • #1171 Remove unused partial param from initialize_from

8.1.0 - 2023-01-12

  • #1162 Improve request events instrumentation

8.0.0 - 2022-11-16

  • #1144 Next major release changes

Breaking changes that arose during code generation of the library that we postponed for the next major version. For changes to the Stripe products, read more at https://stripe.com/docs/upgrades#2022-11-15.

"⚠️" symbol highlights breaking changes.

Deprecated

  • The save method is deprecated. Prefer the static update method that doesn't require retrieval of the resource to update it.
    # before
    refund = Stripe::Refund.retrieve("re_123")
    refund.description = "Refund description"
    refund.save
    

    after

    Stripe::Refund.update("re_123", description: "Refund description")

⚠️ Removed

  • Removed deprecated Sku resource.
  • Removed deprecated Orders resource.
  • Removed deprecated delete method on Subscription resource. Please use cancel method instead.
    # before
    Stripe::Subscription::delete("sub_12345")
    

    after

    Stripe::Subscription::cancel("sub_12345")

7.1.0 - 2022-08-19

  • #1116 API Updates
    • Add support for new resource CustomerCashBalanceTransaction
  • #1118 Update AllowedChars in rubocop config
  • #1117 Refresh rubocop config.
  • #1115 Add a support section to the readme

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 1 year ago

Superseded by #1241.