Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove all TLS 1.0 version pins #2774

Merged
merged 2 commits into from
Mar 5, 2018
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
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
* Payflow: Support scrub [curiousepic] #2768
* SecureNet: Support scrub [curiousepic] #2769
* Payeezy: Update transaction method when using stored cards [dtykocki] #2770
* Citrus Pay, DIBS, 1stPayGateway, Global Transport, NETbilling, Ogone, TNS: remove TLS 1.0 requirement [bdewater] #2774

== Version 1.77.0 (January 31, 2018)
* Authorize.net: Allow Transaction Id to be passed for refuds [nfarve] #2698
Expand Down
1 change: 0 additions & 1 deletion lib/active_merchant/billing/gateways/citrus_pay.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class CitrusPayGateway < Gateway
self.supported_countries = %w(AR AU BR FR DE HK MX NZ SG GB US)
self.default_currency = 'USD'
self.supported_cardtypes = [:visa, :master, :american_express, :discover, :diners_club, :jcb, :maestro, :laser]
self.ssl_version = :TLSv1

end
end
Expand Down
1 change: 0 additions & 1 deletion lib/active_merchant/billing/gateways/dibs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ class DibsGateway < Gateway
self.supported_countries = ["US", "FI", "NO", "SE", "GB"]
self.default_currency = "USD"
self.money_format = :cents
self.ssl_version = :TLSv1
self.supported_cardtypes = [:visa, :master, :american_express, :discover]

def initialize(options={})
Expand Down
1 change: 0 additions & 1 deletion lib/active_merchant/billing/gateways/first_pay.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class FirstPayGateway < Gateway

self.homepage_url = 'http://1stpaygateway.net/'
self.display_name = '1stPayGateway.Net'
self.ssl_version = :TLSv1

def initialize(options={})
requires!(options, :transaction_center_id, :gateway_id)
Expand Down
1 change: 0 additions & 1 deletion lib/active_merchant/billing/gateways/global_transport.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ class GlobalTransportGateway < Gateway
self.supported_countries = %w(CA PR US)
self.default_currency = 'USD'
self.supported_cardtypes = [:visa, :master, :american_express, :discover, :diners_club, :jcb]
self.ssl_version = :TLSv1

self.homepage_url = 'https://www.globalpaymentsinc.com'
self.display_name = 'Global Transport'
Expand Down
1 change: 0 additions & 1 deletion lib/active_merchant/billing/gateways/netbilling.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class NetbillingGateway < Gateway
self.display_name = 'NETbilling'
self.homepage_url = 'http://www.netbilling.com'
self.supported_countries = ['US']
self.ssl_version = :TLSv1
self.supported_cardtypes = [:visa, :master, :american_express, :discover, :jcb, :diners_club]

def initialize(options = {})
Expand Down
1 change: 0 additions & 1 deletion lib/active_merchant/billing/gateways/ogone.rb
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ class OgoneGateway < Gateway
self.display_name = 'Ogone'
self.default_currency = 'EUR'
self.money_format = :cents
self.ssl_version = :TLSv1

def initialize(options = {})
requires!(options, :login, :user, :password)
Expand Down
1 change: 0 additions & 1 deletion lib/active_merchant/billing/gateways/tns.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class TnsGateway < Gateway
self.supported_countries = %w(AR AU BR FR DE HK MX NZ SG GB US)
self.default_currency = 'USD'
self.supported_cardtypes = [:visa, :master, :american_express, :discover, :diners_club, :jcb, :maestro, :laser]
self.ssl_version = :TLSv1

end
end
Expand Down