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

v2.3.0 #89

Merged
merged 2 commits into from
Dec 5, 2023
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Changelog

## v2.3.0
## v2.3.0 (2023-12-04)

* Added the processor `:shopify_payments` to `Minfraud::Components::Payment`.
* Added the processor `:google_pay` to `Minfraud::Components::Payment`.
* Added the processor `:placetopay` to `Minfraud::Components::Payment`.
* In addition to the minfraud gem version, the User-Agent now includes the
version of Ruby and the version of the HTTP client in all HTTP requests.
* Updated `maxmind-geoip2` to version that includes the `anycast?` method
on `MaxMind::GeoIP2::Record::Traits`. This returns `true` if the IP
address belongs to an [anycast
network](https://en.wikipedia.org/wiki/Anycast). This is available in
minFraud Insights and Factors.

## v2.2.0 (2022-03-28)

Expand Down
2 changes: 1 addition & 1 deletion lib/minfraud/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module Minfraud
# The Gem version.
VERSION = '2.2.0'
VERSION = '2.3.0'
end
2 changes: 1 addition & 1 deletion minfraud.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency 'connection_pool', '~> 2.2'
spec.add_runtime_dependency 'http', '>= 4.3', '< 6.0'
spec.add_runtime_dependency 'maxmind-geoip2', '~> 1.1'
spec.add_runtime_dependency 'maxmind-geoip2', '~> 1.2'
spec.add_runtime_dependency 'simpleidn', '~> 0.1', '>= 0.1.1'

spec.add_development_dependency 'bundler', '~> 2.2'
Expand Down