Skip to content

GoldenMatch

vgoldenpipe-v1.2.0 scope: goldenpipe Feature

This release adds 3 notable features for engineering teams evaluating rollout.

Published 2mo Data Pipelines & ETL
✓ No known CVEs patched
Read the diff → Tool health → What is this tool? →

✓ No known CVEs patched in this version

Topics

data-cleaning data-engineering data-matching data-quality deduplication entity-resolution
+14 more
fellegi-sunter fuzzy-matching knowledge-graph llm master-data-management mcp-server polars pprl python record-linkage rust splink typescript zero-config

Summary

AI summary

Updates What's new, Tests 12 new, and https://claude.com/claude-code across a mixed release.

Full changelog

Suite orchestration for Identity Graph

GoldenPipe now orchestrates the v1.15 Identity Graph. One CLI / Python / Airflow path runs Check -> Flow -> Match -> Identity end-to-end and maintains a durable identity store with stable entity_ids across runs.

Quickstart

goldenpipe run customers.csv \
  --identity-path .goldenmatch/identity.db \
  --identity-source-pk customer_id \
  --identity-dataset customers
import goldenpipe as gp

result = gp.run(
    "customers.csv",
    identity_opts={
        "path": ".goldenmatch/identity.db",
        "source_pk_column": "customer_id",
        "dataset": "customers",
    },
)
print(result.artifacts["identity_summary"])

What's new

  • New stage goldenmatch.identity_resolve registered at the goldenpipe.stages entry-point. Wraps goldenmatch.identity.resolve_clusters.
  • CLI flags on goldenpipe run: --identity-path, --identity-dataset, --identity-source-pk, --identity-weak-threshold.
  • gp.run(source, identity_opts={...}) Python entry-point.
  • New Airflow DAG examples/airflow/golden_suite_identity_graph.py — daily Check→Flow→Match→Identity with S3-synced identity store.
  • Public docs at packages/python/goldenpipe/docs/identity-graph.md.
  • DedupeStage surfaces two new artifacts: scored_pairs and matchkey_used. Backwards-compatible.

Requires

goldenmatch >= 1.15.0. No other-package version bumps.

Tests

12 new (8 stage + 4 CLI). Full suite: 136 passing, 0 regressions.

🤖 Generated with Claude Code

Weekly OSS security release digest.

The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.

No spam, unsubscribe anytime.

Share this release

Track GoldenMatch

Get notified when new releases ship.

Sign up free

About GoldenMatch

All releases →

Related context

Related tools

Earlier breaking changes

  • v3.1.0 `GOLDENMATCH_FRAME=polars` now requires the `[polars]` extra; raises error without it.
  • vgoldencheck-v3.0.0 `inferred_type` emits neutral dtype vocabulary (str/int/uint/float/date/datetime/bool/other) instead of raw Polars dtypes.
  • vgoldencheck-v3.0.0 'inferred_type' now emits a neutral dtype vocabulary instead of raw Polars dtype strings.
  • vgoldencheck-v3.0.0 `scan_file`, `scan_dataframe`, and CLI `check` now run without Polars, using Arrow-native pyarrow.Table.
  • v3.0.0 Result frames now return pyarrow.Table instead of Polars DataFrame.

Beta — feedback welcome: [email protected]