Skip to content

Commit 06ccb04

Browse files
committed
Merge branch 'release/5.1.1'
2 parents aa10dd2 + ee495a2 commit 06ccb04

File tree

4 files changed

+7
-20
lines changed

4 files changed

+7
-20
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased](https://github.com/dermatologist/fhiry/tree/HEAD)
44

5-
[Full Changelog](https://github.com/dermatologist/fhiry/compare/5.0.0...HEAD)
5+
[Full Changelog](https://github.com/dermatologist/fhiry/compare/v5.1.0...HEAD)
66

77
**Implemented enhancements:**
88

@@ -39,6 +39,10 @@
3939
- add utf-8 encoding [\#134](https://github.com/dermatologist/fhiry/pull/134) ([fhirfly](https://github.com/fhirfly))
4040
- Feature/fix-warnings-1 [\#113](https://github.com/dermatologist/fhiry/pull/113) ([dermatologist](https://github.com/dermatologist))
4141

42+
## [v5.1.0](https://github.com/dermatologist/fhiry/tree/v5.1.0) (2025-08-15)
43+
44+
[Full Changelog](https://github.com/dermatologist/fhiry/compare/5.0.0...v5.1.0)
45+
4246
## [5.0.0](https://github.com/dermatologist/fhiry/tree/5.0.0) (2025-06-15)
4347

4448
[Full Changelog](https://github.com/dermatologist/fhiry/compare/4.2.1...5.0.0)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# 🔥 fhiry — FHIR to Pandas DataFrame for Data Analytics, AI, and ML
22

33
[![Release](https://img.shields.io/github/v/release/dermatologist/fhiry)](https://img.shields.io/github/v/release/dermatologist/fhiry)
4-
[![Build status](https://img.shields.io/github/actions/workflow/status/dermatologist/fhiry/main.yml?branch=main)](https://github.com/dermatologist/fhiry/actions/workflows/main.yml?query=branch%3Amain)
5-
[![codecov](https://codecov.io/gh/dermatologist/fhiry/branch/main/graph/badge.svg)](https://codecov.io/gh/dermatologist/fhiry)
4+
[![Build status](https://img.shields.io/github/actions/workflow/status/dermatologist/fhiry/pytest.yml?branch=develop)](https://github.com/dermatologist/fhiry/actions/workflows/pytest.yml?query=branch%3Adevelop)
5+
[![codecov](https://codecov.io/gh/dermatologist/fhiry/branch/master/graph/badge.svg)](https://codecov.io/gh/dermatologist/fhiry)
66
[![Commit activity](https://img.shields.io/github/commit-activity/m/dermatologist/fhiry)](https://img.shields.io/github/commit-activity/m/dermatologist/fhiry)
77
[![License](https://img.shields.io/github/license/dermatologist/fhiry)](https://img.shields.io/github/license/dermatologist/fhiry)
88
[![Downloads](https://img.shields.io/pypi/dm/fhiry)](https://pypi.org/project/fhiry)

src/fhiry/base_fhiry.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ def delete_unwanted_cols(self):
107107
if len(self.config["REMOVE"]) == 0:
108108
logger.warning("No columns to remove defined in config")
109109
return
110-
logger.info("Removing columns: {}".format(self.config["REMOVE"]))
111110
for col in self.config["REMOVE"]:
112111
cols_to_remove = [
113112
c for c in self._df.columns if c == col or c.startswith(f"{col}.")

src/fhiry/main.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -53,22 +53,6 @@ def cli(
5353
query,
5454
config_file,
5555
):
56-
"""Process FHIR data from folder or server and output a dataframe.
57-
58-
This command can either read FHIR Bundles/NDJSON from a local folder or
59-
perform a FHIR search against a server, then optionally flatten resources
60-
and write to CSV/XLSX/Parquet.
61-
62-
Args:
63-
input_path (str | None): Path to a folder with FHIR files.
64-
output_path (str | None): Destination file path for dataframe output.
65-
flatten (bool): Whether to add a flattened text column for resources.
66-
url (str | None): FHIR server base URL for search.
67-
search_type (str | None): Resource type to search when using --url.
68-
resource_types (str | None): CSV string of resource types to filter.
69-
query (str | None): JSON string of search parameters for the server.
70-
config_file (str | None): Path to config JSON file for column transforms.
71-
"""
7256
if url:
7357
from fhiry.fhirsearch import Fhirsearch
7458

0 commit comments

Comments
 (0)