stripe 13.4.1 → 13.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2638ea0597055a2869c08a1c8ee7048e4cdabf5e5cb38c9f7890d2c9973d75c7
4
- data.tar.gz: d8db160ddd21528d73155b979da9435d176fb51d42cbf388d108c67e50228016
3
+ metadata.gz: 928062945af6605fafe312cf05d06a64fe7fb636f41f02ff6f816af0449dbe1a
4
+ data.tar.gz: 7fccabdb8857bbdb1728f594c277fc4afdc5be8d44edc5eeac944ccac4cb53d3
5
5
  SHA512:
6
- metadata.gz: 4dd0a07340287d574b50102282eeef702dbc20a9a60c3636bc895629d844db1ade530006b66230c2bedfe29582b2e62614d09888273793a8e554106a387ebfef
7
- data.tar.gz: f9784d26d9ac9b37141ce5b5d22951d1cd1b61286622da678b3fd3d8511b8f84795ebe85db58f2dcf785995b547073d7ad262e07c8be06b502d1370dcf470878
6
+ metadata.gz: 80c16055d8f85a1ffe0ed6f41e6082205d672886aa23b7a9f184ca9609ea4cd09855528bcc4341ad7360306bc82c18d2d364e91e7e4081d4cf848b553a0aed07
7
+ data.tar.gz: abb2d60a2c14b95b1815dfd986310f7d75d663c9c339ad32a9b30e5273cba832a364911b2b248f82f9a851a01cef2622ddaea658926ddf3f1241d93d2dc68b1c
data/CHANGELOG.md CHANGED
@@ -1,4 +1,11 @@
1
1
  # Changelog
2
+ ## 13.5.0 - 2025-02-24
3
+ * [#1534](https://github.com/stripe/stripe-ruby/pull/1534) Update generated code
4
+ * Fixed `Stripe::InvoiceLineItem.update` method.
5
+ * [#1536](https://github.com/stripe/stripe-ruby/pull/1536) Fix InvoiceLineItem parent class
6
+ * Fix bug where `Stripe::InvoiceLineItem` had the incorrect parent class, making it error when `update` was called
7
+ * [#1533](https://github.com/stripe/stripe-ruby/pull/1533) add codeowners file
8
+
2
9
  ## 13.4.1 - 2025-01-28
3
10
  * [#1528](https://github.com/stripe/stripe-ruby/pull/1528) Update generated code
4
11
  * ⚠️ Bugfix: `invoice` and `line_item_id` can be passed to `update` method in `InvoiceLineItem`.
data/OPENAPI_VERSION CHANGED
@@ -1 +1 @@
1
- v1463
1
+ v1505
data/VERSION CHANGED
@@ -1 +1 @@
1
- 13.4.1
1
+ 13.5.0
@@ -3,6 +3,6 @@
3
3
 
4
4
  module Stripe
5
5
  module ApiVersion
6
- CURRENT = "2025-01-27.acacia"
6
+ CURRENT = "2025-02-24.acacia"
7
7
  end
8
8
  end
@@ -5,6 +5,8 @@ module Stripe
5
5
  module Billing
6
6
  # A billing meter event summary represents an aggregated view of a customer's billing meter events within a specified timeframe. It indicates how much
7
7
  # usage was accrued by a customer for that period.
8
+ #
9
+ # Note: Meters events are aggregated asynchronously so the meter event summaries provide an eventually consistent view of the reported usage.
8
10
  class MeterEventSummary < APIResource
9
11
  OBJECT_NAME = "billing.meter_event_summary"
10
12
  def self.object_name
@@ -5,7 +5,7 @@ module Stripe
5
5
  # Invoice Line Items represent the individual lines within an [invoice](https://stripe.com/docs/api/invoices) and only exist within the context of an invoice.
6
6
  #
7
7
  # Each line item is backed by either an [invoice item](https://stripe.com/docs/api/invoiceitems) or a [subscription item](https://stripe.com/docs/api/subscription_items).
8
- class InvoiceLineItem < StripeObject
8
+ class InvoiceLineItem < APIResource
9
9
  include Stripe::APIOperations::Save
10
10
 
11
11
  OBJECT_NAME = "line_item"
@@ -2,9 +2,9 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Stripe
5
- # Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax.
5
+ # Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax.
6
6
  #
7
- # Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates)
7
+ # Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates)
8
8
  class TaxRate < APIResource
9
9
  extend Stripe::APIOperations::Create
10
10
  extend Stripe::APIOperations::List
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "13.4.1"
4
+ VERSION = "13.5.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stripe
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.4.1
4
+ version: 13.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-28 00:00:00.000000000 Z
11
+ date: 2025-02-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Stripe is the easiest way to accept payments online. See https://stripe.com
14
14
  for details.