mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-08-14 00:02:11 -04:00
Compare commits
5 Commits
a2806aca65
...
456f10ab93
Author | SHA1 | Date | |
---|---|---|---|
|
456f10ab93 | ||
|
3ba3e10ec8 | ||
|
6dce6c1240 | ||
|
96b7453ee9 | ||
|
c0310bc4a7 |
@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 8.6.0-beta.6 - 2023-06-22
|
||||
* [#1237](https://github.com/stripe/stripe-ruby/pull/1237) Update generated code for beta
|
||||
* Add support for new resource `CustomerSession`
|
||||
* Add support for `create` method on resource `CustomerSession`
|
||||
* [#1233](https://github.com/stripe/stripe-ruby/pull/1233) Update generated code for beta
|
||||
* [#1229](https://github.com/stripe/stripe-ruby/pull/1229) Update generated code for beta
|
||||
|
||||
## 8.6.0-beta.5 - 2023-06-01
|
||||
* [#1227](https://github.com/stripe/stripe-ruby/pull/1227) Update generated code for beta
|
||||
* [#1228](https://github.com/stripe/stripe-ruby/pull/1228) Document raw_request
|
||||
|
@ -1 +1 @@
|
||||
v392
|
||||
v394
|
@ -89,13 +89,16 @@ module Stripe
|
||||
val = Stripe::LEVEL_DEBUG
|
||||
elsif val == "info"
|
||||
val = Stripe::LEVEL_INFO
|
||||
elsif val == "error"
|
||||
val = Stripe::LEVEL_ERROR
|
||||
end
|
||||
|
||||
levels = [Stripe::LEVEL_INFO, Stripe::LEVEL_DEBUG, Stripe::LEVEL_ERROR]
|
||||
|
||||
if !val.nil? && !levels.include?(val)
|
||||
raise ArgumentError,
|
||||
"log_level should only be set to `nil`, `debug` or `info`"
|
||||
"log_level should only be set to `nil`, `debug`, `info`," \
|
||||
" or `error`"
|
||||
end
|
||||
@log_level = val
|
||||
end
|
||||
|
@ -1,5 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Stripe
|
||||
VERSION = "8.6.0-beta.5"
|
||||
VERSION = "8.6.0-beta.6"
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user