Skip to content

Commit ad7e71f

Browse files
Merge remote-tracking branch 'lhc-git/master' into feature/LF-2100/supplementary-weight-function
# Conflicts: # CHANGELOG.md # package-lock.json # package.json # src/fhirpath.js
2 parents 16ac94a + cbdcdbc commit ad7e71f

14 files changed

+214
-205
lines changed

CHANGELOG.md

+19-3
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,36 @@
33
This log documents significant changes for each release. This project follows
44
[Semantic Versioning](http://semver.org/).
55

6-
## [3.14.1] - 2024-05-21
6+
## [3.14.1] - 2024-07-02
77
### Fixed
88
- impossibility to use attribute name that starts with a capital letter.
99

10-
## [3.14.0] - 2024-05-09
10+
## [3.14.0] - 2024-07-02
1111
### Added
1212
- supplementary function `weight()` with alternative name `ordinal()`.
1313

14-
## [3.13.1] - 2024-04-24
14+
## [3.13.4] - 2024-06-13
15+
### Fixed
16+
- a bug that could cause the context input parameter containing environment
17+
variables to change.
18+
19+
## [3.13.3] - 2024-05-24
20+
### Changed
21+
- Added separate TypeScript type definition files for the main file and each
22+
supported model.
23+
24+
## [3.13.2] - 2024-05-15
1525
### Fixed
1626
- an issue with evaluating an expression for a resource passed through an
1727
environment variable.
1828
- an issue with "statusShift" during performance tests.
1929

30+
## [3.13.1] - 2024-04-25
31+
### Fixed
32+
- Added flag 'u' for regular expressions in the specification's `matches` and
33+
`replaceMatches` functions to support the use of unicode character class
34+
escapes.
35+
2036
## [3.13.0] - 2024-04-10
2137
### Added
2238
- Function `defineVariable(name: String [, expr: expression])`.

demo/package-lock.json

+26-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fhir-context/dstu2/index.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { Model } from "../../src/fhirpath";
2+
3+
export const {
4+
choiceTypePaths,
5+
pathsDefinedElsewhere,
6+
type2Parent,
7+
path2Type
8+
}: Model;

fhir-context/r4/index.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { Model } from "../../src/fhirpath";
2+
3+
export const {
4+
choiceTypePaths,
5+
pathsDefinedElsewhere,
6+
type2Parent,
7+
path2Type
8+
}: Model;

fhir-context/r5/index.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { Model } from "../../src/fhirpath";
2+
3+
export const {
4+
choiceTypePaths,
5+
pathsDefinedElsewhere,
6+
type2Parent,
7+
path2Type
8+
}: Model;

fhir-context/stu3/index.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { Model } from "../../src/fhirpath";
2+
3+
export const {
4+
choiceTypePaths,
5+
pathsDefinedElsewhere,
6+
type2Parent,
7+
path2Type
8+
}: Model;

index.d.ts

-97
This file was deleted.

0 commit comments

Comments
 (0)