Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #44

Merged
merged 1 commit into from
Apr 26, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 26, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
DotMake.CommandLine (source) 1.8.6 -> 1.8.7 age adoption passing confidence nuget patch
Hl7.Fhir.R4 5.7.0 -> 5.8.0 age adoption passing confidence nuget minor
csharpier 0.27.3 -> 0.28.1 age adoption passing confidence nuget minor
docker.io/bitnami/minio (source) 2024.2.17-debian-12-r2 -> 2024.3.30-debian-12-r2 age adoption passing confidence minor
docker.io/bitnami/minio-client (source) 2024.2.16-debian-12-r2 -> 2024.3.30-debian-12-r2 age adoption passing confidence minor
mcr.microsoft.com/dotnet/runtime 8.0.3-jammy-chiseled -> 8.0.4-jammy-chiseled age adoption passing confidence final patch
mcr.microsoft.com/dotnet/sdk 8.0.203-jammy -> 8.0.204-jammy age adoption passing confidence stage patch
xunit 2.7.0 -> 2.7.1 age adoption passing confidence nuget patch
xunit.runner.visualstudio 2.5.7 -> 2.5.8 age adoption passing confidence nuget patch

Release Notes

dotmake-build/command-line (DotMake.CommandLine)

v1.8.7: DotMake.CommandLine v1.8.7

  • Updated to latest daily build 2.0.0-beta4.24201.1 of System.CommandLine.
  • Added support for command handlers or command as delegates without the async keyword (which returns Task or Task<int>).
FirelyTeam/firely-net-sdk (Hl7.Fhir.R4)

v5.8.0: 5.8.0

Intro:

Highlights of this new release:

  • Added new Serialization engines for easier creating serializers and deserializers
  • FhirClient now has better Binary support
  • Added support for filters during ValueSet expansion
  • Added new FhirPath features
Changes:
  • #​2771: Improved binary support
  • #​2767: added package validation to the SDK library
  • #​2773: Update fhir release version enums
  • #​2768: Added defineVariable to FhirPath
  • #​2763: Bump MSTest.TestFramework from 3.2.0 to 3.3.1
  • #​2762: Bump MSTest.TestAdapter from 3.2.1 to 3.3.1
  • #​2764: FhirPath indexOf method for collections
  • #​2760: Added fhirpath environment vars
  • #​2758: fhirpath substring with negative length
  • #​2752: element types tryparse nullability
See More
  • #​2741: Nullability and Try-style function annotations
  • #​2757: replaced moq with NSubstitute
  • #​2754: keep snapshot when differential is missing
  • #​2753: custom json/xml patch requests
  • #​2755: Preserve self links when a count summary is conducted
  • #​2740: Implement DescendantOf and isNotA filter
  • #​2751: Added links to new validator
  • #​2747: Fixed location property on TypedElementOnSourceNode.cs
  • #​2748: Disallow validation of empty strings or markdown
  • #​2739: added latest FHIR REST operations
  • #​2744: Library now implements IVersionableConformanceResource
  • #​2743: Added date-quantity subtraction unit tests to fhirpath
  • #​2594: VONK-5300 Accessing the Definition when visiting all descendants of a ITypedElement
  • #​2730: 2550 parser error ignore customization
  • #​2733: Support Is-a filter in local ValueSet expansion
  • #​2720: FHIRPath optimizations
  • #​2736: Bump System.Text.Json from 8.0.2 to 8.0.3
  • #​2735: Start development phase 5.7.1

This list of changes was auto generated.

belav/csharpier (csharpier)

v0.28.1

Compare Source

What's Changed
Third party .editorconfig leading to: Error Failure parsing editorconfig files #​1227

When CSharpier encountered an invalid .editorconfig file, it would throw an exception and not format files. These files could appear in 3rd party code (for example within node_modules). CSharpier now ignores invalid lines in .editorconfigs

Thanks go to @​K0Te for reporting the issue

Full Changelog: belav/csharpier@0.28.0...0.28.1

v0.28.0

Compare Source

What's Changed

Fix dedented method call if there is a long chain #​1154

In some cases of method chains, the first invocation would end up dedented.

// 0.27.3
o.Property.CallMethod(
    someParameter_____________________________,
    someParameter_____________________________
)
    .CallMethod()
    .CallMethod();

// 0.28.0
o.Property.CallMethod(
        someParameter_____________________________,
        someParameter_____________________________
    )
    .CallMethod()
    .CallMethod();
Extra newline in switch case statement with curly braces [#​1192][https://github.com/belav/csharpier/issues/1192](https://togithub.com/belav/csharpier/issues/1192)2

If a case statement started with a block it would get an extra new line

// 0.27.3
switch (someValue)
{
    case 0:
    {
        // dedented because the only statement is a block
        break;
    }

    case 1:

        {
            // indented because there are two statements, a block then a break
        }
        break;
}

// 0.28.0
// 0.27.3
switch (someValue)
{
    case 0:
    {
        // dedented because the only statement is a block
        break;
    }

    case 1:
        {
            // indented because there are two statements, a block then a break
        }
        break;
}

Thanks go to @​emberTrev for reporting the bug.

Handle more editorconfig glob patterns. #​1214

The editorconfig parsing was not handling glob patterns that contained braces.

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

v8.0.4: .NET 8.0.4

Compare Source

Release

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

v8.0.204: .NET 8.0.4

Compare Source

Release

xunit/xunit (xunit)

v2.7.1

Compare Source

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

v2.5.8

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (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 has been generated by Mend Renovate. View repository job log here.

Copy link

Target ghcr.io/miracum/pathling-s3-import:pr-44 (ubuntu 22.04)

Show detailed table of vulnerabilities
Package ID Severity Installed Version Fixed Version
libc6 CVE-2024-2961 MEDIUM 2.35-0ubuntu3.6 2.35-0ubuntu3.7
libc6 CVE-2016-20013 LOW 2.35-0ubuntu3.6
libgcc-s1 CVE-2022-27943 LOW 12.3.0-1ubuntu1~22.04
libstdc++6 CVE-2022-27943 LOW 12.3.0-1ubuntu1~22.04

No Misconfigurations found

Copy link

🦙 MegaLinter status: ⚠️ WARNING

Descriptor Linter Files Fixed Errors Elapsed time
✅ ACTION actionlint 3 0 0.03s
✅ CSHARP csharpier 3 0 1.24s
⚠️ CSHARP roslynator 2 2 15.61s
✅ DOCKERFILE hadolint 1 0 0.07s
✅ EDITORCONFIG editorconfig-checker 30 0 0.05s
✅ JSON eslint-plugin-jsonc 6 0 1.51s
✅ JSON jsonlint 6 0 0.28s
✅ JSON prettier 6 0 0.69s
✅ JSON v8r 6 0 4.45s
✅ MARKDOWN markdownlint 1 0 0.51s
✅ REPOSITORY checkov yes no 13.1s
✅ REPOSITORY dustilock yes no 0.01s
✅ REPOSITORY gitleaks yes no 0.29s
✅ REPOSITORY git_diff yes no 0.01s
✅ REPOSITORY grype yes no 13.41s
✅ REPOSITORY kics yes no 6.23s
✅ REPOSITORY secretlint yes no 1.21s
✅ REPOSITORY syft yes no 0.72s
✅ REPOSITORY trivy yes no 7.11s
✅ REPOSITORY trivy-sbom yes no 2.79s
✅ REPOSITORY trufflehog yes no 9.79s
✅ YAML prettier 5 0 1.23s
✅ YAML v8r 5 0 6.43s
✅ YAML yamllint 5 0 0.36s

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

@chgl chgl merged commit 3d0f6e5 into master Apr 26, 2024
11 checks passed
miracum-bot pushed a commit that referenced this pull request Apr 26, 2024
## [1.3.2](v1.3.1...v1.3.2) (2024-04-26)

### Miscellaneous Chores

* **deps:** update all non-major dependencies ([#44](#44)) ([3d0f6e5](3d0f6e5))
* **deps:** update github-actions ([#45](#45)) ([5d8fa2f](5d8fa2f))
@miracum-bot
Copy link

🎉 This PR is included in version 1.3.2 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

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

Successfully merging this pull request may close these issues.

2 participants