fhirsmith 0.8.2 → 0.8.4

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
@@ -5,6 +5,47 @@ All notable changes to the Health Intersections Node Server will be documented i
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+
9
+
10
+ ## [v0.8.4] - 2026-04-01
11
+
12
+ ### Added
13
+
14
+ - add .npmrc to defend against supply chain attacks
15
+
16
+ ### Changed
17
+
18
+ - Rework extension handling to make sure uzbek loinc works - load supplements from store
19
+
20
+ ### Fixed
21
+
22
+ - tx/expand: fix for bug where filter array is present but empty
23
+ - tx/SCT: support filters generalizes and child-of
24
+ - tx/SCT: fix bug evaluating property filters
25
+ - Fix version conversion issues
26
+
27
+ ### Tx Conformance Statement
28
+
29
+ FHIRsmith passed all 1497 HL7 terminology service tests (modes tx.fhir.org+omop+general+snomed, tests v1.9.1, runner v6.9.4)
30
+
31
+ ## [v0.8.3] - 2026-03-31
32
+
33
+ ### Changed
34
+
35
+ - More dashboard improvements
36
+ - Packages: Allow javascript in the pubpack
37
+ - Publisher: Show username on publisher page
38
+ - Publisher: Allow non-admin users to delete non-approved tasks
39
+
40
+ ### Fixed
41
+
42
+ - Publisher: fix task logging
43
+ - SHL: path fixes
44
+
45
+ ### Tx Conformance Statement
46
+
47
+ FHIRsmith passed all 1497 HL7 terminology service tests (modes tx.fhir.org+omop+general+snomed, tests v1.9.1, runner v6.9.4)
48
+
8
49
  ## [v0.8.2] - 2026-03-29
9
50
 
10
51
  ### Added
package/README.md CHANGED
@@ -5,16 +5,16 @@ This server provides a set of server-side services that are useful for the FHIR
5
5
  ## Modules useful to anyone in the community
6
6
 
7
7
  * (Coming) R4/R6 interconverter
8
- * [tx.fhir.org](tx/README.md) server
9
- * [SHL Server](shl/readme.md) - SHL/VHL support services
8
+ * [terminology](tx/README.md) server (as running on [tx.fhir.org](http://tx.fhir.org/r4))
9
+ * [SHL Server](shl/readme.md) - SHL/VHL support services (running on [healthintersections.com.au](http://www.healthintersections.com.au), supporting the ICVP demo and and the Patient Document Generator)
10
10
 
11
11
  ## Services useful the community as a whole
12
12
 
13
13
  * [TX Registry](registry/readme.md) - **Terminology System Registry** as [described by the terminology ecosystem specification](https://build.fhir.org/ig/HL7/fhir-tx-ecosystem-ig) (as running at http://tx.fhir.org/tx-reg)
14
14
  * [Package server](packages/readme.md) - **NPM-style FHIR package registry** with search, versioning, and downloads, consistent with the FHIR NPM Specification (as running at http://packages2.fhir.org/packages)
15
15
  * [XIG server](xig/readme.md) - **Comprehensive FHIR IG analytics** with resource breakdowns by version, authority, and realm (as running at http://packages2.fhir.org/packages)
16
- * [Publisher](publisher/readme.md) - FHIR publishing services (coming)
17
- * [VCL](vcl/readme.md) - **Parse VCL expressions** into FHIR ValueSet resources for http://fhir.org/vcl
16
+ * [Publisher](publisher/readme.md) - FHIR publishing services (as running at [healthintersections.com.au](http://www.healthintersections.com.au/publisher))
17
+ * [VCL](vcl/readme.md) - **Parse VCL expressions** into FHIR ValueSet resources (as running at http://fhir.org/vcl)
18
18
  * (Coming) Token services
19
19
 
20
20
  ## Summary Statement
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fhirsmith",
3
- "version": "0.8.2",
3
+ "version": "0.8.4",
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": {
@@ -555,7 +555,7 @@ class PackageCrawler {
555
555
  if (npmPackage.hasInstallScripts) {
556
556
  throw new Error(`Package ${idver} rejected: contains install scripts (preinstall/install/postinstall)`);
557
557
  }
558
- if (npmPackage.hasJavaScript && !isTemplate) {
558
+ if (npmPackage.hasJavaScript && !isTemplate && id !== 'hl7.fhir.pubpack') {
559
559
  throw new Error(`Package ${idver} rejected: contains JavaScript files but is not a template package`);
560
560
  }
561
561