fhirsmith 0.5.1 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -17,6 +17,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
 
18
18
  FHIRsmith 0.5.1 passed all 1288 HL7 terminology service tests (modes tx.fhir.org,omop,general,snomed, tests v1.9.1-SNAPSHOT, runner v6.8.0)
19
19
 
20
+ ## [v0.5.2] - 2026-02-20
21
+
22
+ ### Changed
23
+ - Fixed bad count reference in XIG
24
+
25
+ ### Tx Conformance Statement
26
+
27
+ FHIRsmith 0.5.2 passed all 1288 HL7 terminology service tests (modes tx.fhir.org,omop,general,snomed, tests v1.9.1-SNAPSHOT, runner v6.8.0)
28
+
20
29
  ## [v0.5.0] - 2026-02-19
21
30
 
22
31
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fhirsmith",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "A Node.js server that provides a collection of tools to serve the FHIR ecosystem",
5
5
  "main": "server.js",
6
6
  "engines": {
package/xig/xig.js CHANGED
@@ -2230,7 +2230,7 @@ router.get('/:packagePid/:resourceType/:resourceId', async (req, res) => {
2230
2230
  res.status(404).send('Not Found');
2231
2231
  }
2232
2232
  } finally {
2233
- this.stats.countRequest(':id', Date.now() - start);
2233
+ globalStats.countRequest(':id', Date.now() - start);
2234
2234
  }
2235
2235
  });
2236
2236