Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 2, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
Google.Protobuf 3.31.1 -> 3.32.0 age confidence nuget minor
Hl7.Fhir.Base 5.12.1 -> 5.12.2 age confidence nuget patch
Hl7.Fhir.R4 5.12.1 -> 5.12.2 age confidence nuget patch
Microsoft.AspNetCore.Mvc.Testing (source) 9.0.7 -> 9.0.8 age confidence nuget patch
Microsoft.Extensions.Http.Polly (source) 9.0.7 -> 9.0.8 age confidence nuget patch
NBomber 6.1.0 -> 6.1.1 age confidence nuget patch
Swashbuckle.AspNetCore 9.0.3 -> 9.0.4 age confidence nuget patch
Verify.Xunit 30.5.0 -> 30.11.0 age confidence nuget minor
csharpier 1.0.3 -> 1.1.2 age confidence nuget minor
docker.io/library/postgres 17.5 -> 17.6 age confidence minor
mcr.microsoft.com/dotnet/aspnet 9.0.7-noble-chiseled -> 9.0.8-noble-chiseled age confidence stage patch
mcr.microsoft.com/dotnet/sdk 9.0.303-noble -> 9.0.304-noble age confidence stage patch
quay.io/keycloak/keycloak 26.3.1 -> 26.3.3 age confidence patch
xunit.runner.visualstudio 3.1.3 -> 3.1.4 age confidence nuget patch

Release Notes

FirelyTeam/firely-net-sdk (Hl7.Fhir.Base)

v5.12.2: 5.12.2

Intro:

Added FHIRPath debug tracer.
Fixes bugs related to paralelization when using SerializationFilter.
Optimization tweaks.

Changes:
  • #​3260: The ModelInfo.ModelInspector property was pretty expensive
  • #​3261: Include PVAL109 in recoverable issues
  • #​3210: Introduce a fhirpath debug tracer
  • #​3227: Bump BenchmarkDotNet and Fhir.Metrics
  • #​3229: Fix build issue with Fhir.Metrics 1.3.1 nullability annotations
  • #​3218: Fix thread-safety issue with SerializationFilter when reusing JsonSerializerOptions
  • #​3224: Fix NullReferenceException in primitive types GetHashCode() when Value is null
  • #​3217: Implement canonical version matching for partial versions in FHIR validation
  • #​3171: Patient.Validate(true) throws "Object reference not set to an instance of an object." Exception when Data Absent Extension Used.
  • #​3220: Start development phase 5.12.2

This list of changes was auto generated.

dotnet/aspnetcore (Microsoft.AspNetCore.Mvc.Testing)

v9.0.8

PragmaticFlow/NBomber (NBomber)

v6.1.1: NBomber 6.1.1

Fixes

  • NBomber 6.1.0: 1 iteration isn't executing all the steps #​862
domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

v9.0.4

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.3...v9.0.4

VerifyTests/Verify (Verify.Xunit)

v30.11.0

Compare Source

v30.10.0

Compare Source

v30.9.0

Compare Source

v30.8.0

Compare Source

v30.7.3

Compare Source

v30.7.2

Compare Source

v30.7.1

Compare Source

v30.7.0

Compare Source

v30.6.1

Compare Source

v30.6.0

Compare Source

belav/csharpier (csharpier)

v1.1.2

Compare Source

What's Changed

Inconsistencies with null-coalescing wrapping on method chains #​1573

On longer method chains, depending on the exact chain a null coalescing expression wouldn't always be preceded by a new line.

// input & expected output
var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallMethod__________()
    ?? throw new Exception();

var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallLongMethod___________________________________________________()
    ?? throw new Exception();

// 1.1.1
var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallMethod__________() ?? throw new Exception();

var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallLongMethod___________________________________________________()
    ?? throw new Exception();

Full Changelog: belav/csharpier@1.1.1...1.1.2

v1.1.1

Compare Source

What's Changed

Unhandled exception: System.ArgumentOutOfRangeException: startIndex cannot be larger than length of string. (Parameter 'startIndex') #​1673

CSharpier was throwing an exception when formating a directory contained a file without an extension.

Full Changelog: belav/csharpier@1.1.1...1.1.1

v1.1.0

Compare Source

What's Changed

.gitignore from parent folders impacts formatting of children #​1627

CSharpier will no longer consider .gitignore files located above the root of the current git repository.

Changes to stdin formatting #​288 #​1657

There is a new option --stdin-filepath that is used to specify the filepath CSharpier should use for resolving options and ignore files.
When no path is specified via stdin-path

  • No ignore files are considered.
  • The current directory is considered when locating options
  • The file is assumed to be c# unless the first non-whitespace character is < in which case it is assumed to be xml.
Support for C# 14 and .NET 10 #​1654 #​1646

Changes were required to support the following

  • Extension Declarations
  • File level directives in file based C# Apps
Support --ignore-path CLI option #​1585

It is now possible to specify the path to an ignore file

dotnet csharpier format . --ignore-path .config/.csharpierignore
Format xaml and slnx by default #​1628 #​1604

CSharpier now formats xaml and slnx by default without the need for configuration changes.

XML formatting is not taking into account EOL configuration on multiline comments #​1660

When formatting the following XML, CSharpier would always use the system system default for ending lines within the comment instead of the respecting the configured EOL setting.

<Element>
  <!--
  Comment with EOL
  -->
</Element>
Error when no read access to intermediate containing folder #​1656

In the case that CSharpier had access to a sub directory but not the parent of that sub directory, it was failing with an exception. That has been resolved.

Misleading message after "csharpier check" #​1645

Previously the format and check commands both used the same output message. The check command now correctly reports that it checked files and did not format them.

dotnet/sdk (mcr.microsoft.com/dotnet/sdk)

v9.0.304

Compare Source

xunit/visualstudio.xunit (xunit.runner.visualstudio)

v3.1.4

Compare Source


Configuration

📅 Schedule: Branch creation - On day 1 of the month, every 3 months ( * * 1 */3 * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

github-actions bot commented Sep 2, 2025

🦙 MegaLinter status: ⚠️ WARNING

Descriptor Linter Files Fixed Errors Warnings Elapsed time
✅ ACTION actionlint 6 0 0 0.07s
✅ BASH bash-exec 1 0 0 0.01s
✅ BASH shellcheck 1 0 0 0.03s
✅ BASH shfmt 1 0 0 0.01s
✅ CSHARP csharpier 99 0 0 10.95s
⚠️ CSHARP roslynator 3 3 0 32.36s
✅ DOCKERFILE hadolint 1 0 0 0.25s
✅ EDITORCONFIG editorconfig-checker 192 0 0 1.17s
✅ JSON jsonlint 33 0 0 0.23s
✅ JSON prettier 33 0 0 2.17s
✅ JSON v8r 33 0 0 8.13s
✅ MARKDOWN markdownlint 5 0 0 0.79s
✅ PROTOBUF protolint 4 0 0 4.79s
✅ REPOSITORY checkov yes no no 31.63s
✅ REPOSITORY dustilock yes no no 0.02s
✅ REPOSITORY gitleaks yes no no 0.41s
✅ REPOSITORY git_diff yes no no 0.07s
✅ REPOSITORY grype yes no no 49.83s
⚠️ REPOSITORY kics yes no 9 17.6s
✅ REPOSITORY secretlint yes no no 2.21s
✅ REPOSITORY syft yes no no 5.6s
✅ REPOSITORY trivy yes no no 14.22s
✅ REPOSITORY trivy-sbom yes no no 0.87s
✅ REPOSITORY trufflehog yes no no 4.52s
✅ XML xmllint 2 0 0 0.06s
✅ YAML prettier 32 0 0 1.17s
✅ YAML v8r 32 0 0 10.14s
✅ YAML yamllint 32 0 0 1.46s

See detailed report in MegaLinter reports

You could have same capabilities but better runtime performances if you request a new MegaLinter flavor.

MegaLinter is graciously provided by OX Security

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 62d5651 to b221ce1 Compare September 6, 2025 01:12
Copy link

github-actions bot commented Sep 6, 2025

Trivy image scan report

ghcr.io/miracum/fhir-pseudonymizer:pr-273 (ubuntu 24.04)

No Vulnerabilities found

No Misconfigurations found

opt/fhir-pseudonymizer/FhirPseudonymizer.deps.json

No Vulnerabilities found

No Misconfigurations found

opt/fhir-pseudonymizer/packages.lock.json

No Vulnerabilities found

No Misconfigurations found

usr/share/dotnet/shared/Microsoft.AspNetCore.App/9.0.8/Microsoft.AspNetCore.App.deps.json

No Vulnerabilities found

No Misconfigurations found

usr/share/dotnet/shared/Microsoft.NETCore.App/9.0.8/Microsoft.NETCore.App.deps.json

No Vulnerabilities found

No Misconfigurations found

Copy link

github-actions bot commented Sep 6, 2025

Code Coverage

Package Line Rate Branch Rate Health
FhirPseudonymizer.Tests 100% 100%
FhirPseudonymizer 74% 65%
Summary 81% (823 / 1015) 69% (95 / 138)

Minimum allowed line rate is 50%

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants