Skip to content

Commit f5e880b

Browse files
authored
FHIR Release 4.0.51
1 parent e45bc8f commit f5e880b

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

articles/healthcare-apis/fhir/fhir-versioning-policy-and-history-management.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ History in FHIR is important for end users to see how a resource has changed ove
6666

6767
Changing the versioning policy either at a system level or resource level won't remove the existing history for any resources in your FHIR service. If you're looking to reduce the history data size in your FHIR service, you must use the [$purge-history](purge-history.md) operation.
6868

69+
> [!NOTE]
70+
> The query parameter _summary=count and _count=0 can be added to _history endpoint to get count of all versioned resources. This count includes soft deleted resources.
71+
6972
## Next steps
7073

7174
In this article, you learned how to purge the history for resources in the FHIR service. For more information about how to disable history and some concepts about history management, see

articles/healthcare-apis/fhir/import-data.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ The `import` operation supports two modes: initial mode and incremental mode. Ea
2727

2828
- Optimized for loading data into the FHIR server periodically and doesn't block writes through the API.
2929

30-
- Allows you to load `lastUpdated` and `versionId` from resource metadata if present in the resource JSON.
30+
- Allows you to load `lastUpdated` and `versionId` from resource metadata if present in the resource JSON.
31+
32+
- Allows you to load resources in non-sequential order of versions.
3133

3234
* If import files don't have the `version` and `lastUpdated` field values specified, there's no guarantee of importing resources in FHIR service.
3335

articles/healthcare-apis/fhir/overview-of-search.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,9 @@ FHIR specifies a set of search result parameters to help manage the information
137137
| `_containedType` | No | No |
138138
| `_score` | No | No |
139139

140-
> [!NOTE]
141-
> By default, `_sort` arranges records in ascending order. You can also use the prefix `-` to sort in descending order. The FHIR service only allows you to sort on a single field at a time.
140+
Note:
141+
1. By default, `_sort` arranges records in ascending order. You can also use the prefix `-` to sort in descending order. The FHIR service only allows you to sort on a single field at a time.
142+
1. FHIR service supports wild card searches with revinclude. Adding "*.*" query parameter in revinclude query, it will direct FHIR service to reference all the resources mapped to the source resource.
142143

143144
By default, the FHIR service in Azure Health Data Services is set to lenient handling. This means that the server will ignore any unknown or unsupported parameters. If you want to use strict handling, you can include the `Prefer` header and set `handling=strict`.
144145

articles/healthcare-apis/release-notes.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,26 @@ This article provides details about the features and enhancements made to Azure
2020
> [!IMPORTANT]
2121
> Azure Health Data Services is generally available. For more information, see the [Service Level Agreement (SLA) for Azure Health Data Services](https://azure.microsoft.com/support/legal/sla/health-data-services/v1_1/).
2222
23+
## February 2024
24+
25+
### FHIR service
26+
27+
**Import operation honors ingestion of non-sequential resource versions**
28+
29+
Prior to this change incremental mode in import operation assumed versions to be sequential integers. After this bug fix, versions can be ingested in non-sequential order. For more information, see [Import operation supports non-sequential version ordering for resources](https://github.com/microsoft/fhir-server/pull/3685).
30+
31+
**Revinclude search can reference all resources with wild character**
32+
33+
FHIR service supports wild card searches with revinclude. Adding "*.*" query parameter in revinclude query, it will direct FHIR service to reference all the resources mapped to the source resource.
34+
35+
**Improve FHIR queries response time with performance enhancements**
36+
37+
To improve performance. missing modifier can be specified for a search parameter that is used in sort. For more information, see [improve performance using missing modifier](https://github.com/microsoft/fhir-server/pull/3655)
38+
39+
**Enables counting all versions (historical and soft deleted) of resources**
40+
41+
The query parameter _summary=count and _count=0 can be added to _history endpoint to get count of all versioned resources. This count includes soft deleted resources.
42+
2343
## January 2024
2444

2545
### DICOM service

0 commit comments

Comments
 (0)