Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 29, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
BenchmarkDotNet 0.13.120.15.8 age confidence nuget minor
FluentAssertions (source) 6.12.06.12.2 age confidence nuget patch
Hl7.Fhir.Base 5.7.05.13.2 age confidence nuget minor
Hl7.Fhir.R4 5.7.05.13.2 age confidence nuget minor
Microsoft.CodeAnalysis.Analyzers 3.3.43.11.0 age confidence nuget minor
Microsoft.CodeAnalysis.CSharp 4.9.24.14.0 age confidence nuget minor
Microsoft.NET.Test.Sdk 17.9.017.14.1 age confidence nuget minor
Microsoft.NET.Test.Sdk 17.7.117.14.1 age confidence nuget minor
Scriban (source) 5.9.15.12.1 age confidence nuget minor
Verify.SourceGenerators 2.2.02.5.0 age confidence nuget minor
coverlet.collector 6.0.26.0.4 age confidence nuget patch
dotnet-releaser 0.8.50.15.0 age confidence nuget minor
dotnet-sdk 8.0.2038.0.417 age confidence dotnet-sdk patch
xunit 2.4.22.9.2 age confidence nuget minor
xunit 2.5.02.9.2 age confidence nuget minor
xunit.runner.visualstudio 2.4.52.8.2 age confidence nuget minor
xunit.runner.visualstudio 2.5.02.8.2 age confidence nuget minor

Release Notes

dotnet/BenchmarkDotNet (BenchmarkDotNet)

v0.15.8: BenchmarkDotNet v0.15.8

This release adds OpenMetrics exporter support for Prometheus-compatible metrics export, improves the Roslyn analyzers with multi-target support and better type checking, and fixes several bugs including process deadlocks and WASM trimming issues.

Features

  • Add OpenMetrics exporter for Prometheus-compatible metrics output (#​2801)
  • Add Job info to DisassemblyDiagnoser report headers to distinguish assemblies when using multiple coreruns (#​2884, fixes #​2573)
  • Add NO_COLOR environment variable support for disabling console colors (#​2870)

Improvements

  • Multi-target analyzers with improved type assignability checking using semantic model (#​2866)
  • Add new analyzer diagnostic BDN1503 for better argument/params validation (#​2865, fixes #​2864)
  • Use PolySharp for [DynamicallyAccessedMembers] attribute polyfill (#​2883)
  • Refactor to use AsyncProcessOutputReader for cleaner process output handling (#​2878)

Bug Fixes

  • Fix process deadlock issue when reading process output (#​2877)
  • Fix WASM generated project being trimmed out (#​2872)
  • Allow filters to filter out every benchmark from a type without errors (#​2879, fixes #​2860)
  • Fix unhandled exception when running BenchmarkRunner.Run<T>() with arguments on invalid benchmark type (#​2880, fixes #​2724)

Internal

  • Update release workflow for analyzers (#​2882)
  • Improve docs building workflow
  • Cleanup #if-#endif preprocessor directives using PolySharp polyfills (#​2881)

Full Changelog: dotnet/BenchmarkDotNet@v0.15.7...v0.15.8

v0.15.7: BenchmarkDotNet v0.15.7

This release introduces Roslyn analyzers to catch incorrect BenchmarkDotNet usage at compile time, improves .NET Framework version detection, and updates OS detection support.

Features

  • Add Roslyn analyzers to detect incorrect usage of BenchmarkDotNet at compile-time (#​2837)
    • Validates benchmark class structure (public, non-sealed, generic constraints)
    • Checks [Arguments], [Params], and [ParamsAllValues] attribute usage
    • Verifies [GenericTypeArguments] requirements
    • Ensures only one baseline method per category
    • Validates BenchmarkRunner.Run invocations

Improvements

  • Improve .NET Framework version detection by retrieving version from TargetFrameworkAttribute (#​2682)
  • Bump Perfolizer 0.6.0 → 0.6.1, bringing updated Windows and macOS version detection in OsBrandHelper

Bug Fixes

  • Fix null reference handling and exception logging in TestCaseFilter for the test adapter
  • Fix flaky CI tests by increasing build timeout values (#​2854)

Internal

  • Improve release workflow in release.yaml

Full Changelog: dotnet/BenchmarkDotNet@v0.15.6...v0.15.7

v0.15.6: BenchmarkDotNet v0.15.6

v0.15.6

This release adds ref struct parameter support for [ArgumentsSource], fixes Native AOT runtime moniker resolution, and upgrades to Perfolizer 0.6.0 with the new Pragmastat statistical engine.

Features
  • Add ref struct parameter support for [ArgumentsSource] attribute, enabling Span<T> and ReadOnlySpan<char> parameters (#​2849)
Bug Fixes
  • Fix runtime moniker normalization for Native AOT targets (#​2852)
Improvements
  • Upgrade to Perfolizer 0.6.0 with Pragmastat statistical engine integration
Documentation
  • Add documentation for breaking changes related to disassembler native dependencies (#​2836)
Internal
  • Introduce GitHub Actions release workflow

Full Changelog: dotnet/BenchmarkDotNet@v0.15.5...v0.15.6

v0.15.5: 0.15.5

This release fixes job naming consistency when using --runtimes, clamps histogram bin bounds to avoid confusing negative values, and reduces output directory clutter by filtering unnecessary runtime and satellite assembly files.

Features

  • Add custom MSBuild targets to remove unnecessary files from the bin directory (#​2737)
    • Filters out Capstone native binaries for non-target platforms
    • Removes satellite assemblies from Microsoft.CodeAnalysis packages

Bug Fixes

  • Fix job names consistency between SimpleJobAttribute and --runtimes CLI option (#​2841)
    • Jobs now use runtime names as IDs consistently across all runtime monikers
  • Clamp histogram bin lower bounds to non-negative values (#​1821)
    • Prevents confusing negative values in histogram output for non-negative measurements

Internal

  • Bump Perfolizer: 0.5.3 → 0.5.4 (#​2773)
  • Update changelog and GitHub Pages generation workflows
  • Enable workflow_dispatch for test workflow (#​2835)

Full Changelog: dotnet/BenchmarkDotNet@v0.15.4...v0.15.5

v0.15.4: 0.15.4

This release fixes issues with ParamsSource attribute resolution in inheritance scenarios and corrects a MSBuild syntax error in the TestAdapter.

Bug Fixes

  • Allow [ParamsSource] to resolve overridden methods and properties in derived classes (#​2832)
  • Fix MSBuild condition syntax for TestTfmsInParallel property that prevented Visual Studio from loading projects (#​2831)

Full Changelog: dotnet/BenchmarkDotNet@v0.15.3...v0.15.4

v0.15.3: 0.15.3

This release brings .NET 10 NativeAOT instruction set support, improved CPU detection on Windows when WMIC is unavailable, test adapter filtering, and numerous bug fixes.

Breaking Changes

  • Deprecated .WithNuget() job extension in favor of .WithMsBuildArguments() (#​2812)

Features

  • Add VS Test Adapter filter support for running specific benchmarks (#​2788)
  • Update NativeAOT instruction set support for .NET 10+ (#​2828)

Improvements

  • Add PowerShell-based CPU detection fallback for Windows when WMIC is unavailable (#​2749)
  • Improve IsNetCore and IsNativeAOT detection for single-file apps without AOT (#​2799)
  • Use --nodeReuse:false for dotnet CLI commands to improve build isolation (#​2814)
  • Enable assembly signing for debug builds (#​2774)

Bug Fixes

  • Fix ArgumentsSource on external types not working if the argument type is not primitive (#​2820)
  • Fix workload warmup mode not working correctly
  • Fix EtwProfiler for file paths slightly under 260 characters (#​2808)
  • Fix console logs being output twice when using TestAdapter (#​2790)
  • Fix EventProcessor.OnEndValidationStage not being called when critical validation errors occur (#​2816)
  • Fix XmlException thrown when TextReader.Null is passed to AppConfigGenerator (#​2817)
  • Fix case sensitivity issue in NativeMemoryLogParser program name matching (#​2795)
  • Fix typo in BuildPlots.R

Internal

  • Replace StyleCop.Analyzers with unstable version for improved analysis (#​2796)
  • Add workflow to run selected tests (#​2797)
  • Fix flaky MemoryDiagnoser tests on macOS (#​2813)
  • Fix x86 disassembler tests for net462 (#​2792)
  • Split TimeConsumingBenchmark class to reduce test time
  • Update BenchmarkDotNetDiagnosers package version (#​2805)
  • Fix comment in package props about GenerateProgramFile (#​2802)

Full Changelog: dotnet/BenchmarkDotNet@v0.15.2...v0.15.3

v0.15.2: 0.15.2

Full changelog: https://benchmarkdotnet.org/changelog/v0.15.2.html

Highlights

  • The most significant update in this release is the enhanced accuracy of the memory diagnoser (#​2562). This improvement resolves the issue of incorrectly reported memory allocations (#​1542, #​2582).
  • We have introduced a new feature that allows users to sort benchmark jobs in numerical order (#​2768, #​2770).
  • Benchmark validation has been improved (#​2771).
  • An issue with non-persistent auto-generated JobId has been fixed (#​2777).

v0.15.1: 0.15.1

Full changelog: https://benchmarkdotnet.org/changelog/v0.15.1.html

Highlights

v0.15.0: 0.15.0

Full changelog: https://benchmarkdotnet.org/changelog/v0.15.0.html

v0.14.0: 0.14.0

Full changelog: https://benchmarkdotnet.org/changelog/v0.14.0.html

Highlights

  • Introduce BenchmarkDotNet.Diagnostics.dotMemory #​2549: memory allocation profile of your benchmarks using dotMemory, see @​BenchmarkDotNet.Samples.IntroDotMemoryDiagnoser
  • Introduce BenchmarkDotNet.Exporters.Plotting #​2560: plotting via ScottPlot (initial version)
  • Multiple bugfixes
  • The default build toolchains have been updated to pass IntermediateOutputPath, OutputPath, and OutDir properties to the dotnet build command. This change forces all build outputs to be placed in a new directory generated by BenchmarkDotNet, and fixes many issues that have been reported with builds. You can also access these paths in your own .csproj and .props from those properties if you need to copy custom files to the output.

Bug fixes

  • Fixed multiple build-related bugs including passing MsBuildArguments and .Net 8's UseArtifactsOutput.

Breaking Changes

  • DotNetCliBuilder removed retryFailedBuildWithNoDeps constructor option.
  • DotNetCliCommand removed RetryFailedBuildWithNoDeps property and BuildNoRestoreNoDependencies() and PublishNoBuildAndNoRestore() methods (replaced with PublishNoRestore()).
fluentassertions/fluentassertions (FluentAssertions)

v6.12.2

Compare Source

What's Changed

Others

Full Changelog: fluentassertions/fluentassertions@6.12.1...6.12.2

v6.12.1

Compare Source

What's Changed
Improvements
  • Improve BeEmpty() and BeNullOrEmpty() performance for IEnumerable<T>, by materializing only the first item - #​2530
Fixes
  • Fixed formatting error when checking nullable DateTimeOffset with BeWithin(...).Before(...) - #​2312
  • BeEquivalentTo will now find and can map subject properties that are implemented through an explicitly-implemented interface - #​2152
  • Fixed that the because and becauseArgs were not passed down the equivalency tree - #​2318
  • BeEquivalentTo can again compare a non-generic IDictionary with a generic one - #​2358
  • Fixed that the FormattingOptions were not respected in inner AssertionScope - #​2329
  • Capitalize true and false in failure messages and make them formattable to a custom BooleanFormatter - #​2390, #​2393
  • Improved the failure message for NotBeOfType when wrapped in an AssertionScope and the subject is null - #​2399
  • Improved the failure message for BeWritable/BeReadable when wrapped in an AssertionScope and the subject is read-only/write-only - #​2399
  • Improved the failure message for ThrowExactly[Async] when wrapped in an AssertionScope and no exception is thrown - #​2398
  • Improved the failure message for [Not]HaveExplicitProperty when wrapped in an AssertionScope and not implementing the interface - #​2403
  • Improved the failure message for [Not]HaveExplicitMethod when wrapped in an AssertionScope and not implementing the interface - #​2403
  • Changed BeEquivalentTo to exclude private protected members from the comparison - #​2417
  • Fixed using BeEquivalentTo on an empty ArraySegment - #​2445, #​2511
  • BeEquivalentTo with a custom comparer can now handle null values - #​2489
  • Ensured that nested calls to AssertionScope(context) create a chained context - #​2607
  • One overload of the AssertionScope constructor would not create an actual scope associated with the thread - #​2607
  • Fixed ThrowWithinAsync not respecting OperationCanceledException - #​2614
  • Fixed using BeEquivalentTo with an IEqualityComparer targeting nullable types - #​2648

Full Changelog: fluentassertions/fluentassertions@6.12.0...6.12.1

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

v5.13.2: 5.13.2

Intro:

Reverts the caching of ModelInfo.ModelInspector due to issues with cross version codes importing and overriding type mappings.

Changes:

This list of changes was auto generated.

v5.13.1: 5.13.1

Intro:

Fixed ValueSet serialization being not resistant to unknown elements.
Improve cleaning up of extensions that should not be inherited during snapshot generation.

Changes:

  • #​3345: Added RemoveAllNonInheritableExtensions to ExpandElementAsync
  • #​3337: Fix NullReferenceException during ValueSet expansion serialization
  • #​3336: Clean up pipeline
  • #​3334: Add ReferenceEquals optimization to equality comparers
  • #​3335: Solve NullReferenceException in serialization with SummaryFilter being used
  • #​3331: Fix LocalTerminologyService.Expand to preserve FhirOperationException status codes
  • #​3333: Sdk6 to develop
  • #​3325: Bump Newtonsoft.Json from 13.0.3 to 13.0.4
  • #​3323: Add colors to Azure Devops pipelines output
  • #​3322: Start development phase 6.0.2
See More
  • #​3317: Start development phase 5.13.0

This list of changes was auto generated.

v5.13.0: 5.13.0

Intro:

Added support for not trimming whitespace in serialization
Made minor changes to the snapshot generator

Changes:

  • #​3281: Bugfix/append text
  • #​3291: Added check on absolute content reference when expanding elements
  • #​3287: Add fhirpath support for coalesce and sort
  • #​3292: Bump BenchmarkDotNet from 0.15.2 to 0.15.4
  • #​3274: Also erase contentRef in STU3
  • #​3273: Add TrimWhiteSpacesInJson to trim string values
  • #​3271: Integrate Java validator logic for primitive element merging without duplicating existing code
  • #​3270: Fix mapping and example inheritance during snapshot generation with suppress extension support across all FHIR versions
  • #​3269: Add support for preserving whitespaces in JSON values
  • #​3268: Start development phase 5.12.3

This list of changes was auto generated.

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.

v5.12.1: 5.12.1

What's Changed

Full Changelog: FirelyTeam/firely-net-sdk@v5.12.0...v5.12.1

v5.12.0: 5.12.0

Intro:

Added an FHIR R6-ballot3 sattelite and Nuget package.

Changes:
  • #​3186: Update dependabot.yml
  • #​3184: 3109 Add new R6 Satellite
  • #​3183: Re-run codegen on all FHIR versions.
  • #​3182: Clear out contentRef when copying children into an element.
  • #​3158: Start development phase 5.11.8

This list of changes was auto generated.

v5.11.7

Intro:

A hotfix that prevents issues when BundledResources is called when any of the bundle entries misses fullUrl

Changes:

This list of changes was auto generated.

v5.11.6

Intro:

A hotfix for a bug causing resolving to fail on local bundle references

Changes:
  • #​3146: Add release notes
  • #​3144: Preserve Bundle fullurls in child resources
  • #​3142: Start development phase 5.11.6

This list of changes was auto generated.

v5.11.5

What's Changed
New Contributors

Full Changelog: FirelyTeam/firely-net-sdk@v5.11.4...v5.11.5

v5.11.4: 5.11.4

Intro:

A hotfix in the MimeTypeTerminologyService to allow for the FHIR format types xml, json and ttl.

Changes:
  • #​3036: Allow code "xml", "json", and "ttl" as valid mimetypes
  • #​3031: Start development phase 5.11.4

This list of changes was auto generated.

v5.11.3: 5.11.3

Intro:

A hotfix in the Canonical class to also allow fragment only canonicals.

Changes:
  • #​3030: Canonical now parses fragment only URLs
  • #​3024: Start development phase 5.11.3

This list of changes was auto generated.

v5.11.2: 5.11.2

Hotfix:

  • This is a hotfix release to not throw an error when the validate code operation is called using the system, code and valueSet parameters.

This list of changes was auto generated.

What's Changed

Full Changelog: FirelyTeam/firely-net-sdk@v5.11.1...v5.11.2

v5.11.1: 5.11.1

Breaking changes :
  • ⚠️ We have reverted our recent changes related to the SnapshotGeneratorSettings. We have encountered some regressions using the new regeneration behavior that was introduced and decided to revert it until we are sure these changes are correct.
Changes:
  • #​2968: Bugfix/2854 fix validate code
  • #​2972: Make RemoveAllNonInheritableExtensions public
  • #​2975: Revert snapshot generation settings
  • #​2803: fix: #​2802 - let SnapshotSource reuse self-generated snapshot
  • #​2943: Use proper snapshot generation settings, fixed obsolete warnings
  • #​2971: Bump System.Text.Json and System.Buffers
  • #​2970: Bump System.Threading.Tasks.Dataflow from 8.0.1 to 9.0.0
  • #​2962: Bump FluentAssertions from 6.12.1 to 6.12.2
  • #​2961: Start development phase 5.11.1

This list of changes was auto generated.

v5.11.0: 5.11.0

Breaking changes ⚠️
  • EvaluationContext.WithResourceOverrides() introduced in 5.10 is refactored to now be an extension method instead of a static construction method. It should now be called on an instance of EvaluationContext, and will mutate and return that instance.
  • We changed the datatype of the Attachment.Url from FhirUrl to FhirUri. The type of this element was changed with the introduction of R4. (FhirUrl doesn't exist in STU3). When we moved Attachment to base, we wrongfully put FhirUrl here, which is the more specific datatype of the two. We have corrected this.
Changes:
  • #​2956: Bump MSTest.TestAdapter from 3.3.1 to 3.6.2
  • #​2959: Bump MSTest.TestFramework from 3.3.1 to 3.6.2
  • #​2958: Bump xunit from 2.8.0 to 2.9.2
  • #​2957: Bump Newtonsoft.Json and Microsoft.NET.Test.Sdk
  • #​2955: Bump NSubstitute from 5.1.0 to 5.3.0
  • #​2952: Fix wrong attachment url datatype in PocoSummaryProvider
  • #​2949: Update release-notes.md
  • #​2886: Remove all non-inheritable extensions from the base profile before snapshotting
  • #​2943: Use proper snapshot generation settings, fixed obsolete warnings
  • #​2884: Fixed element definition element.id not being merged by the snapshot generator
See More
  • #​2922: Remove the Charset from the Accept Header and replace it with the Accept-Charset Header.
  • #​2912: Update Parameters.cs for Get from remove to retrieve
  • #​2888: Bump System.Text.Json from 8.0.4 to 8.0.5 in /src/Hl7.Fhir.Base in the nuget group across 1 directory
  • #​2877: Added unit test for generating Snapshots for multiple nested extensions
  • #​2799: Snapshot generator does not expand complex extensions defined in a an extension.
  • #​2869: Start development phase 5.10.4

This list of changes was auto generated.

v5.10.3: 5.10.3

Intro:

Hotfix: Fixed an incorrect string concatenation and subsequent argument exception when the Id of a contained resource was not set.

Changes:
  • #​2868: contained resource ref cache fix
  • #​2867: Start development phase 5.10.3

This list of changes was auto generated.

v5.10.2: 5.10.2

Intro:

Hotfix: Fixed inconsistency in contained resource referenceable IDs

Changes:
  • #​2866: Fixed inconsistency when resolving references to contained resources
  • #​2861: Closes issue #​2860.
  • #​2860: HttpContentParsers Create resource error when response location header relative

This list of changes was auto generated.

v5.10.1: 5.10.1

Intro:

This is a hotfix release that fixes the NullReferenceException when enumerating bundled/contained resources

Changes:
  • #​2857: Start new development phase 5.10.1
  • #​2859: Clarify usage of new FhirPath context inference
  • #​2858: Fixed NullReferenceException when enumerating bundled/contained resources
  • #​2853: Bump FluentAssertions from 6.12.0 to 6.12.1

This list of changes was auto generated.

v5.10.0: 5.10.0

Changes:
Bugfixes:
  • #​2801: Expanded codes of Value set with filter "op" : "is-not-a" includes the code that should not be included
New Functionality:
  • #​2802: SnapshotSource does not reuse self-generated snapshot
  • #​2845: Scoped node cache overhaul
Others:
  • #​2803: fix: #​2802 - let SnapshotSource reuse self-generated snapshot
  • #​2841: %resource and %rootResource in default context
  • #​2849: Added support for choice types with unbound choices and CodeableReference
  • #​2847: Fix isNotA filter code in ValueSet expander
See More
  • #​2842: Changed iif to work with the correct context
  • #​2840: Bump Newtonsoft.Json from 13.0.1 to 13.0.3
  • #​2829: Added CDS Hooks (de)serialization
  • #​2838: Added exceptions for value sets that cannot be expanded
  • #​2830: Add serialization engine extensions allow for arbitrary stream writers and reader
  • #​2837: Add instructions on how to generate a binary compatibility suppression file.
  • #​2836: Bump BenchmarkDotNet from 0.13.12 to 0.14.0
  • #​2833: Start new development phase 5.9.2

This list of changes was auto generated.

v5.9.1: 5.9.1

Intro:

Hotfix release:

  • Fixed breaking change in the FhirJsonConverter constructors.
  • Solved issue around the "Location" property of SourceNode
Changes:
  • #​2831: FS location issue fix
  • #​2828: Added back missing FhirJsonConverter
  • #​2827: start new development phase 5.9.1

This list of changes was auto generated.

v5.9.0: 5.9.0

Intro:

General improvements and bugfixes

Changes:
Bugfixes:
  • #​2784: Location on SourceNode differs from that on TypedElementToSourceNodeAdapter
New Functionality:
  • #​2264: Add terminology support for some non-supplied codesystems
  • #​2517: Support position information in FHIRPath expressions
Others:
  • #​2825: ValueSet expander: excluding a code, shouldn't remove its children
  • #​2822: Removed cardinality attribute from Binary.content
  • #​2819: Either set binary.data or binary.content when parsing binaries in the FhirClient
  • #​2811: Integrating generated code for Base, DataType, PrimitiveType and Extension
See More

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate bot enabled auto-merge (rebase) March 29, 2024 17:30
@github-actions
Copy link

github-actions bot commented Mar 29, 2024

🦙 MegaLinter status: ⚠️ WARNING

Descriptor Linter Files Fixed Errors Elapsed time
✅ ACTION actionlint 3 0 0.02s
✅ CSHARP csharpier 20 0 2.1s
✅ EDITORCONFIG editorconfig-checker 54 0 0.25s
✅ JSON jsonlint 9 0 0.15s
⚠️ JSON prettier 9 1 0.5s
✅ JSON v8r 9 0 3.52s
✅ MARKDOWN markdownlint 1 0 0.27s
✅ MARKDOWN markdown-link-check 1 0 2.6s
✅ MARKDOWN markdown-table-formatter 1 0 0.2s
✅ REPOSITORY checkov yes no 21.27s
✅ REPOSITORY dustilock yes no 0.0s
✅ REPOSITORY gitleaks yes no 0.45s
✅ REPOSITORY git_diff yes no 0.0s
✅ REPOSITORY grype yes no 18.84s
✅ REPOSITORY kics yes no 2.29s
✅ REPOSITORY secretlint yes no 0.66s
✅ REPOSITORY syft yes no 0.77s
✅ REPOSITORY trivy yes no 9.31s
✅ REPOSITORY trivy-sbom yes no 7.94s
✅ REPOSITORY trufflehog yes no 4.2s
✅ YAML prettier 6 0 0.43s
✅ YAML v8r 6 0 3.79s
✅ YAML yamllint 6 0 1.22s

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 2 times, most recently from 430274a to 8c0b529 Compare April 2, 2024 15:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 4de284e to c45fdd4 Compare April 12, 2024 17:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 61e7532 to afb4c5d Compare May 1, 2024 04:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from fa0e72c to 8646a6b Compare May 6, 2024 06:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8646a6b to 5301430 Compare May 14, 2024 20:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 37a4331 to 3158ee5 Compare May 25, 2024 06:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3158ee5 to bd80656 Compare May 29, 2024 22:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 822b471 to 5a53497 Compare June 11, 2024 22:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 19b0f3a to cbe85b8 Compare July 10, 2024 13:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d28c978 to 03259de Compare July 28, 2024 07:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ed92751 to ea9b590 Compare August 8, 2024 10:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 8519ca7 to 50fa4d3 Compare August 20, 2024 12:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 50fa4d3 to 04f34fe Compare August 27, 2024 11:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 93d3955 to a277afe Compare May 23, 2025 03:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b8d47fe to d35fd7e Compare June 9, 2025 14:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1c127f5 to 2be7a28 Compare June 16, 2025 17:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2be7a28 to 22542ac Compare June 24, 2025 20:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 22542ac to 02d2425 Compare July 9, 2025 16:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 02d2425 to e589bab Compare July 17, 2025 12:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e589bab to ea784da Compare August 6, 2025 02:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ea784da to e8aa728 Compare August 27, 2025 11:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from bda35fe to a0aafc0 Compare September 14, 2025 17:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ebd873b to ce7841e Compare September 24, 2025 14:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 51a1498 to ccfaebf Compare October 14, 2025 20:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 7c8e6a4 to 5a7c1b9 Compare November 5, 2025 13:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 31b366d to 8c4f52b Compare November 15, 2025 22:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1211167 to 459f86d Compare December 1, 2025 18:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 99071e2 to 53a89c1 Compare January 14, 2026 17:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 53a89c1 to 8ed63bd Compare January 23, 2026 22:32
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