Bump BenchmarkDotNet and 8 others#311
Closed
dependabot[bot] wants to merge 1 commit intomainfrom
Closed
Conversation
Bumps BenchmarkDotNet from 0.14.0 to 0.15.2 Bumps csharpier from 1.0.1 to 1.1.0 Bumps Dunet to 1.11.3 Bumps FluentAssertions to 8.5.0 Bumps Microsoft.CodeAnalysis.Analyzers to 4.14.0 Bumps Microsoft.CodeAnalysis.CSharp to 4.14.0 Bumps Microsoft.NET.Test.Sdk to 17.14.1 Bumps System.Text.Json from 9.0.4 to 9.0.7 Bumps xunit.runner.visualstudio to 3.1.3 --- updated-dependencies: - dependency-name: BenchmarkDotNet dependency-version: 0.15.2 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: Microsoft.CodeAnalysis.CSharp dependency-version: 4.14.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: csharpier dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: Dunet dependency-version: 1.11.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Dunet dependency-version: 1.11.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Dunet dependency-version: 1.11.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Dunet dependency-version: 1.11.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Dunet dependency-version: 1.11.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Dunet dependency-version: 1.11.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Dunet dependency-version: 1.11.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: FluentAssertions dependency-version: 8.5.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: FluentAssertions dependency-version: 8.5.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: Microsoft.CodeAnalysis.Analyzers dependency-version: 4.14.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Microsoft.CodeAnalysis.Analyzers dependency-version: 4.14.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Microsoft.CodeAnalysis.CSharp dependency-version: 4.14.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 17.14.1 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 17.14.1 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: System.Text.Json dependency-version: 9.0.7 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: xunit.runner.visualstudio dependency-version: 3.1.3 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: xunit.runner.visualstudio dependency-version: 3.1.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
|
Superseded by #312. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated BenchmarkDotNet from 0.14.0 to 0.15.2.
Release notes
Sourced from BenchmarkDotNet's releases.
0.15.2
Full changelog: https://benchmarkdotnet.org/changelog/v0.15.2.html
Highlights
0.15.1
Full changelog: https://benchmarkdotnet.org/changelog/v0.15.1.html
Highlights
0.15.0
Full changelog: https://benchmarkdotnet.org/changelog/v0.15.0.html
Commits viewable in compare view.
Updated csharpier from 1.0.1 to 1.1.0.
Release notes
Sourced from csharpier's releases.
1.1.0
What's Changed
.gitignore from parent folders impacts formatting of children #1627
CSharpier will no longer consider
.gitignorefiles located above the root of the current git repository.Changes to stdin formatting #288 #1657
There is a new option
--stdin-filepaththat is used to specify the filepath CSharpier should use for resolving options and ignore files.When no path is specified via
stdin-path<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
Support --ignore-path CLI option #1585
It is now possible to specify the path to an ignore file
dotnet csharpier format . --ignore-path .config/.csharpierignoreFormat xaml and slnx by default #1628 #1604
CSharpier now formats
xamlandslnxby 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.
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
formatandcheckcommands both used the same output message. Thecheckcommand now correctly reports that it checked files and did not format them.Multiline collection expressions should not be indented #1635
CSharpier now formats collection expressions consistently when they are in a property
switch expression formatting adds odd newlines #1620
CSharpier was breaking after a discard with a when, resulting in extra new lines
multi-line raw string in linq query causes a subsequent linq query to be printed on one line #1617
... (truncated)
1.0.2
What's Changed
Performance issues when supporting .gitignore. #1588
CSharpier was using a naive algorithm for parsing and evaluating gitignore rules that caused significant perfomance issues. @kevinboss reworked the implementation to drastically increate performance.
Exclude
bin/andobj/directory content from xml formatting #1600CSharpier now excludes all files in
bin/andobj/by default.Error on syntactically valid conditional with
is#1612The following c# is valid and compiles with
9.0.300+. CSharpier was updated to properly parse it.Xml formatting with comments in text element inserts extra new lines #1607
CSharpier has some issues with formatting text that contained xml comments. That has been improved.
Input & expected output
1.0.1
Inconsistent formatting of single-line lambda expressions #1594
CSharpier
1.0.0introduced a regression that caused the following formatting. This is now working as expected.