Recent Releases of https://github.com/cdcgov/recordlinker

https://github.com/cdcgov/recordlinker - v25.10.0

What's Changed

  • add initial algorithms with log-odds set to 0.0 by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/460
  • make alembic pyproject.toml lookup dynamic by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/466
  • Add robustness error processing by @bamader in https://github.com/CDCgov/RecordLinker/pull/467
  • changing tuning match queries to return iterators by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/465
  • fix tuning job timeout by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/470
  • auto migrate by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/472
  • proc calc with iterators by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/469
  • tuning site docs by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/473

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.9.0...v25.10.0

- Python
Published by github-actions[bot] 11 months ago

https://github.com/cdcgov/recordlinker - v25.9.0

What's Changed

  • Add additional load test options by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/436
  • bugfix: record parsing issues with empty strings and null values by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/441
  • Update docker image by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/443
  • python 3.13 upgrade by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/452
  • design explanations by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/451
  • database migrations by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/457
  • Fix locust testing file by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/458
  • fix check unit tests to alternate databases by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/461

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.8.0...v25.9.0

- Python
Published by github-actions[bot] 11 months ago

https://github.com/cdcgov/recordlinker - v25.8.0

Summary

v25.8.0 focused on expanding our algorithm testing suite and performance upgrades to the database queries.

  • The expansion of the algorithm test suite, vastly improved upon our algorithm performance metrics, mostly through the addition of more meaningful tests along with larger person cluster sizes. See the README for more information on the different algorithm tests provided.
  • When testing the /api/link endpoint using a large database (~1 million person clusters) significant performance issues we're measured. By reworking an existing index, we were able to improve performance by ~25x. Our new indices, now allow us to run /api/link requests on a database with 1 million person clusters, just as fast as an empty database.

Bugfixes

  • bugfix: delete patient with keys by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/418
    • previously using the DELETE /api/patient/{patient_reference_id} would raise a 500 if the patient record in question had blocking values associated with it. This has been fixed.

What's Changed

  • minor installation doc changes by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/361
  • Expand and scramble test cases by @bamader in https://github.com/CDCgov/RecordLinker/pull/364
  • remove context from results in algorithm list by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/369
  • customizing site docs theme by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/374
  • reorganize site docs by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/375
  • Add initial locustfile for load testing by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/380
  • enhanced smoke test and example usage by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/378
  • Upgrade testing framework by @bamader in https://github.com/CDCgov/RecordLinker/pull/385
  • Add scrambler for load testing by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/384
  • add workflow to trigger deploy to demo environment by @alismx in https://github.com/CDCgov/RecordLinker/pull/390
  • Implement incremental json loading by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/389
  • caching default algo fixture by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/414
  • updates to locustfile by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/394
  • small updates to trigger demo workflow by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/391
  • adding indicies to improve blocking by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/421
  • use not exists for orphaned persons query by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/419
  • type check and automation cleanup by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/420

New Contributors

  • @alismx made their first contribution in https://github.com/CDCgov/RecordLinker/pull/390

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.7.0...v25.8.0

- Python
Published by github-actions[bot] 12 months ago

https://github.com/cdcgov/recordlinker - v25.7.0

Summary

v25.7.0 focuses on removing kwargs. Compared to the previous release, v25.6.0, this version's removal of "kwargs" has had no noticeable changes in performance or results. The major changes to highlight were: - The kwargs field has been removed from the algorithm configuration. All necessary parameters are now explicitly defined (e.g., logodds, fuzzymatchmeasure, fuzzymatch_threshold). See the API documentation for full details. - Linkage results now include a mapping of the evaluated features to the median log-odds points they contributed. This provides greater transparency into which features most influenced the scoring process.

What's Changed

  • schema.AlgorithmContext by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/330
  • fixes for the performance scripts by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/340
  • Add stats calculations and results display by @bamader in https://github.com/CDCgov/RecordLinker/pull/342
  • Handle suffix during evaluation by @bamader in https://github.com/CDCgov/RecordLinker/pull/346
  • adding ghcr.io vulnerability scan job by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/345
  • Algorithm context advanced section by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/334
  • kwargs cleanup by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/350
  • Add feature medians by @bamader in https://github.com/CDCgov/RecordLinker/pull/355
  • add postman collection and README by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/358
  • Fix bug in scripts/genseeddata.py by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/360

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.6.0...v25.7.0

- Python
Published by github-actions[bot] about 1 year ago

https://github.com/cdcgov/recordlinker - v25.6.0

Summary

v25.6.0 focuses on adding skip values. Compared to the previous release, v25.5.0, this version's addition of skip values has: - Made the algorithm more conservative and more able to filter out non-matching data, which can enhance match confidence - Surfaced that name fields are particularly important to DIBBs algorithm—conducting some follow-up research to examine this effect - One experiment shows early promise in adding a third pass that splits up first and last name, but it’s on synthetic data - We don’t want to over-index or jump to conclusions too early, because it’s unlikely that Montana’s data looks precisely like this synthetic information

What's Changed

  • named routes by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/277
  • Use schemas.Algorithm for linking by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/321
  • Add suffix normalization by @bamader in https://github.com/CDCgov/RecordLinker/pull/322
  • process skip values by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/291
  • Prepend during blocking by @bamader in https://github.com/CDCgov/RecordLinker/pull/327
  • configurable API root path by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/320
  • remove models.AlgorithmPass by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/326
  • Define default skip values, update test data by @bamader in https://github.com/CDCgov/RecordLinker/pull/338

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.5.0...v25.6.0

- Python
Published by github-actions[bot] about 1 year ago

https://github.com/cdcgov/recordlinker - v25.5.0

Summary

v25.5.0 focuses on replacing the belongingness ratio score with a relative match score. Compared to the previous release, v25.4.0, this version achieves the same quality and performance as the previous version. Before upgrading, you should reset your database schema.

What's Changed

  • remove Patient.record circular dependency by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/270
  • Add AlgorithmPass label and description fields by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/272
  • RFC-003: skip values by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/218
  • dynamic next urls for patient/person routers by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/276
  • Feature/223 simplify function calls by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/275
  • Update regex to match default labels by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/284
  • Implement RMS by @bamader in https://github.com/CDCgov/RecordLinker/pull/229
  • bugfix for null values by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/282
  • NAME feature by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/279
  • adding skip values to algorithm by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/280

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.4.0...v25.5.0

- Python
Published by github-actions[bot] about 1 year ago

https://github.com/cdcgov/recordlinker - v25.4.0

Summary

v25.4.0 is a performance-focused update aimed at enhancing linkage through field normalization and improved handling of records with missing values. Compared to the previous release, v25.3.0, this version achieves an 18% (15 tests) increase in correctly matched NBS algorithm test cases. In terms of speed, performance remains consistent with the prior build. A speed test linking 200 person clusters with 764 records averaged 67.11s, compared to 66.70s in the previous version.

What's Changed

  • Add state normalization as part of PIIRecord construction by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/240
  • Add ER diagram title and description by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/241
  • Normalize strings for comparison by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/247
  • Handle missing values in blocked MPI records by @bamader in https://github.com/CDCgov/RecordLinker/pull/242
  • removing the unused SIMPLE_LINK parameter by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/252
  • upgrade tj-actions/changed-files by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/256
  • Parse and validate two-digit dates by @bamader in https://github.com/CDCgov/RecordLinker/pull/245
  • allowing multiple race values by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/253
  • Add caching of RecordLinker image to smoke tests by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/261
  • Handle missing fields during evaluation by @bamader in https://github.com/CDCgov/RecordLinker/pull/259
  • Fix caching for services during smoke tests by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/262
  • missing blocking keys by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/254
  • address line suffix normalize by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/258
  • normalize telecom model_validator by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/269

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.3.0...v25.4.0

- Python
Published by github-actions[bot] about 1 year ago

https://github.com/cdcgov/recordlinker - v25.3.0

Breaking Changes

The deprecated endpoints POST /patient/<patient_reference_id>/person and PATCH /patient/<patient_reference_id>/person have been removed. Please use their replacements added in v25.2.0 going forward.

  • removes deprecated API endpoints by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/220

The IDENTIFIER blocking key has updated its format to exclude authority data. This results in a new value of {value[-4:]}:{type} for all new IDENTIFIER blocking keys. We recommend resetting your database before upgrading to this release.

  • Removed first 2 chars of authority from IDENTIFIER blocking key by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/227

What's Changed

  • Add endpoint for deleting orphaned persons by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/221
  • Add Endpoint for getting orphaned patients by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/222
  • minor updates to README by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/228
  • Add endpoint to return orphaned persons by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/225

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.2.0...v25.3.0

- Python
Published by github-actions[bot] over 1 year ago

https://github.com/cdcgov/recordlinker - v25.2.0

Breaking Changes

The dibbs-basic algorithm and all non-probabilistic matching functions have been removed from the codebase. Before upgrading to this release, you should truncate your algorithm and algorithm_pass tables to allow for the new default algorithms to load. * Remove the remnants of dibbs basic by @bamader in https://github.com/CDCgov/RecordLinker/pull/214

Deprecations

The existing /patient/<id>/person API endpoints have been deprecated and are scheduled to be removed in v25.3.0. Please see the API documentation for replacement endpoint information. * person cluster patient assignment endpoints by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/172

What's Changed

  • Slight tweaks to README for Windows set up & redoc typo by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/189
  • Patient Details Endpoints by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/174
  • new local scheme of dirty-tag for developer installation by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/191
  • Build msodbc drivers into arm64 images by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/190
  • correct 508 issues on site docs by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/194
  • Add BlockingKey descriptions to openapi.json by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/188
  • adding documentation about patient/person identifiers by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/197
  • Appropriately handle race unknown by @bamader in https://github.com/CDCgov/RecordLinker/pull/196
  • Reverse identifiers for comparisons by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/211
  • Create function for probabilistic exact match by @bamader in https://github.com/CDCgov/RecordLinker/pull/209
  • compare the entire GIVEN_NAME by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/210
  • patient / person API endpoints for retrieving data by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/206
  • Add API endpoint for merging person clusters by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/203
  • add custom api docs template to address a11y issues by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/216

New Contributors

  • @bamader made their first contribution in https://github.com/CDCgov/RecordLinker/pull/196

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.1.2...v25.2.0

- Python
Published by github-actions[bot] over 1 year ago

https://github.com/cdcgov/recordlinker - v25.1.2

What's Changed

  • removing Sex.UNKNOWN [Executive Order 14168] by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/186

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.1.1...v25.1.2

- Python
Published by github-actions[bot] over 1 year ago

https://github.com/cdcgov/recordlinker - v25.1.1

What's Changed

  • fix: release draft variable by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/181
  • Update README with note about running on Windows by @m-goggins in https://github.com/CDCgov/RecordLinker/pull/183
  • Remove Gender matching Feature [Executive Order 14168] by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/185

New Contributors

  • @m-goggins made their first contribution in https://github.com/CDCgov/RecordLinker/pull/183

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v25.1.0...v25.1.1

- Python
Published by github-actions[bot] over 1 year ago

https://github.com/cdcgov/recordlinker - v25.1.0

What's Changed

  • adding Features and Blocking Keys for phone and email by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/148
  • Multiple address lines in algorithm tests by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/153
  • upgrade python-json-logger to 3.X by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/156
  • unit test cleanup by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/165
  • slack notification after release by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/166
  • docs(link): rfc-002 by @alhayward in https://github.com/CDCgov/RecordLinker/pull/164
  • /match endpoints by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/167
  • fix msodbcsql installation by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/171
  • ID Triplet Feature by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/146
  • Adding the DIBBs engineers as codeowners by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/173
  • fix: docker builds with libodbc by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/179

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v24.3.2...v25.1.0

- Python
Published by github-actions[bot] over 1 year ago

https://github.com/cdcgov/recordlinker - v24.3.2

What's Changed

  • Fix: adding DB_URI var when building docs in release by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/151

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v24.3.1...v24.3.2

- Python
Published by ericbuckley over 1 year ago

https://github.com/cdcgov/recordlinker - v24.3.2

What's Changed

  • Fix: adding DB_URI var when building docs in release by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/151
  • Fix: pin pythonjsonlogger to 2.X.X by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/151
  • NBS Test Cases by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/123
  • bootstrap script by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/145

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v24.3.1...v24.3.2

- Python
Published by github-actions[bot] over 1 year ago

https://github.com/cdcgov/recordlinker - v24.3.0

What's Changed

  • Ability to delete a Patient record by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/141
  • style(matchers): rename matchers funcs for clarity by @alhayward in https://github.com/CDCgov/RecordLinker/pull/137
  • add logging to linkage process and consolidate FHIR link routes by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/135
  • Identifier Triplets RFC-001 by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/125

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v24.2.1...v24.3.0

- Python
Published by github-actions[bot] over 1 year ago

https://github.com/cdcgov/recordlinker - v24.2.1

What's Changed

  • bugfix: bulk insert serialization of data by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/136

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v24.2.0...v24.2.1

- Python
Published by github-actions[bot] over 1 year ago

https://github.com/cdcgov/recordlinker - v24.2.0

What's Changed

  • fix(linking): fetch all Person records when calculating Belongingness… by @alhayward in https://github.com/CDCgov/RecordLinker/pull/97
  • Create New Parsers Framework by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/102
  • splunk hec logs by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/107
  • site documentation by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/105
  • Drivers License Feature by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/113
  • fix release job by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/114
  • publish site docs by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/115
  • fix assets/ installation by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/121
  • fixes to reference.md by @eileenruberto in https://github.com/CDCgov/RecordLinker/pull/120
  • Dockerfile Smoke Tests by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/116
  • seed API by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/124
  • reorganizing services modules by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/127
  • feat(linking): implement possible match short-term by @alhayward in https://github.com/CDCgov/RecordLinker/pull/111
  • Add additional type checks when editing an Algorithm by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/126
  • fix misleading matcher names by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/134

New Contributors

  • @eileenruberto made their first contribution in https://github.com/CDCgov/RecordLinker/pull/120

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v24.1.0...v24.2.0

- Python
Published by github-actions[bot] over 1 year ago

https://github.com/cdcgov/recordlinker - v24.1.0

What's Changed

  • [deps] Bump python-dateutil from 2.9.0 to 2.9.0.post0 by @dependabot in https://github.com/CDCgov/RecordLinker/pull/53
  • Add Address feature for comparisons by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/61
  • Feat/algo config api update by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/54
  • updating link-record endpoint to use either schema by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/66
  • RL-32 Publish test results and coverage to main README by @derekadombek in https://github.com/CDCgov/RecordLinker/pull/71
  • remove old schema and code by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/68
  • Adding MPI design document by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/73
  • RL-56 MyPy Github Action and script for type checks by @derekadombek in https://github.com/CDCgov/RecordLinker/pull/70
  • Update to use algo object by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/72
  • adding titles to the PR slack notifications by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/74
  • Optimizing initialization of evaluators and rule by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/77
  • project structure cleanup by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/69
  • CI workflow to post open PRs to slack by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/78
  • New Link API Endpoint by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/79
  • fix slack notifier open pulls by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/86
  • interfaces for configuring algorithms by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/82
  • Auto initialize algorithms in DB by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/89
  • auto releases by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/87
  • Multi database CI tests by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/92
  • structured logging by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/93
  • Bugfix for a ARG typo in the Dockerfile by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/98
  • add setting.dbtableprefix variable by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/100
  • publishing docker images to ghcr.io on release by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/94
  • Expand Feature Comparison Support by @cbrinson-rise8 in https://github.com/CDCgov/RecordLinker/pull/88
  • endpoints to update person cluster on patient by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/101
  • link router by @ericbuckley in https://github.com/CDCgov/RecordLinker/pull/99

New Contributors

  • @dependabot made their first contribution in https://github.com/CDCgov/RecordLinker/pull/53

Full Changelog: https://github.com/CDCgov/RecordLinker/compare/v24.0.0...v24.1.0

- Python
Published by ericbuckley over 1 year ago