From 2905558c1ec2ac8641717466569a0e6caaef1f8c Mon Sep 17 00:00:00 2001 From: aliyadeliveroo Date: Wed, 25 Sep 2024 12:50:50 +0100 Subject: [PATCH 01/12] TRST-2078: added transfer type to payment method --- lib/ravelin/payment_method.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ravelin/payment_method.rb b/lib/ravelin/payment_method.rb index 0343c69..ba2501f 100644 --- a/lib/ravelin/payment_method.rb +++ b/lib/ravelin/payment_method.rb @@ -23,6 +23,7 @@ class PaymentMethod < RavelinObject :custom, :e_wallet, :scheme + :transfer_type attr_required :payment_method_id, :method_type end From e880919ea119331ac41c178c58e8f17af8a9079f Mon Sep 17 00:00:00 2001 From: aliyadeliveroo Date: Wed, 25 Sep 2024 12:57:47 +0100 Subject: [PATCH 02/12] TRST-2078: updated version --- CHANGELOG.md | 3 +++ lib/ravelin/version.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61b26b6..c44665a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +#0.1.48 +Added transfer_type to payment_method + # 0.1.47 Added support for passing optional request headers to ravelin client and ravelin proxy. diff --git a/lib/ravelin/version.rb b/lib/ravelin/version.rb index fc95e84..c4c9643 100644 --- a/lib/ravelin/version.rb +++ b/lib/ravelin/version.rb @@ -1,3 +1,3 @@ module Ravelin - VERSION = '0.1.47' + VERSION = '0.1.48' end From 5a37930e133dc91b00f5e6b543f6bc0add389995 Mon Sep 17 00:00:00 2001 From: aliyadeliveroo Date: Wed, 25 Sep 2024 13:14:46 +0100 Subject: [PATCH 03/12] TRST-2078: updated version --- lib/ravelin/payment_method.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ravelin/payment_method.rb b/lib/ravelin/payment_method.rb index ba2501f..bff57ed 100644 --- a/lib/ravelin/payment_method.rb +++ b/lib/ravelin/payment_method.rb @@ -22,7 +22,7 @@ class PaymentMethod < RavelinObject :email, :custom, :e_wallet, - :scheme + :scheme, :transfer_type attr_required :payment_method_id, :method_type From 9e7d1f0df0e4a59459d73200d28a8f466eec9f6c Mon Sep 17 00:00:00 2001 From: aliyadeliveroo Date: Wed, 25 Sep 2024 13:21:32 +0100 Subject: [PATCH 04/12] TRST-2078: updated version --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c44665a..64f28b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -#0.1.48 +# 0.1.48 Added transfer_type to payment_method # 0.1.47 From da992942d4a588314a52d6da38cf81a892175787 Mon Sep 17 00:00:00 2001 From: aliyadeliveroo Date: Wed, 25 Sep 2024 13:31:21 +0100 Subject: [PATCH 05/12] TRST-2078: updated version --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64f28b4..b57753d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # 0.1.48 + Added transfer_type to payment_method # 0.1.47 From 9b321c45766014867e86927e12d938e608202b91 Mon Sep 17 00:00:00 2001 From: aliyadeliveroo <116800582+aliyadeliveroo@users.noreply.github.com> Date: Thu, 26 Sep 2024 08:36:01 +0000 Subject: [PATCH 06/12] TRST-2078: updated bundler --- .github/workflows/codeql-scheduled.yml | 2 +- ravelin.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-scheduled.yml b/.github/workflows/codeql-scheduled.yml index 0cb76ed..b89eb99 100644 --- a/.github/workflows/codeql-scheduled.yml +++ b/.github/workflows/codeql-scheduled.yml @@ -42,7 +42,7 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: 2.5 # The version of Ruby to use - bundler: 1.17.3 + bundler: 2.5.11 bundler-cache: true # runs 'bundle install' and caches installed gems automatically #env: # BUNDLE_GEMFILE: ./path/to/Gemfile # Change this to the path to your Gemfile if not in root diff --git a/ravelin.gemspec b/ravelin.gemspec index e072088..a662f67 100644 --- a/ravelin.gemspec +++ b/ravelin.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.add_development_dependency 'bundler', '~> 1.17.3' + spec.add_development_dependency 'bundler', '~> 2.5.11' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'webmock', '~> 3.18' From b615048cc3515590acc0bfe252a048ab76f9e91c Mon Sep 17 00:00:00 2001 From: aliyadeliveroo <116800582+aliyadeliveroo@users.noreply.github.com> Date: Thu, 26 Sep 2024 09:42:58 +0000 Subject: [PATCH 07/12] TRST-2078: updated ruby to 3.2.4 and bundler to 2.5.20 --- .github/workflows/codeql-scheduled.yml | 4 ++-- ravelin.gemspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-scheduled.yml b/.github/workflows/codeql-scheduled.yml index b89eb99..2874dc4 100644 --- a/.github/workflows/codeql-scheduled.yml +++ b/.github/workflows/codeql-scheduled.yml @@ -41,8 +41,8 @@ jobs: - uses: ruby/setup-ruby@v1 with: - ruby-version: 2.5 # The version of Ruby to use - bundler: 2.5.11 + ruby-version: 3.2.4 # The version of Ruby to use + bundler: 2.5.20 bundler-cache: true # runs 'bundle install' and caches installed gems automatically #env: # BUNDLE_GEMFILE: ./path/to/Gemfile # Change this to the path to your Gemfile if not in root diff --git a/ravelin.gemspec b/ravelin.gemspec index a662f67..dcefbec 100644 --- a/ravelin.gemspec +++ b/ravelin.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.add_development_dependency 'bundler', '~> 2.5.11' + spec.add_development_dependency 'bundler', '~> 2.5.20' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'webmock', '~> 3.18' From 82bd5414a952dd6407fc4bf25fb641944f736d3a Mon Sep 17 00:00:00 2001 From: aliyadeliveroo <116800582+aliyadeliveroo@users.noreply.github.com> Date: Thu, 26 Sep 2024 09:45:33 +0000 Subject: [PATCH 08/12] TRST-2078: updated circle ci version --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 25994fd..16dec69 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ version: 2 jobs: build: docker: - - image: circleci/ruby:2.5.6 + - image: circleci/ruby:3.2.4 steps: - checkout - run: From eee3b9549c01df1ca0bdd83441785466f0bd0994 Mon Sep 17 00:00:00 2001 From: aliyadeliveroo <116800582+aliyadeliveroo@users.noreply.github.com> Date: Thu, 26 Sep 2024 09:51:10 +0000 Subject: [PATCH 09/12] updated circle ci image --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 16dec69..c9a745e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ version: 2 jobs: build: docker: - - image: circleci/ruby:3.2.4 + - image: cimg/ruby:3.2.4 steps: - checkout - run: From dd46884cfba737435c47268118963437de5e9045 Mon Sep 17 00:00:00 2001 From: aliyadeliveroo <116800582+aliyadeliveroo@users.noreply.github.com> Date: Thu, 26 Sep 2024 09:53:11 +0000 Subject: [PATCH 10/12] changed bundler to 2.5 --- .github/workflows/codeql-scheduled.yml | 2 +- ravelin.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-scheduled.yml b/.github/workflows/codeql-scheduled.yml index 2874dc4..0fdde22 100644 --- a/.github/workflows/codeql-scheduled.yml +++ b/.github/workflows/codeql-scheduled.yml @@ -42,7 +42,7 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: 3.2.4 # The version of Ruby to use - bundler: 2.5.20 + bundler: 2.5.9 bundler-cache: true # runs 'bundle install' and caches installed gems automatically #env: # BUNDLE_GEMFILE: ./path/to/Gemfile # Change this to the path to your Gemfile if not in root diff --git a/ravelin.gemspec b/ravelin.gemspec index dcefbec..b07431d 100644 --- a/ravelin.gemspec +++ b/ravelin.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.add_development_dependency 'bundler', '~> 2.5.20' + spec.add_development_dependency 'bundler', '~> 2.5' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'webmock', '~> 3.18' From 6107f5aeb319162183d94ec4fd049a08df3c13fe Mon Sep 17 00:00:00 2001 From: aliyadeliveroo <116800582+aliyadeliveroo@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:03:48 +0000 Subject: [PATCH 11/12] TRST-2078: updated version --- .ruby-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ruby-version b/.ruby-version index ecd7ee5..351227f 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.5.8 +3.2.4 From e9adb20aeb6995d4450a850c5b3b6f9b513b2f74 Mon Sep 17 00:00:00 2001 From: aliyadeliveroo Date: Thu, 26 Sep 2024 11:40:57 +0100 Subject: [PATCH 12/12] TRST-2078: updated version --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b57753d..d5fd52c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # 0.1.48 -Added transfer_type to payment_method +Added transfer_type to payment_method. +Added transfer_type to payment_method. +Updated ruby version to to 2.5.8 and bundler to 2.5.11 # 0.1.47