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

chore(deps): bump the all group with 8 updates #77

Merged
merged 1 commit into from
Nov 18, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 18, 2024

Bumps the all group with 8 updates:

Package From To
Microsoft.CodeAnalysis.CSharp 4.8.0 4.11.0
H.Generators.Extensions 1.22.0 1.24.0
Avalonia 11.2.0 11.2.1
MSTest.TestAdapter 3.6.2 3.6.3
MSTest.TestFramework 3.6.2 3.6.3
Microsoft.CodeAnalysis.CSharp.Workspaces 4.11.0 4.8.0
H.Generators.Tests.Extensions 1.22.0 1.24.0
Verify.MSTest 28.2.0 28.3.1

Updates Microsoft.CodeAnalysis.CSharp from 4.8.0 to 4.11.0

Release notes

Sourced from Microsoft.CodeAnalysis.CSharp's releases.

.NET 6.0.1

Release

.NET 5.0.4

Release

.NET 5.0.2

Release Notes Install Instructions

Repos

Changelog

Sourced from Microsoft.CodeAnalysis.CSharp's changelog.

API Breaking Changes

Version 1.1.0

Removed VisualBasicCommandLineParser.ctor

During a toolset update we noticed the constructor on VisualBasicCommandLineParser was public. This in turn made many of the protected members of CommandLineParser a part of the API surface as it gave external customers an inheritance path.

It was never the intent for these members to be a part of the supported API surface. Creation of the parsers is meant to be done via the Default singleton properties. There seems to be little risk that we broke any customers here and hence we decided to remove this API.

PR: dotnet/roslyn#4169

Changed Simplifier methods to throw ArgumentNullExceptions

Changed Simplifier.ReduceAsync, Simplifier.ExpandAsync, and Simplifier.Expand methods to throw ArgumentNullExceptions if any non-optional, nullable arguments are passed in. Previously the user would get a NullReferenceException for synchronous methods and an AggregateException containing a NullReferenceException for asynchronous methods.

PR: dotnet/roslyn#5144

Version 1.3.0

Treat a method marked with both public and private flags as private

The scenario is loading an assembly where some methods, fields or nested types have accessibility flags set to 7 (all three bits set), which mean public AND private. After the fix, such flags are loaded to mean private. The compat change is we’re trading a compile-time success and runtime failure (native compiler) against a compile-time error (restoring the behavior of v1.2).

Details below:

  • The native compiler successfully compiles the method and field case (those only yield runtime error System.TypeLoadException: Invalid Field Access Flags) and reported an accessibility error on the nested type.
  • The 1.2 compiler generated errors:
error BC30390: 'C.Private Overloads Sub M()' is not accessible in this context because it is 'Private'.
error BC30389: 'C.F' is not accessible in this context because it is 'Private'.
error BC30389: 'C.C2' is not accessible in this context because it is 'Protected Friend'.
error BC30390: 'C2.Private Overloads Sub M2()' is not accessible in this context because it is 'Private'.
  • The 1.3 compiler crashes.
  • After fix, the same errors as 1.2 are generated again.

PR: dotnet/roslyn#11547

Don't emit bad DateTimeConstant, and load bad BadTimeConstant as default value instead

The change affects compatibility in two ways:

  • When loading an invalid DateTimeConstant(-1), the compiler will use default(DateTime) instead, whereas the native compiler would produce code that fails to execute.
  • DateTimeConstant(-1) will still count when we check that you don’t specify two default values. The compiler will produce an error, instead of succeeding (and producing IL with two attributes).

PR: dotnet/roslyn#11536

Version 4.1.0

... (truncated)

Commits

Updates H.Generators.Extensions from 1.22.0 to 1.24.0

Commits

Updates Avalonia from 11.2.0 to 11.2.1

Release notes

Sourced from Avalonia's releases.

11.2.1

What's Changed

Enhancements

Fixes

Full Changelog: AvaloniaUI/Avalonia@11.2.0...11.2.1

Commits

Updates MSTest.TestAdapter from 3.6.2 to 3.6.3

Changelog

Sourced from MSTest.TestAdapter's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog

Commits

Updates MSTest.TestFramework from 3.6.2 to 3.6.3

Changelog

Sourced from MSTest.TestFramework's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog

Commits

Updates Microsoft.CodeAnalysis.CSharp.Workspaces from 4.11.0 to 4.8.0

Release notes

Sourced from Microsoft.CodeAnalysis.CSharp.Workspaces's releases.

.NET 6.0.1

Release

.NET 5.0.4

Release

.NET 5.0.2

Release Notes Install Instructions

Repos

Changelog

Sourced from Microsoft.CodeAnalysis.CSharp.Workspaces's changelog.

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.

Deprecation warning for SyntaxNode serialization

The ability to serialize/deserialize a SyntaxNode to/from a Stream has been deprecated. The code for this still exists in Roslyn, but attempting to call the APIs to perform these functions will result in 'Obsolete' warnings being reported. A future version of Roslyn will remove this functionality entirely. This functionality could only work for a host that wrote out the nodes to a stream, and later read it back in within the same process instance. It could not be used to communicate across processes, or for persisting nodes to disk to be read in at a later time by a new host sessions. This functionality originally existed for the days when Roslyn was hosted in 32bit processes with limited address space. That is no longer a mainline supported scenario. Clients can get similar functionality by persisting the text of the node, and parsing it back out when needed.

PR: dotnet/roslyn#70365

Version 4.9.0

Obsoletion and removal of SyntaxNode serialization.

Continuation of the deprecation that happened in 4.8.0 (see information above). In 4.9.0 this functionality is now entirely removed, and will issue both an obsoletion error, and will throw at runtime if the APIs are used.

PR: dotnet/roslyn#70277

Changes in Microsoft.CodeAnalysis.Emit.EmitBaseline.CreateInitialBaseline method

A new required parameter Compilation has been added. Existing overloads without this parameter no longer work and throw NotSupportedException.

Changes in Microsoft.CodeAnalysis.Emit.SemanticEdit constructors

The value of preserveLocalVariables passed to the constructors is no longer used.

Commits

Updates H.Generators.Tests.Extensions from 1.22.0 to 1.24.0

Commits

Updates MSTest.TestFramework from 3.6.2 to 3.6.3

Changelog

Sourced from MSTest.TestFramework's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog

Commits

Updates Verify.MSTest from 28.2.0 to 28.3.1

Commits

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 all group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [Microsoft.CodeAnalysis.CSharp](https://github.com/dotnet/roslyn) | `4.8.0` | `4.11.0` |
| [H.Generators.Extensions](https://github.com/HavenDV/H.Generators.Extensions) | `1.22.0` | `1.24.0` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.2.0` | `11.2.1` |
| [MSTest.TestAdapter](https://github.com/microsoft/testfx) | `3.6.2` | `3.6.3` |
| [MSTest.TestFramework](https://github.com/microsoft/testfx) | `3.6.2` | `3.6.3` |
| [Microsoft.CodeAnalysis.CSharp.Workspaces](https://github.com/dotnet/roslyn) | `4.11.0` | `4.8.0` |
| [H.Generators.Tests.Extensions](https://github.com/HavenDV/H.Generators.Extensions) | `1.22.0` | `1.24.0` |
| [Verify.MSTest](https://github.com/VerifyTests/Verify) | `28.2.0` | `28.3.1` |


Updates `Microsoft.CodeAnalysis.CSharp` from 4.8.0 to 4.11.0
- [Release notes](https://github.com/dotnet/roslyn/releases)
- [Changelog](https://github.com/dotnet/roslyn/blob/main/docs/Breaking%20API%20Changes.md)
- [Commits](https://github.com/dotnet/roslyn/commits)

Updates `H.Generators.Extensions` from 1.22.0 to 1.24.0
- [Release notes](https://github.com/HavenDV/H.Generators.Extensions/releases)
- [Commits](https://github.com/HavenDV/H.Generators.Extensions/commits)

Updates `Avalonia` from 11.2.0 to 11.2.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.2.0...11.2.1)

Updates `MSTest.TestAdapter` from 3.6.2 to 3.6.3
- [Release notes](https://github.com/microsoft/testfx/releases)
- [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md)
- [Commits](https://github.com/microsoft/testfx/commits)

Updates `MSTest.TestFramework` from 3.6.2 to 3.6.3
- [Release notes](https://github.com/microsoft/testfx/releases)
- [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md)
- [Commits](https://github.com/microsoft/testfx/commits)

Updates `Microsoft.CodeAnalysis.CSharp.Workspaces` from 4.11.0 to 4.8.0
- [Release notes](https://github.com/dotnet/roslyn/releases)
- [Changelog](https://github.com/dotnet/roslyn/blob/main/docs/Breaking%20API%20Changes.md)
- [Commits](https://github.com/dotnet/roslyn/commits)

Updates `H.Generators.Tests.Extensions` from 1.22.0 to 1.24.0
- [Release notes](https://github.com/HavenDV/H.Generators.Extensions/releases)
- [Commits](https://github.com/HavenDV/H.Generators.Extensions/commits)

Updates `MSTest.TestFramework` from 3.6.2 to 3.6.3
- [Release notes](https://github.com/microsoft/testfx/releases)
- [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md)
- [Commits](https://github.com/microsoft/testfx/commits)

Updates `Verify.MSTest` from 28.2.0 to 28.3.1
- [Release notes](https://github.com/VerifyTests/Verify/releases)
- [Commits](VerifyTests/Verify@28.2.0...28.3.1)

---
updated-dependencies:
- dependency-name: Microsoft.CodeAnalysis.CSharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: H.Generators.Extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: MSTest.TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: MSTest.TestFramework
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: H.Generators.Tests.Extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: MSTest.TestFramework
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Verify.MSTest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 18, 2024
@github-actions github-actions bot merged commit 68182ec into main Nov 18, 2024
1 of 2 checks passed
@dependabot dependabot bot deleted the dependabot/nuget/all-d0df6c9384 branch November 18, 2024 03:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants