Skip to content

Commit

Permalink
Merge remote-tracking branch 'lhc-git/master' into feature/LF-2100/su…
Browse files Browse the repository at this point in the history
…pplementary-weight-function

# Conflicts:
#	CHANGELOG.md
#	package-lock.json
#	package.json
#	src/fhirpath.js
  • Loading branch information
yuriy-sedinkin committed Jul 2, 2024
2 parents 16ac94a + cbdcdbc commit ad7e71f
Show file tree
Hide file tree
Showing 14 changed files with 214 additions and 205 deletions.
22 changes: 19 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,36 @@
This log documents significant changes for each release. This project follows
[Semantic Versioning](http://semver.org/).

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

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

## [3.13.1] - 2024-04-24
## [3.13.4] - 2024-06-13
### Fixed
- a bug that could cause the context input parameter containing environment
variables to change.

## [3.13.3] - 2024-05-24
### Changed
- Added separate TypeScript type definition files for the main file and each
supported model.

## [3.13.2] - 2024-05-15
### Fixed
- an issue with evaluating an expression for a resource passed through an
environment variable.
- an issue with "statusShift" during performance tests.

## [3.13.1] - 2024-04-25
### Fixed
- Added flag 'u' for regular expressions in the specification's `matches` and
`replaceMatches` functions to support the use of unicode character class
escapes.

## [3.13.0] - 2024-04-10
### Added
- Function `defineVariable(name: String [, expr: expression])`.
Expand Down
52 changes: 26 additions & 26 deletions demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions fhir-context/dstu2/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { Model } from "../../src/fhirpath";

export const {
choiceTypePaths,
pathsDefinedElsewhere,
type2Parent,
path2Type
}: Model;
8 changes: 8 additions & 0 deletions fhir-context/r4/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { Model } from "../../src/fhirpath";

export const {
choiceTypePaths,
pathsDefinedElsewhere,
type2Parent,
path2Type
}: Model;
8 changes: 8 additions & 0 deletions fhir-context/r5/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { Model } from "../../src/fhirpath";

export const {
choiceTypePaths,
pathsDefinedElsewhere,
type2Parent,
path2Type
}: Model;
8 changes: 8 additions & 0 deletions fhir-context/stu3/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { Model } from "../../src/fhirpath";

export const {
choiceTypePaths,
pathsDefinedElsewhere,
type2Parent,
path2Type
}: Model;
97 changes: 0 additions & 97 deletions index.d.ts

This file was deleted.

Loading

0 comments on commit ad7e71f

Please sign in to comment.