File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## v2.9.0
3+ ## v2.9.0 (2025-11-20)
44
55* Added the processor ` :securepay ` to ` Minfraud::Components::Payment ` .
66* Ruby 3.2+ is now required. If you're using Ruby 3.0 or 3.1, please use
3434 was completed. Available as the ` last_visited_on ` attribute.
3535 * ` /email/domain/visit/status ` - The status of the domain (e.g., live,
3636 dns_error, parked). Available as the ` status ` attribute.
37+ * Updated ` maxmind-geoip2 ` to 1.4, which includes new anonymizer and IP
38+ risk outputs.
3739
3840## v2.8.0 (2025-05-23)
3941
Original file line number Diff line number Diff line change 22
33set -eu -o pipefail
44
5+ # Check that we're not on the main branch
6+ current_branch=$( git branch --show-current)
7+ if [ " $current_branch " = " main" ]; then
8+ echo " Error: Releases should not be done directly on the main branch."
9+ echo " Please create a release branch and run this script from there."
10+ exit 1
11+ fi
12+
513changelog=$( cat CHANGELOG.md)
614
715regex='
Original file line number Diff line number Diff line change 22
33module Minfraud
44 # The Gem version.
5- VERSION = '2.8 .0'
5+ VERSION = '2.9 .0'
66end
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
2424
2525 spec . add_dependency 'connection_pool' , '~> 2.2'
2626 spec . add_dependency 'http' , '>= 4.3' , '< 6.0'
27- spec . add_dependency 'maxmind-geoip2' , '~> 1.3 '
27+ spec . add_dependency 'maxmind-geoip2' , '~> 1.4 '
2828 spec . add_dependency 'simpleidn' , '~> 0.1' , '>= 0.1.1'
2929
3030 spec . add_development_dependency 'bundler' , '~> 2.2'
You can’t perform that action at this time.
0 commit comments