Skip to content

Bump the nuget group with 6 updates - #1

Merged
Tyrrrz merged 1 commit into
masterfrom
dependabot/nuget/nuget-2666d8cea0
May 31, 2024
Merged

Bump the nuget group with 6 updates#1
Tyrrrz merged 1 commit into
masterfrom
dependabot/nuget/nuget-2666d8cea0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 31, 2024

Copy link
Copy Markdown
Contributor

Bumps the nuget group with 6 updates:

Package From To
CSharpier.MsBuild 0.26.5 0.28.2
GitHubActionsTestLogger 2.3.3 2.4.1
Microsoft.NET.Test.Sdk 17.9.0 17.10.0
xunit 2.8.0 2.8.1
xunit.runner.visualstudio 2.8.0 2.8.1
PolyShim 1.10.0 1.12.0

Updates CSharpier.MsBuild from 0.26.5 to 0.28.2

Release notes

Sourced from CSharpier.MsBuild's releases.

0.28.2

What's Changed

Pipe to dotnet csharpier fails when subdirectory is inaccessible #1240

When running the following CSharpier would look for config files in subdirectories of the pwd. This could lead to exceptions if some of those directories were inaccessible.

echo "namespace Foo { public class Bar { public string Baz {get;set;}}}" | dotnet csharpier

Thanks go to @​jamesfoster for reporting the issue.

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

0.28.1

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

0.28.0

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](belav/csharpier#1192

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

// 0.27.3
switch (someValue)
{
    case 0:
</tr></table> 

... (truncated)

Changelog

Sourced from CSharpier.MsBuild's changelog.

# 0.28.2

What's Changed

Pipe to dotnet csharpier fails when subdirectory is inaccessible #1240

When running the following CSharpier would look for config files in subdirectories of the pwd. This could lead to exceptions if some of those directories were inaccessible.

echo "namespace Foo { public class Bar { public string Baz {get;set;}}}" | dotnet csharpier

Thanks go to @​jamesfoster for reporting the issue.

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

0.28.1

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

0.28.0

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](belav/csharpier#1192

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

// 0.27.3
switch (someValue)
{
    case 0:
    {
</tr></table> 

... (truncated)

Commits
  • 3e4366c Release 0.28.2 (#1245)
  • aea004c Limit config searching the same way editorconfig searching is limited (#1243)
  • 86f6690 CSharpier server was starting on 127.0.0.1, if localhost resolved to ::1 exte...
  • 488ddab Fix issue with csharpier server not using dotnet root (#1239)
  • 5d898a3 Supporting csharpier server for 0.28.0+ (#1236)
  • a2a547a make rider better about process failing to start (#1235)
  • 31e0868 Making csharpier server official for vs (#1234)
  • 4282d01 Fix encoding issue with unicode + csharpier 0.28+ (#1233)
  • 9cfaed2 Use 0.28.1
  • 5244417 Release 0.28.1 (#1230)
  • Additional commits viewable in compare view

Updates GitHubActionsTestLogger from 2.3.3 to 2.4.1

Release notes

Sourced from GitHubActionsTestLogger's releases.

2.4.1

What's Changed

Full Changelog: Tyrrrz/GitHubActionsTestLogger@2.4...2.4.1

2.4

What's Changed

New Contributors

Full Changelog: Tyrrrz/GitHubActionsTestLogger@2.3.3...2.4

Note: Going forward, new release notes will appear here instead of the Changelog.md file. If you want to see the release notes for older versions, you can find them here.

Commits

Updates Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

v17.10.0

What's Changed

And many infrastructure related changes and updates.

New Contributors

Full Changelog: microsoft/vstest@v17.9.0...v17.10.0

v17.10.0-release-24177-07

What's Changed

... (truncated)

Commits

Updates xunit from 2.8.0 to 2.8.1

Commits
  • ba2ae9b v2.8.1
  • 151b8d0 Use 'dotnet format' instead of 'dotnet dotnet-format'
  • be6db6f #2931: Tighten up types to prevent accidentically calling AddOrGet with a Con...
  • f466d81 #2927: Misleading error message when class used in IClassFixture<> throws exc...
  • 1911ea7 Missed unit test updates
  • f497d65 Cannot use full assembly path as dictionary key for execution options lookup,...
  • c2f2d47 Add ability to provide live output messages from running tests
  • 013093b Polyfill in StringSyntaxAttribute
  • e1e4c2e #2719: Class with custom Fact with throwing Skip should fail appropriately
  • 8b0b13c Clarify naming
  • Additional commits viewable in compare view

Updates xunit.runner.visualstudio from 2.8.0 to 2.8.1

Commits

Updates PolyShim from 1.10.0 to 1.12.0

Release notes

Sourced from PolyShim's releases.

1.12

What's Changed

Full Changelog: Tyrrrz/PolyShim@1.11...1.12

1.11

What's Changed

  • Add polyfills for RequiresDynamicCodeAttribute, RequiresUnreferencedCodeAttribute, and UnconditionalSuppressMessageAttribute by @​Tyrrrz in Tyrrrz/PolyShim#7

Full Changelog: Tyrrrz/PolyShim@1.10...1.11

Commits
  • d9c133d Add polyfills for OSPlatformAttribute and its derivatives (#9)
  • c2ca4e1 Add missing docs link
  • 335a384 Add polyfill for RequiresAssemblyFilesAttribute (#8)
  • 60900cd Add polyfills for RequiresDynamicCodeAttribute, `RequiresUnreferencedCodeAt...
  • 5133444 Test only on Windows
  • aa9e3c9 Remove missing file references
  • cefc0a9 Remove changelog
  • 8409e44 Use dotnet 8
  • b944fa7 Remove bodies from classes that don't require them
  • e892f2b More cleanup
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the nuget group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [CSharpier.MsBuild](https://github.com/belav/csharpier) | `0.26.5` | `0.28.2` |
| [GitHubActionsTestLogger](https://github.com/Tyrrrz/GitHubActionsTestLogger) | `2.3.3` | `2.4.1` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.9.0` | `17.10.0` |
| [xunit](https://github.com/xunit/xunit) | `2.8.0` | `2.8.1` |
| [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) | `2.8.0` | `2.8.1` |
| [PolyShim](https://github.com/Tyrrrz/PolyShim) | `1.10.0` | `1.12.0` |


Updates `CSharpier.MsBuild` from 0.26.5 to 0.28.2
- [Release notes](https://github.com/belav/csharpier/releases)
- [Changelog](https://github.com/belav/csharpier/blob/main/CHANGELOG.md)
- [Commits](belav/csharpier@0.26.5...0.28.2)

Updates `GitHubActionsTestLogger` from 2.3.3 to 2.4.1
- [Release notes](https://github.com/Tyrrrz/GitHubActionsTestLogger/releases)
- [Commits](Tyrrrz/GitHubActionsTestLogger@2.3.3...2.4.1)

Updates `Microsoft.NET.Test.Sdk` from 17.9.0 to 17.10.0
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.9.0...v17.10.0)

Updates `xunit` from 2.8.0 to 2.8.1
- [Commits](xunit/xunit@2.8.0...2.8.1)

Updates `xunit.runner.visualstudio` from 2.8.0 to 2.8.1
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](xunit/visualstudio.xunit@2.8.0...2.8.1)

Updates `PolyShim` from 1.10.0 to 1.12.0
- [Release notes](https://github.com/Tyrrrz/PolyShim/releases)
- [Commits](Tyrrrz/PolyShim@1.10...1.12)

---
updated-dependencies:
- dependency-name: CSharpier.MsBuild
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: GitHubActionsTestLogger
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: xunit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: PolyShim
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the enhancement New feature or request label May 31, 2024
@Tyrrrz
Tyrrrz merged commit cedd0a3 into master May 31, 2024
@dependabot
dependabot Bot deleted the dependabot/nuget/nuget-2666d8cea0 branch May 31, 2024 14:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant