Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9f0bffb
Bump Microsoft.NET.Test.Sdk and Newtonsoft.Json
dependabot[bot] Feb 10, 2025
7976adc
allow code "xml", "json", and "ttl" as valid mimetypes
mmsmits Feb 12, 2025
b576aff
Merge pull request #3036 from FirelyTeam/feature/3011-capability-stat…
mmsmits Feb 12, 2025
3605c91
update release notes
mmsmits Feb 12, 2025
b3c879a
start development phase 5.11.5
mmsmits Feb 12, 2025
63a7fe2
Merge branch 'develop' into dependabot/nuget/multi-047935c01b
mmsmits Feb 12, 2025
3b08dc2
Merge pull request #3037 from FirelyTeam/release/5.11.4
ewoutkramer Feb 12, 2025
b490e2c
Merge branch 'develop' into dependabot/nuget/multi-047935c01b
mmsmits Feb 13, 2025
4c30dc4
Merge pull request #3034 from FirelyTeam/dependabot/nuget/multi-04793…
mmsmits Feb 13, 2025
28776c0
Bump MSTest.TestAdapter from 3.6.2 to 3.8.0
dependabot[bot] Feb 17, 2025
3eb117c
Bump MSTest.TestFramework from 3.6.2 to 3.8.0
dependabot[bot] Feb 17, 2025
e9c9855
Bump System.Threading.Tasks.Dataflow from 9.0.1 to 9.0.2
dependabot[bot] Feb 17, 2025
8213cba
Fix typo in LocalTerminologyService
alexzautke Feb 18, 2025
995c9ea
Merge pull request #3045 from FirelyTeam/fix/3040-typo
mmsmits Feb 19, 2025
3a293e4
Merge branch 'develop' into dependabot/nuget/MSTest.TestAdapter-3.8.0
mmsmits Feb 20, 2025
be2ac55
Merge branch 'develop' into dependabot/nuget/System.Threading.Tasks.D…
mmsmits Feb 20, 2025
d24a7db
Merge pull request #3041 from FirelyTeam/dependabot/nuget/MSTest.Test…
mmsmits Feb 20, 2025
b68809d
Merge branch 'develop' into dependabot/nuget/MSTest.TestFramework-3.8.0
mmsmits Feb 20, 2025
6a1d2f9
Merge pull request #3042 from FirelyTeam/dependabot/nuget/MSTest.Test…
mmsmits Feb 20, 2025
2107459
Merge branch 'develop' into dependabot/nuget/System.Threading.Tasks.D…
mmsmits Feb 20, 2025
996c5c7
Merge pull request #3043 from FirelyTeam/dependabot/nuget/System.Thre…
mmsmits Feb 20, 2025
b31cbf0
Use v1 of Firely Azure templates
marcovisserFurore Feb 21, 2025
f419f5f
Merge pull request #3055 from FirelyTeam/feature/DEVOPS-354
marcovisserFurore Feb 23, 2025
3d1fb33
Made sure focus/params with just an empty primitive also propagate null.
ewoutkramer Feb 25, 2025
8db9552
Merge pull request #3065 from FirelyTeam/2960-support-empty-primitive…
Kasdejong Feb 26, 2025
b1eabfe
Merge branch 'develop' into develop-6.0
Kasdejong Feb 26, 2025
372656e
wip
Kasdejong Feb 26, 2025
d0fc3f8
merge conflicts
Kasdejong Feb 26, 2025
2c003b6
did not build
Kasdejong Feb 26, 2025
9c619d7
Merge branch 'develop-6.0' into forward-merge-develop
Kasdejong Feb 26, 2025
ab59d58
changed TestFramework version to match TestAdapter version. The unit …
Kasdejong Feb 27, 2025
657a6c9
Merge remote-tracking branch 'origin/forward-merge-develop' into forw…
Kasdejong Feb 27, 2025
727551d
wip. note that functionsTests is temp changed
Kasdejong Feb 27, 2025
4f4358a
fixed minor bug in UnboxTo logic
Kasdejong Feb 27, 2025
85547e2
Fixed null propagation inconsistencies between system and cql/fhir pr…
Kasdejong Feb 27, 2025
bfa05d2
Merge branch 'develop-6.0' into forward-merge-develop
ewoutkramer Mar 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ resources:
- repository: templates
type: github
name: FirelyTeam/azure-pipeline-templates
endpoint: FirelyTeam
endpoint: FirelyTeam
ref: refs/tags/v1


stages:
- stage: build
Expand Down
2 changes: 1 addition & 1 deletion release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Intro:

A hotfix in the `Canonical` class to also allow fragment only canonicals.
A hotfix in the MimeTypeTerminologyService to allow for the FHIR format types "xml", "json" and "ttl".
2 changes: 1 addition & 1 deletion src/Hl7.Fhir.Base/FhirPath/EvaluationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public EvaluationContext(PocoNode? resource, PocoNode? rootResource, IDictionary
/// <summary>
/// A delegate that handles the output for the <c>trace()</c> function.
/// </summary>
public Action<string, IEnumerable<PocoNode>>? Tracer { get; set; }
public Action<string?, IEnumerable<PocoNode>>? Tracer { get; set; }
}

public static class EvaluationContextExtensions
Expand Down
Loading