minfraud 2.7.0.beta1 → 2.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48d0ecc771382609286c6c96297b5c452163d99f8657a176bdaa3c25344b7667
4
- data.tar.gz: bbb364d67a5172f3e1134833acb3835e4de6582eb079341f727963b058fe2df0
3
+ metadata.gz: 94219dcd7ef78fdea77b06565b3a73ff8073ea56755f2a9ab25a0d4ba97eb692
4
+ data.tar.gz: a7e3cfa6b732da9f5d23877b4abef0cb7e7641ed30d690af2fc141ee6298cec8
5
5
  SHA512:
6
- metadata.gz: c66d6b084f94957a376636a4ff90ab961e5632f67e1950019dc0acf424cd9c86c8db67cbcea99aae05bfc052cd37c7e08bdc3cbde6fc4099f23009387cc611a8
7
- data.tar.gz: f5a425d99063ca41b1ff4aba8c72f881abd08a35fbbd6d13606f31f8080964d94dc678cf6d03292c1150fcab7e67ef62ae2b05ee7b6d56a39df82a44201f966e
6
+ metadata.gz: d79f083900533abbe2fc0d82b5c67d91c8bf81cee4ac95ef37c42c40eb50cf8f1bd1642acc6b80fdc50234f1cded773f47a62548fa0d360bab92c5fcd6b3cbb5
7
+ data.tar.gz: 5d868acf7b455dd212b8481e0c31e1cc9156e5c39a38ddf38d9d230b2344250fbae51551aec91556e532a601f2e51e4424e8c2b02eca024e84b4b23a600f0c2b
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.7
2
+ TargetRubyVersion: '3.0'
3
3
  NewCops: enable
4
4
 
5
5
  # Metrics.
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## v2.7.1 (2025-02-10)
4
+
5
+ * Re-release due to bug in release workflow.
6
+
7
+ ## v2.7.0 (2025-02-10)
8
+
9
+ * The minFraud Factors subscores have been deprecated. They will be removed
10
+ in March 2025. Please see [our release notes](https://dev.maxmind.com/minfraud/release-notes/2024/#deprecation-of-risk-factor-scoressubscores)
11
+ for more information.
12
+ * Ruby 3.0+ is now required. If you're using Ruby 2.7, please use version
13
+ 2.7.0.beta1 or 2.6.0 of this gem.
14
+ * Added the processor `:epayco` to `Minfraud::Components::Payment`.
15
+
3
16
  ## v2.7.0.beta1 (2024-09-06)
4
17
 
5
18
  * Added support for the new risk reasons outputs in minFraud Factors. The risk
data/LICENSE.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  The MIT License (MIT)
2
2
 
3
3
  Copyright (c) 2016-2020 kushnir.yb
4
- Copyright (c) 2020-2024 MaxMind, Inc.
4
+ Copyright (c) 2020-2025 MaxMind, Inc.
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -275,7 +275,7 @@ to the client API, please see
275
275
 
276
276
  ## Requirements
277
277
 
278
- This gem works with Ruby 2.7 and above.
278
+ This gem works with Ruby 3.0 and above.
279
279
 
280
280
  ## Contributing
281
281
 
@@ -293,7 +293,7 @@ This API uses [Semantic Versioning](https://semver.org/).
293
293
 
294
294
  Copyright (c) 2016-2020 kushnir.yb.
295
295
 
296
- Copyright (c) 2020-2024 MaxMind, Inc.
296
+ Copyright (c) 2020-2025 MaxMind, Inc.
297
297
 
298
298
  The gem is available as open source under the terms of the [MIT
299
299
  License](https://opensource.org/licenses/MIT).
@@ -68,6 +68,7 @@ module Minfraud
68
68
  elavon
69
69
  emerchantpay
70
70
  epay
71
+ epayco
71
72
  eprocessing_network
72
73
  epx
73
74
  eway
@@ -21,6 +21,7 @@ module Minfraud
21
21
  # that are used to calculate the overall risk score.
22
22
  #
23
23
  # @return [Minfraud::Model::Subscores]
24
+ # @deprecated Use {::risk_score_reasons} instead.
24
25
  attr_reader :subscores
25
26
 
26
27
  # @!visibility private
@@ -5,6 +5,8 @@ require 'minfraud/model/abstract'
5
5
  module Minfraud
6
6
  module Model
7
7
  # Score for risk factors that are used in calculating the riskScore.
8
+ #
9
+ # @deprecated Use {RiskScoreReason} instead.
8
10
  class Subscores < Abstract
9
11
  # The risk associated with the AVS result. If present, this is a value in
10
12
  # the range 0.01 to 99.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Minfraud
4
4
  # The Gem version.
5
- VERSION = '2.7.0.beta1'
5
+ VERSION = '2.7.1'
6
6
  end
data/minfraud.gemspec CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.homepage = 'https://github.com/maxmind/minfraud-api-ruby'
16
16
  spec.license = 'MIT'
17
17
 
18
- spec.required_ruby_version = '>= 2.7.0'
18
+ spec.required_ruby_version = '>= 3.0'
19
19
 
20
20
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^.gitignore$|^(?:\.github|dev-bin|spec)/}) }
21
21
  spec.bindir = 'exe'
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minfraud
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.0.beta1
4
+ version: 2.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - kushnir.yb
8
8
  - William Storey
9
- autorequire:
10
9
  bindir: exe
11
10
  cert_chain: []
12
- date: 2024-09-06 00:00:00.000000000 Z
11
+ date: 2025-02-10 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: connection_pool
@@ -149,7 +148,6 @@ dependencies:
149
148
  - - "~>"
150
149
  - !ruby/object:Gem::Version
151
150
  version: '3.14'
152
- description:
153
151
  email:
154
152
  - support@maxmind.com
155
153
  executables: []
@@ -221,7 +219,6 @@ licenses:
221
219
  - MIT
222
220
  metadata:
223
221
  rubygems_mfa_required: 'true'
224
- post_install_message:
225
222
  rdoc_options: []
226
223
  require_paths:
227
224
  - lib
@@ -229,15 +226,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
229
226
  requirements:
230
227
  - - ">="
231
228
  - !ruby/object:Gem::Version
232
- version: 2.7.0
229
+ version: '3.0'
233
230
  required_rubygems_version: !ruby/object:Gem::Requirement
234
231
  requirements:
235
232
  - - ">="
236
233
  - !ruby/object:Gem::Version
237
234
  version: '0'
238
235
  requirements: []
239
- rubygems_version: 3.5.16
240
- signing_key:
236
+ rubygems_version: 3.6.2
241
237
  specification_version: 4
242
238
  summary: Ruby API for the minFraud Score, Insights, Factors, and Report Transactions
243
239
  services