From 37817db6f782847473175ec0f28cd4cab10fec91 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Apr 2026 16:18:09 +0200 Subject: [PATCH 1/3] build(deps): bump com.fasterxml.jackson.core:jackson-core (#32) Bumps [com.fasterxml.jackson.core:jackson-core](https://github.com/FasterXML/jackson-core) from 2.18.0 to 2.18.6. - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.18.0...jackson-core-2.18.6) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-version: 2.18.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- linter-core/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linter-core/pom.xml b/linter-core/pom.xml index 6186007..17ab91c 100644 --- a/linter-core/pom.xml +++ b/linter-core/pom.xml @@ -79,7 +79,7 @@ com.fasterxml.jackson.core jackson-core - 2.18.0 + 2.18.6 From abf2dc87ead1cd9f1b4cc963356cee1733dcf774 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 May 2026 14:14:06 +0200 Subject: [PATCH 2/3] build(deps): bump org.thymeleaf:thymeleaf in /linter-core (#58) Bumps org.thymeleaf:thymeleaf from 3.1.2.RELEASE to 3.1.5.RELEASE. --- updated-dependencies: - dependency-name: org.thymeleaf:thymeleaf dependency-version: 3.1.5.RELEASE dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- linter-core/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linter-core/pom.xml b/linter-core/pom.xml index 17ab91c..1a2356f 100644 --- a/linter-core/pom.xml +++ b/linter-core/pom.xml @@ -98,7 +98,7 @@ org.thymeleaf thymeleaf - 3.1.2.RELEASE + 3.1.5.RELEASE From ef6a9a99171c4167fb3f06f28ee9a7189865d441 Mon Sep 17 00:00:00 2001 From: khalilmalla95 Date: Thu, 21 May 2026 12:36:23 +0200 Subject: [PATCH 3/3] Downgrade severity of `QUESTIONNAIRE_MISSING_META_PROFILE` and `QUESTIONNAIRE_INVALID_META_PROFILE` from ERROR to WARN. --- .../java/dev/dsf/linter/fhir/FhirQuestionnaireLinter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linter-core/src/main/java/dev/dsf/linter/fhir/FhirQuestionnaireLinter.java b/linter-core/src/main/java/dev/dsf/linter/fhir/FhirQuestionnaireLinter.java index e613f0b..3fe7eb7 100644 --- a/linter-core/src/main/java/dev/dsf/linter/fhir/FhirQuestionnaireLinter.java +++ b/linter-core/src/main/java/dev/dsf/linter/fhir/FhirQuestionnaireLinter.java @@ -126,11 +126,11 @@ private void checkMetaAndBasics(Document doc, File file, String ref, /* meta.profile */ String profile = val(doc, META_PRO_XP); if (blank(profile)) - out.add(new FhirElementLintItem(LinterSeverity.ERROR, LintingType.QUESTIONNAIRE_MISSING_META_PROFILE, + out.add(new FhirElementLintItem(LinterSeverity.WARN, LintingType.QUESTIONNAIRE_MISSING_META_PROFILE, file, ref, "Questionnaire is missing meta.profile.")); // Modified to use regex matching else if (!PROFILE_URI_PATTERN.matcher(profile).matches()) - out.add(new FhirElementLintItem(LinterSeverity.ERROR, LintingType.QUESTIONNAIRE_INVALID_META_PROFILE, + out.add(new FhirElementLintItem(LinterSeverity.WARN, LintingType.QUESTIONNAIRE_INVALID_META_PROFILE, file, ref, "Questionnaire has invalid meta.profile: " + profile)); else out.add(ok(file, ref, "meta.profile present and valid"));