Skip to content

Commit d1ab7c9

Browse files
authored
Merge pull request #172 from maxmind/greg/eng-3326
Release 2.9.0
2 parents 19a0960 + 6e3d00f commit d1ab7c9

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
@@ -34,6 +34,8 @@
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

dev-bin/release.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
set -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+
513
changelog=$(cat CHANGELOG.md)
614

715
regex='

lib/minfraud/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
module Minfraud
44
# The Gem version.
5-
VERSION = '2.8.0'
5+
VERSION = '2.9.0'
66
end

minfraud.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)