adyen-ruby-api-library icon indicating copy to clipboard operation
adyen-ruby-api-library copied to clipboard

Adyen API Library for Ruby

Results 19 adyen-ruby-api-library issues
Sort by recently updated
recently updated
newest added

OpenAPI spec files or templates have been modified on 06-11-2025 by [commit](https://github.com/Adyen/adyen-openapi/commit/f67bf7ba47c7014bae4403716cc73ccea74170ae).

### Description There's a bug in checkout/payments_api vs payment/payments_api ### Steps to reproduce https://github.com/Adyen/adyen-ruby-api-library/blob/main/lib/adyen/services/checkout/payments_api.rb https://github.com/Adyen/adyen-ruby-api-library/blob/main/lib/adyen/services/payment/payments_api.rb These two files contradict each other and depending on the order they are loaded produce...

bug
do not stale

### Description `Adyen::ModificationsApi` exists both for Payment and Checkout ### Steps to reproduce ```ruby it 'loads modification_api without conflicting with checkout modification_api' do @shared_values[:client].payment.modifications_api @shared_values[:client].checkout.modifications_api expect(@shared_values[:client].checkout.modifications_api.service).to eq('Checkout') expect(@shared_values[:client].payment.modifications_api.service).to eq('Payment') end...

bug
needs response

### Description The Disputes service (`lib/adyen/services/disputes.rb`) is naming the service `Disputes` (plural) when it should be `Dispute` (singular). Currently, it's generating the wrong URL and it returns a 404 error...

bug
needs response

**Description** This introduces the `Client#call_adyen_api_url` method, that can be used to make an API call by specifying a full URL and HTTP method, while still taking care of authentication &...

enhancement

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/stale](https://redirect.github.com/actions/stale) | action | major | `v9` -> `v10` | --- ### Release...

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [faraday](https://lostisland.github.io/faraday) ([source](https://redirect.github.com/lostisland/faraday), [changelog](https://redirect.github.com/lostisland/faraday/releases/tag/v2.14.0)) | `'2.8.1'` -> `'2.14.0'` | [![age](https://developer.mend.io/api/mc/badges/age/rubygems/faraday/2.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/faraday/2.8.1/2.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | ---...

Merged pull requests to be released: - #314 - #315 - #321 **Full Changelog**: https://github.com/Adyen/adyen-ruby-api-library/compare/v11.0.0...main

release

`Faraday` supports logging of responses but annoyingly this can only be configured at the time of constructing the `Faraday.new` instance, and `Adyen::Client` locks this initialization inside `call_adyen_api` method. This PR...