Skip to content

Releases: opensanctions/yente

v3.2.0

14 Feb 09:53
Compare
Choose a tag to compare

Note: this release includes a new version of scikit-learn, which required re-training the matching model; so the coefficients for the model are now different than before.

Mostly maintenance changes, although using the fingerprints will give better matches in particular for Russian company names.

What's Changed

Full Changelog: v3.1.3...v3.2.0

v3.1.2

31 Dec 07:45
Compare
Choose a tag to compare

This release includes numerous bug fixes related to the stability of the software, and fixes one backend issue with the matching API.

Full Changelog: https://github.com/opensanctions/yente/compare/v3.0.0..v3.1.2

v3.0.0

09 Dec 10:10
Compare
Choose a tag to compare

This release revamps the way we handle dataset metadata in yente in order to make it easier to load and update non-OpenSanctions datasets. It is a breaking change because it modifies the format of the manifest file (manifest.yml). If you're running yente with the default manifest file, the changes will not affect you.

Updating your manifest.yml

In order to update your custom manifest for yente 3.0.0, you need to change the external section into a catalogs section like this:

schedule: null
# old:
external:
  url: "https://data.opensanctions.org/datasets/latest/index.json"
  scope: all
# new:
catalogs:
  - url: "https://data.opensanctions.org/datasets/latest/index.json"
    scope: all
    resource_name: entities.ftm.json
datasets: []

The cool thing about this is that you can now add extra catalogs. Try putting in https://data.opensanctions.org/contrib/graph/catalog.json and it'll index a bunch of non-OpenSanctions data :)

What's Changed

Full Changelog: v2.2.1...v3.0.0

v2.2.0

03 Nov 09:53
Compare
Choose a tag to compare

This release includes an updated/improved entity matching model and will produce different scores than the previous release.

What's Changed

Full Changelog: v2.1.0...v2.2.0

yente 2.1.0

14 Oct 10:41
Compare
Choose a tag to compare

This release changes the way that redirects for merged entities are performed. This should lead to a smaller index size and faster indexing.

yente 2.0

14 Oct 10:40
Compare
Choose a tag to compare

Yente 2.0 removes the statement API (used only to power the web site) and simplifies the overall codebase. It also significantly improves the documentation of the request endpoints in the OpenAPI docs.

1.8.0 - Stability improvements

11 Jul 09:17
Compare
Choose a tag to compare

This release includes the following:

  • Stability improvements to the API and indexer, improving the performance and stability especially for large indexing jobs (30GB+).
  • Updated scoring model for the matching API, including new model features and better precision.
  • Updated data model (FollowTheMoney 3.0), with Address entities becoming first-class search targets.
  • Various dependency updates and performance improvements.