-
Notifications
You must be signed in to change notification settings - Fork 60
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 #307
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #307 +/- ##
==========================================
- Coverage 65.43% 65.43% -0.01%
==========================================
Files 256 256
Lines 22947 22946 -1
Branches 1949 1949
==========================================
- Hits 15016 15015 -1
Misses 7378 7378
Partials 553 553 ☔ View full report in Codecov by Sentry. |
598c2f4
to
6a79053
Compare
6a79053
to
047777d
Compare
Signed-off-by: Alexander Linne <[email protected]>
Signed-off-by: Alexander Linne <[email protected]>
21f34b3
to
e5c4c74
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
Signed-off-by: Alexander Linne <[email protected]>
b8b6ed0
to
3a833d4
Compare
This PR contains the following updates:
2.2.3
->2.2.10
2.2.3
->2.2.10
16.9.4
->16.11.0
0.11.5
->0.11.6
26.1.6
->26.6.0
v4.1.7
->v4.2.0
v4.5.0
->v4.6.0
0.28.2
->0.29.2
5.3.8
->5.3.10
v3.26.0
->v3.26.11
2.4.1
->2.9.2
2.9.0
->2.9.2
2.4.3
->2.8.2
Release Notes
microsoft/testfx (MSTest.TestAdapter)
v2.2.10
See release notes here.
v2.2.9
Parallel output
MSTest 2.2.9 captures all Console output and attaches it to the correct test, even if you are running tests in parallel. This output is captured from your test code as well as from the tested code. And it requires no special setup.
Before
In 2.2.8, test output is scattered among tests, in our example, one unlucky test gets all the output of other tests just mixed together:
After
With 2.2.9, each output is correctly attached to the test that produced it:
Also notice that we are also capturing debug, trace and error. And we are not awaiting the FastChild method, and the output is still assigned correctly. Souce code.
Limitations
Due to the way that class and assembly initialize, and cleanup are invoked, their output will end up in the first test that run (or last for cleanup). This is unfortunately not easily fixable.
See release notes here.
v2.2.8
See release notes here.
v2.2.7
See release notes here.
v2.2.6
See release notes here.
v2.2.5
See release notes here.
v2.2.4
See release notes here.
microsoft/vstest (Microsoft.NET.Test.Sdk)
v16.11.0
See the release notes here.
v16.10.0
See the release notes here.
jbevain/cecil (Mono.Cecil)
v0.11.6
Compare Source
VerifyTests/Verify (Verify.xunit)
v26.6.0
Compare Source
v26.5.0
Compare Source
v26.4.5
Compare Source
v26.4.4
Compare Source
v26.4.3
Compare Source
v26.4.2
Compare Source
v26.4.1
Compare Source
v26.4.0
Compare Source
v26.3.1
Compare Source
v26.3.0
Compare Source
v26.2.0
Compare Source
actions/checkout (actions/checkout)
v4.2.0
Compare Source
codecov/codecov-action (codecov/codecov-action)
v4.6.0
Compare Source
What's Changed
versionInfo
by @marcobiedermann in https://github.com/codecov/codecov-action/pull/1407evenName
in the logs correctly by @webknjaz in https://github.com/codecov/codecov-action/pull/1560New Contributors
Full Changelog: codecov/codecov-action@v4.5.0...v4.6.0
belav/csharpier (csharpier)
v0.29.2
Compare Source
What's Changed
Comments don't follow tabs indent style #1343
Prior to
0.29.2
CSharpier was converting any tabs within the block of a multiline comment to spaces.csharpier-ignore-start
now supported in object initializers #1342Fixed extra new line between cast and collection expression. #1334
Support custom extensions in .editorconfig #1273
As of
0.29.0
CSharpier could format non-standard file extensions, but only if configured in thecsharpierrc
file. This is now supported with an.editorconfig
Full Changelog: belav/csharpier@0.29.1...0.29.2
v0.29.1
Compare Source
What's Changed
Sorting of usings with underscore differs from Visual Studio #1327
CSharpier now sorts
_
to the bottom of usings.Process cannot access the file "....net8.0\any\server.log" while running multiple extensions. #1324
CSharpier Server now uses a log file name based on the port that it is starting on to avoid concurrency issues trying to access the same log file
Full Changelog: belav/csharpier@0.29.0...0.29.1
v0.29.0
Compare Source
Breaking Changes
The formatting command will now exit with an error code of 1 if one of the target files cannot be compiled #1131
Prior to 0.29.0 if csharpier encountered a file that could not be compiled it would treat it as a warning and exit with a code of 0.
As of 0.29.0 a file that cannot be compiled is now treated as an error and csharpier will exit with code 1
What's Changed
Enforce trailing commas in object and collection initializer #668
CSharpier will now add trailing commas automatically where appropriate. It will collapse to a single line and remove the trailing comma in cases where everything fits on one line.
Many thanks go to @dawust for the contribution.
Support for formatting custom file extensions #1220
Prior to 0.29.0 csharpier would only format files with an extension of .cs or .csx. It is now possible to configure csharpier to format other files extensions, and to specify configuration options per file extension.
See https://csharpier.com/docs/Configuration#configuration-overrides for more details.
Invalid blank line being added with lambda returning collection expression #1306
Switch expressions do not break consistently with other lambdas #1282
Prior to 0.29.0 csharpier would break before the
=>
in switch expression arms. It now breaks after them to be consistent with other lambda expressions.Formatting of empty collection initializer for huge type #1268
Empty collection expression initializers formatting was including a break plus indentation resulting in poor formatting.
Thanks go to @Rudomitori for the contribution
Switch expression single line broken when preceded by comment #1262
Improved formatting for short expression arms that have a leading comment.
Incorrect formatting of ternary expression with a comment after an interpolated string #1258
Fixed bug with comments on a ternary expression that resulted in invalid code.
Formatting for indexer parameters should mostly be the same as for method parameters. #1255
Improved formatting of indexed properties that contained attributes.
Do not overwrite
CSharpier_Check
when already set. #1314Fixed a bug with csharpier.msbuild where it would overwrite the
CSharpier_Check
value in some cases.Thanks go to @PetSerAl for the contribution
The CLI has contradictory message about directoryOrFile being required #1296
The help text for the cli has been improved to better indicate when
directoryOrFile
is required.Thanks go to @marcinjahn for the contribution
Fullwidth unicode characters should be accounted for in print width #260
CSharpier now considers full width unicode characters such as
가
to be 2 spaces wide when determining how to format code.Full Changelog: belav/csharpier@0.28.2...0.29.0
danielpalme/ReportGenerator (dotnet-reportgenerator-globaltool)
v5.3.10
: ReportGenerator_5.3.10Changes:
This release requires .NET Framework 4.7 or .NET 6.0/7.0/8.0
v5.3.9
: ReportGenerator_5.3.9Changes:
This release requires .NET Framework 4.7 or .NET 6.0/7.0/8.0
github/codeql-action (github/codeql-action)
v3.26.11
Compare Source
v3.26.10
Compare Source
v3.26.9
Compare Source
v3.26.8
Compare Source
v3.26.7
Compare Source
v3.26.6
Compare Source
v3.26.5
Compare Source
v3.26.4
Compare Source
v3.26.3
Compare Source
v3.26.2
Compare Source
v3.26.1
Compare Source
xunit/xunit (xunit)
v2.9.0
Compare Source
v2.8.1
Compare Source
v2.8.0
Compare Source
v2.7.1
Compare Source
v2.7.0
Compare Source
v2.6.6
Compare Source
v2.6.5
Compare Source
v2.6.4
Compare Source
v2.6.3
Compare Source
v2.6.2
Compare Source
v2.6.1
Compare Source
v2.6.0
Compare Source
v2.5.3
Compare Source
v2.5.2
Compare Source
v2.5.1
Compare Source
v2.5.0
Compare Source
v2.4.2
Compare Source
xunit/visualstudio.xunit (xunit.runner.visualstudio)
v2.8.2
Compare Source
v2.8.1
Compare Source
v2.8.0
Compare Source
v2.5.8
Compare Source
v2.5.7
Compare Source
v2.5.6
Compare Source
v2.5.5
Compare Source
v2.5.4
Compare Source
v2.5.3
Compare Source
v2.5.1
Compare Source
v2.5.0
Compare Source
v2.4.5
Compare Source
Changes:
This list of changes was auto generated.
v2.4.4
Compare Source
Changes:
Bugs:
Others:
See More
This list of changes was auto generated.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.
This PR was generated by Mend Renovate. View the repository job log.