fhirsmith 0.8.0 → 0.8.3

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
+ ## [v0.8.3] - 2026-03-31
9
+
10
+ ### Changed
11
+
12
+ - More dashboard improvements
13
+ - Packages: Allow javascript in the pubpack
14
+ - Publisher: Show username on publisher page
15
+ - Publisher: Allow non-admin users to delete non-approved tasks
16
+
17
+ ### Fixed
18
+
19
+ - Publisher: fix task logging
20
+ - SHL: path fixes
21
+
22
+ ### Tx Conformance Statement
23
+
24
+ FHIRsmith passed all 1497 HL7 terminology service tests (modes tx.fhir.org+omop+general+snomed, tests v1.9.1, runner v6.9.4)
25
+
26
+
27
+ ## [v0.8.2] - 2026-03-29
28
+
29
+ ### Added
30
+
31
+ - Support for implicit snomed concept maps
32
+
33
+ ### Changed
34
+
35
+ - Reverse the [interpretation of RxNorm [rel] and [rela] value sets](https://chat.fhir.org/#narrow/channel/179202-terminology/topic/Inverted.20query.20for.20RELA.20in.20using.20RxNorm.20page/with/582270767)
36
+ - Improve modifier extension message
37
+ -
38
+ ### Fixed
39
+
40
+ - fix missing files from npm package
41
+ - Add missing styles to dashboard
42
+ - $translate fixes: don't return duplicate matches, handle R4/R5 issues properly, fix missed comments and products
43
+ - fix handling force-value-set version parameter
44
+
45
+ ### Tx Conformance Statement
46
+
47
+ FHIRsmith passed all 1498 HL7 terminology service tests (modes tx.fhir.org+omop+general+snomed, tests v1.9.1, runner v6.9.4
48
+
8
49
  ## [v0.8.0] - 2026-03-27
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
- * [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)
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
@@ -43,6 +43,10 @@ There are 4 executable programs:
43
43
 
44
44
  Unless you're developing, you only need the first two
45
45
 
46
+ FHIRsmith is open source - see below, and you're welcome to use it for any kind of use. Note,
47
+ though, that if you support FHIRsmith commercially as part of a managed service or product, you
48
+ are required to be a Commercial Partner of HL7 - see (link to be provided).
49
+
46
50
  ### Quick Start
47
51
 
48
52
  * Install FHIRSmith (using docker, or an NPM release, or just get the code by git)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fhirsmith",
3
- "version": "0.8.0",
3
+ "version": "0.8.3",
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