fhirsmith 0.7.4 → 0.7.5
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 +16 -0
- package/package.json +1 -1
- package/publisher/publisher.js +7 -6
- package/translations/Messages.properties +2 -0
- package/tx/cs/cs-country.js +804 -801
- package/tx/library.js +23 -2
- package/tx/tx.fhir.org.yml +3 -0
- package/tx/workers/validate.js +11 -6
- package/tx/workers/worker.js +2 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ 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.7.5] - 2026-03-19
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Support ignoring code systems when loading, and ban urn:iso:std:iso:3166#20210120 for tx.fhir.org
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Fix handling of user defined codes for country codes
|
|
17
|
+
- Fix version bug when loading supplements
|
|
18
|
+
- FHIRsmith passed all 1460 HL7 terminology service tests (modes tx.fhir.org+omop+general+snomed, tests v1.9.1-SNAPSHOT, runner v6.9.0)
|
|
19
|
+
|
|
20
|
+
### Tx Conformance Statement
|
|
21
|
+
|
|
22
|
+
FHIRsmith passed all 1452 HL7 terminology service tests (modes tx.fhir.org+omop+general+snomed, tests v1.9.1-SNAPSHOT, runner v6.9.0)
|
|
23
|
+
|
|
8
24
|
## [v0.7.4] - 2026-03-19
|
|
9
25
|
|
|
10
26
|
### Changed
|
package/package.json
CHANGED
package/publisher/publisher.js
CHANGED
|
@@ -466,6 +466,13 @@ class PublisherModule {
|
|
|
466
466
|
// Step 1: Create/scrub task directory
|
|
467
467
|
await this.createTaskDirectory(taskDir);
|
|
468
468
|
|
|
469
|
+
// Record the log file path and local folder immediately so they're accessible
|
|
470
|
+
// even if the build fails later
|
|
471
|
+
await this.updateTaskStatus(task.id, task.status, {
|
|
472
|
+
build_output_path: logFile,
|
|
473
|
+
local_folder: taskDir
|
|
474
|
+
});
|
|
475
|
+
|
|
469
476
|
// Step 2: Download latest publisher
|
|
470
477
|
const publisherJar = await this.downloadPublisher(taskDir, task.id);
|
|
471
478
|
|
|
@@ -478,12 +485,6 @@ class PublisherModule {
|
|
|
478
485
|
// Step 5: Verify package-id and version match the task
|
|
479
486
|
await this.verifyBuildOutput(task, draftDir);
|
|
480
487
|
|
|
481
|
-
// Update task with build output path
|
|
482
|
-
await this.updateTaskStatus(task.id, task.status, {
|
|
483
|
-
build_output_path: logFile,
|
|
484
|
-
local_folder: taskDir
|
|
485
|
-
});
|
|
486
|
-
|
|
487
488
|
this.logger.info('Draft build completed for ' + task.npm_package_id + '#' + task.version);
|
|
488
489
|
}
|
|
489
490
|
|
|
@@ -205,6 +205,8 @@ Differential_walks_into____but_the_base_does_not_and_there_is_not_a_single_fixed
|
|
|
205
205
|
Discriminator__is_based_on_element_existence_but_slice__neither_sets_min1_or_max0 = Discriminator ({0}) is based on element existence, but slice {1} neither sets min>=1 or max=0
|
|
206
206
|
Discriminator__is_based_on_type_but_slice__in__has_no_types = Discriminator ({0}) is based on type, but slice {1} in {2} has no types
|
|
207
207
|
DISCRIMINATOR_BAD_PATH = Error processing path expression for discriminator: {0} (src = ''{1}'')
|
|
208
|
+
Display_Name_Not_Fixed_use_Supplement_one = The display name ''{4}'' is not a known display name for {1}#{2}. Known display is {3} (for the language(s) ''{5}''). Use a supplement to define displays for user assigned codes
|
|
209
|
+
Display_Name_Not_Fixed_use_Supplement_other = The display name ''{4}'' is not a known display name for {1}#{2}. Known displays are {3} (for the language(s) ''{5}''). Use a supplement to define displays for user assigned codes
|
|
208
210
|
Display_Name_for__should_be_one_of__instead_of_one = Wrong Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')
|
|
209
211
|
Display_Name_for__should_be_one_of__instead_of_other = Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')
|
|
210
212
|
Display_Name_WS_for__should_be_one_of__instead_of_one = Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')
|