Skip to content

1.1.0

Compare
Choose a tag to compare
@cmoesel cmoesel released this 24 Apr 14:48
· 31 commits to master since this release

Version 1.1.0 introduces the following changes:

Optionally Disable File Cache

ensureValueSets and ensureValueSetsInLibrary now accept a caching argument that allows callers to disable caching value sets to a file. This option provides better support for client-side web applications.

For example:

codeService.ensureValueSetsInLibrary(library, true, 'myUMLSUserName', 'myUMLSPassword', false /*no caching*/)

Support URN and URL Identifiers

findValueSet, findValueSets, and findValueSetsByOid now all accept ids that are OIDs, URNs, or valid VSAC FHIR URLs. For example, all of the following are supported now:

valueset "Diabetes": '2.16.840.1.113883.3.464.1003.103.12.1001'

or

valueset "Diabetes": 'urn:oid:2.16.840.1.113883.3.464.1003.103.12.1001'

or

valueset "Diabetes": 'https://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.103.12.1001'

Previous versions only supported the first case (OID).

NOTE: The findValueSetsByOid function was kept for backwards-compatibility, but it now works exactly the same as the more appropriately named findValueSets function.