Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.9.0"
".": "1.10.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aacfe98109b9754d30676d3e95714223190bca5543e8060a90d7b946589f1c16.yml
openapi_spec_hash: d6a090b406bd5936e2d939ce9b9e061b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e25bdcd9c9cd987962f1507200b619dc7c32f91b940e5ca9110f24bdb294b14a.yml
openapi_spec_hash: 693a205b039e410d9a6b49a5b0ccc72c
config_hash: 97774f946585cecb19181a1817870d0b
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.10.0 (2025-07-08)

Full Changelog: [v1.9.0...v1.10.0](https://github.com/Increase/increase-ruby/compare/v1.9.0...v1.10.0)

### Features

* **api:** api update ([2e57642](https://github.com/Increase/increase-ruby/commit/2e576426eaf44efb61af1d5012820b83ed36d059))
* **api:** api update ([c873f32](https://github.com/Increase/increase-ruby/commit/c873f32a202b3db985d36d07a933467c7c45f472))

## 1.9.0 (2025-07-04)

Full Changelog: [v1.8.0...v1.9.0](https://github.com/Increase/increase-ruby/compare/v1.8.0...v1.9.0)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
increase (1.9.0)
increase (1.10.0)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 1.9.0"
gem "increase", "~> 1.10.0"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/card_payment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2186,6 +2186,9 @@ module Reason
# The transaction was declined because the 3DS authentication failed.
FAILED_3DS_AUTHENTICATION = :failed_3ds_authentication

# The transaction was suspected to be used by a card tester to test for valid card numbers.
SUSPECTED_CARD_TESTING = :suspected_card_testing

# The transaction was suspected to be fraudulent. Please reach out to support@increase.com for more information.
SUSPECTED_FRAUD = :suspected_fraud

Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/declined_transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,9 @@ module Reason
# The transaction was declined because the 3DS authentication failed.
FAILED_3DS_AUTHENTICATION = :failed_3ds_authentication

# The transaction was suspected to be used by a card tester to test for valid card numbers.
SUSPECTED_CARD_TESTING = :suspected_card_testing

# The transaction was suspected to be fraudulent. Please reach out to support@increase.com for more information.
SUSPECTED_FRAUD = :suspected_fraud

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,9 @@ module DeclineReason
# The transaction was declined because the 3DS authentication failed.
FAILED_3DS_AUTHENTICATION = :failed_3ds_authentication

# The transaction was suspected to be used by a card tester to test for valid card numbers.
SUSPECTED_CARD_TESTING = :suspected_card_testing

# The transaction was suspected to be fraudulent. Please reach out to support@increase.com for more information.
SUSPECTED_FRAUD = :suspected_fraud

Expand Down
Loading