Skip to content
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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
CHANGELOG
=========

9.1.0 (unreleased)
------------------

* A new `residential` property has been added to the `anonymizer` object on
`IpAddress`. This contains residential proxy data for the network and is
available from the minFraud Insights and Factors web services only. It may
be populated even when no other `anonymizer` properties are set. The
`residential` object includes the following properties:
* `confidence`: A score (1-99) representing MaxMind's confidence that the
network is part of an actively used residential proxy
* `networkLastSeen`: The last day (YYYY-MM-DD) the network was sighted in
our analysis of residential proxies
* `providerName`: The name of the residential proxy provider associated
with the network

9.0.0 (2026-06-29)
------------------

Expand Down
7 changes: 6 additions & 1 deletion fixtures/insights.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@
"is_residential_proxy": false,
"is_tor_exit_node": true,
"network_last_seen": "2025-01-15",
"provider_name": "TestVPN"
"provider_name": "TestVPN",
"residential": {
"confidence": 82,
"network_last_seen": "2026-05-11",
"provider_name": "quickshift"
}
},
"city": {
"confidence": 25,
Expand Down
6 changes: 4 additions & 2 deletions lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
# Run locally with:
# lychee './**/*.md' './src/**/*.ts' './package.json'

# Include URL fragments in checks
include_fragments = true
# Check URL fragments in links. Lychee 0.24.0 replaced the boolean form with an
# enum (none/anchor-only/text-only/full); "full" checks both anchor fragments
# (e.g. `#section`) and text fragments (e.g. `#:~:text=example`).
include_fragments = "full"

# Don't allow any redirects, so links that have moved are surfaced and updated
# to their canonical destination.
Expand Down
67 changes: 39 additions & 28 deletions mise.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@
"prepublishOnly": "if [ -z \"$GITHUB_ACTIONS\" ]; then echo 'Manual publishing is disabled. Use ./dev-bin/release.sh instead.' && exit 1; fi"
},
"dependencies": {
"@maxmind/geoip2-node": "^7.0.0"
"@maxmind/geoip2-node": "^7.1.0"
}
}
5 changes: 5 additions & 0 deletions src/response/models/insights.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ describe('Insights()', () => {
isTorExitNode: true,
networkLastSeen: '2025-01-15',
providerName: 'TestVPN',
residential: {
confidence: 82,
networkLastSeen: '2026-05-11',
providerName: 'quickshift',
},
});
});

Expand Down
Loading