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

Bump the nuget group with 5 updates #146

Merged
merged 1 commit into from
Sep 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps the nuget group with 5 updates:

Package From To
Basic.Reference.Assemblies.Net80 1.7.2 1.7.8
CSharpier.MsBuild 0.28.2 0.29.1
Microsoft.NET.Test.Sdk 17.10.0 17.11.0
BenchmarkDotNet 0.13.12 0.14.0
Microsoft.CodeAnalysis.CSharp 3.0.0 4.1.0

Updates Basic.Reference.Assemblies.Net80 from 1.7.2 to 1.7.8

Release notes

Sourced from Basic.Reference.Assemblies.Net80's releases.

Release v1.7.8

Create release 1.7.8

Release v1.7.7

Create release 1.7.7

Release v1.7.6

Create release 1.7.6

Release v1.7.5

Create release 1.7.5

Release v1.7.4

Create release 1.7.4

Commits

Updates CSharpier.MsBuild from 0.28.2 to 0.29.1

Release notes

Sourced from CSharpier.MsBuild's releases.

0.29.1

What's Changed

Sorting of usings with underscore differs from Visual Studio #1327

CSharpier now sorts _ to the bottom of usings.

using SomeCompany.MWord;
using SomeCompany.ZWord;
using SomeCompany._Word;

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

0.29.0

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.

// input
public enum SomeEnum
{
    Value1,
    Value2
}
string[] someArray = new string[]
{
someLongValue_____________________________________________,
someLongValue_____________________________________________
};
string[] someArray = new string[]
{
someValue,
someValue,
};
// 0.29.0
public enum SomeEnum
{
Value1,
Value2,
}
</tr></table>

... (truncated)

Changelog

Sourced from CSharpier.MsBuild's changelog.

# 0.29.1

What's Changed

Sorting of usings with underscore differs from Visual Studio #1327

CSharpier now sorts _ to the bottom of usings.

using SomeCompany.MWord;
using SomeCompany.ZWord;
using SomeCompany._Word;

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

0.29.0

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.

// input
public enum SomeEnum
{
    Value1,
    Value2
}
string[] someArray = new string[]
{
someLongValue_____________________________________________,
someLongValue_____________________________________________
};
string[] someArray = new string[]
{
someValue,
someValue,
};
// 0.29.0
public enum SomeEnum
{
Value1,
Value2,
}
string[] someArray = new string[]
</tr></table>

... (truncated)

Commits
  • b87b4df Releasing 0.29.1 (#1331)
  • 10e0780 Support for multiple csharpier servers running at the same time, have them wr...
  • 2ed8622 Getting _ to sort to the top like it should (#1328)
  • 688aeb7 VS - Use dotnet tool list to find both local and global installs of csharpier...
  • 1cdcf0a fix width
  • c529570 prettier all the java
  • 88383e7 Using dotnet tool list for rider extension (#1325)
  • 2456512 Modify VSCode extension to use dotnet tool list + only warn to instal… (#1323)
  • 6cb3821 Format with 29 (#1322)
  • 0abbc1d fix typo
  • Additional commits viewable in compare view

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

Release notes

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

v17.11.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.10.0...v17.11.0-release-24352-06

v17.11.0-release-24373-02

What's Changed

... (truncated)

Commits

Updates BenchmarkDotNet from 0.13.12 to 0.14.0

Release notes

Sourced from BenchmarkDotNet's releases.

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()).
Commits
  • cf882d3 Add macOS Sequoia in OsBrandStringHelper
  • 17cf3b0 [docs] Prepare v0.14.0 changelog
  • b3fbe7c Set next BenchmarkDotNet version: 0.14.0
  • 23e6c52 Fix InvalidOperationException in DotMemoryDiagnoser
  • 3d34edb Bump JetBrains.Profiler.SelfApi: 2.5.2->2.5.9
  • bf0a49d fix(CI): Deprecation issues (#2605)
  • 0275649 Fixed crash from TaskbarProgress when BuiltInComInteropSupport is disabled. ...
  • 15200d4 [build] Add BenchmarkDotNet.Exporters.Plotting.Tests to unit-tests
  • 834417a Improve logging in ScottPlotExporterTests
  • f8082a2 Fix IntroSummaryStyle compilation
  • Additional commits viewable in compare view

Updates Microsoft.CodeAnalysis.CSharp from 3.0.0 to 4.1.0

Release notes

Sourced from Microsoft.CodeAnalysis.CSharp's releases.

.NET 6.0.1

Release

.NET 6.0

Release

.NET 6.0 Preview 6

Release

.NET 6.0 Preview 4

Release

.NET 6.0 Preview 5

Release

.NET 6.0 Preview 3

Release

.NET 6.0 Preview 2

Release

.NET 6.0 Preview 1

Release

.NET 5.0.4

Release

.NET 5.0.2

Release Notes Install Instructions

Repos

.NET 5.0.1

Release Notes Install Instructions

Repo

.NET 5.0 Preview 6

Release Notes Install Instructions

Repos

... (truncated)

Changelog

Sourced from Microsoft.CodeAnalysis.CSharp's changelog.

Version 4.1.0

Can no longer inherit from CompletionService and CompletionServiceWithProviders

The constructors of Microsoft.CodeAnalysis.Completion and Microsoft.CodeAnalysis.Completion.CompletionServiceWithProviders are now internal. Roslyn does not support implementing completion for arbitrary languages.

Version 4.2.0

Can no longer inherit from QuickInfoService

The constructors of Microsoft.CodeAnalysis.QuickInfoService are now internal. Roslyn does not support implementing completion for arbitrary languages.

Microsoft.CodeAnalysis.CodeStyle.NotificationOption is now immutable

All property setters now throw an exception.

Version 4.4.0

Workspace.OnWorkspaceFailed is no longer called when an error occurs while reading source file content from disk.

The Workspace and DocumentId parameters of TextLoader.LoadTextAndVersionAsync(Workspace, DocumentId, CancellationToken) are deprecated. The method now receives null Workspace and DocumentId.

Version 4.5.0

SymbolDisplayFormat.CSharpErrorMessageFormat and CSharpShortErrorMessageFormat now include parameter names by default if used on a standalone IParameterSymbol. For example, parameter p in void M(ref int p) was previously formatted as "ref int" and now it is formatted as "ref int p".

Version 4.7.0

SymbolDisplayFormat includes parameter name when invoked on IParameterSymbol

All SymbolDisplayFormats (predefined and user-created) now include parameter names by default if used on a standalone IParameterSymbol for consistency with predefined formats (see the breaking change for version 4.5.0 above).

Changed IncrementalStepRunReason when a modified input produced a new output

IncrementalGeneratorRunStep.Outputs previously contained IncrementalStepRunReason.Modified as Reason when the input to the step was modified in a way that produced a new output. Now the reason will be reported more accurately as IncrementalStepRunReason.New.

Version 4.8.0

Changed Assembly.Location behavior in non-Windows

The value of Assembly.Location previously held the location on disk where an analyzer or source generator was loaded from. This could be either the original location or the shadow copy location. In 4.8 this will be "" in certain cases when running on non Windows platforms. This is due the compiler server loading assemblies using AssemblyLoadContext.LoadFromStream instead of loading from disk.

This could already happen in other load scenarios but this change moves it into mainline build scenarios.

... (truncated)

Commits
  • 8183134 Merge pull request #58232 from dotnet/merges/release/dev17.1-to-release/dev17...
  • 76610d0 Merge pull request #58230 from dotnet/dev/jorobich/update-loc-branch
  • a91348e Update localized branch to release/dev17.1-vs-deps
  • 4e139d3 Merge pull request #58167 from dotnet/merges/release/dev17.1-to-release/dev17...
  • 032a9be Merge pull request #58075 from jmarolf/features/editorconfig-naming-style-sup...
  • 86ef543 move search bar up by 12 pixels
  • cb5cfc0 use Lazy instead of fancy InterlockedInitialize
  • 132f6b0 return false if we fail to determine the language for a path
  • a321a3f Combine Lex with static function
  • b2ca734 update incorrect comment
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
Microsoft.CodeAnalysis.CSharp [> 3.0.0]

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 5 updates:

| Package | From | To |
| --- | --- | --- |
| [Basic.Reference.Assemblies.Net80](https://github.com/jaredpar/basic-reference-assemblies) | `1.7.2` | `1.7.8` |
| [CSharpier.MsBuild](https://github.com/belav/csharpier) | `0.28.2` | `0.29.1` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.10.0` | `17.11.0` |
| [BenchmarkDotNet](https://github.com/dotnet/BenchmarkDotNet) | `0.13.12` | `0.14.0` |
| [Microsoft.CodeAnalysis.CSharp](https://github.com/dotnet/roslyn) | `3.0.0` | `4.1.0` |


Updates `Basic.Reference.Assemblies.Net80` from 1.7.2 to 1.7.8
- [Release notes](https://github.com/jaredpar/basic-reference-assemblies/releases)
- [Commits](jaredpar/basic-reference-assemblies@v1.7.2...v1.7.8)

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

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

Updates `BenchmarkDotNet` from 0.13.12 to 0.14.0
- [Release notes](https://github.com/dotnet/BenchmarkDotNet/releases)
- [Commits](dotnet/BenchmarkDotNet@v0.13.12...v0.14.0)

Updates `Microsoft.CodeAnalysis.CSharp` from 3.0.0 to 4.1.0
- [Release notes](https://github.com/dotnet/roslyn/releases)
- [Changelog](https://github.com/dotnet/roslyn/blob/main/docs/Breaking%20API%20Changes.md)
- [Commits](dotnet/roslyn@version-3.0.0...v4.1.0)

---
updated-dependencies:
- dependency-name: Basic.Reference.Assemblies.Net80
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: CSharpier.MsBuild
  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: BenchmarkDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Microsoft.CodeAnalysis.CSharp
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the enhancement New feature or request label Sep 1, 2024
@Tyrrrz Tyrrrz merged commit ab48098 into master Sep 1, 2024
7 checks passed
@Tyrrrz Tyrrrz deleted the dependabot/nuget/nuget-47702fa43f branch September 1, 2024 16:05
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