stripe / stripe-java

Java library for the Stripe API.
https://stripe.com
MIT License
827 stars 361 forks source link

Fix multiple calls to addBetaVersion #1913

Closed jar-stripe closed 1 month ago

jar-stripe commented 1 month ago

Why

Follow up to https://github.com/stripe/stripe-java/pull/1909. In that PR, we made stripeVersion immutable and changed addBetaVersion to modify a new variable. In that process, we removed the ability for a user to set multiple different beta versions. This PR restores this functionality.

What