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

build(deps): Bump the all group across 1 directory with 11 updates #15

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

Bumps the all group with 11 updates in the / directory:

Package From To
Microsoft.CodeAnalysis.CSharp 4.3.1 4.11.0
H.Generators.Extensions 1.22.0 1.24.0
Microsoft.Bcl.AsyncInterfaces 8.0.0 9.0.0
Microsoft.Bcl.AsyncInterfaces 8.0.0 6.0.0
OpenAI 1.11.0 2.1.0
PolySharp 1.14.1 1.15.0
Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 4.8.0
H.Generators.Tests.Extensions 1.15.0 1.24.0
H.Resources.Generator 1.5.0 1.6.1
MSTest.TestFramework 3.0.2 3.7.0
Verify.MSTest 19.12.1 28.7.0
Verify.SourceGenerators 2.1.0 2.5.0

Updates Microsoft.CodeAnalysis.CSharp from 4.3.1 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 Microsoft.Bcl.AsyncInterfaces from 8.0.0 to 9.0.0

Release notes

Sourced from Microsoft.Bcl.AsyncInterfaces's releases.

.NET 9.0.0

Release

What's Changed

... (truncated)

Commits

Updates Microsoft.Bcl.AsyncInterfaces from 8.0.0 to 6.0.0

Release notes

Sourced from Microsoft.Bcl.AsyncInterfaces's releases.

.NET 9.0.0

Release

What's Changed

... (truncated)

Commits

Updates OpenAI from 1.11.0 to 2.1.0

Release notes

Sourced from OpenAI's releases.

OpenAI_2.1.0

What's Changed

New Contributors

Full Changelog: openai/openai-dotnet@OpenAI_2.1.0-beta.2...OpenAI_2.1.0

OpenAI_2.1.0-beta.2

What's Changed

New Contributors

Full Changelog: openai/openai-dotnet@OpenAI_2.1.0-beta.1...OpenAI_2.1.0-beta.2

OpenAI_2.1.0-beta.1

What's Changed

Full Changelog: openai/openai-dotnet@OpenAI_2.0.0...OpenAI_2.1.0-beta.1

OpenAI_2.0.0

What's Changed

Full Changelog: openai/openai-dotnet@OpenAI_2.0.0-beta.13...OpenAI_2.0.0

OpenAI_2.0.0-beta.13

What's Changed

... (truncated)

Changelog

Sourced from OpenAI's changelog.

2.1.0 (2024-12-04)

Features added

  • OpenAI.Assistants:

Breaking Changes in Preview APIs

  • OpenAI.RealtimeConversation:
    • Renamed the From*() factory methods on ConversationContentPart to Create*Part() for consistency. (bf3f0ed)
    • Removed an extraneous toolCallId parameter from ConversationItem.CreateSystemMessage(). (bf3f0ed)
  • OpenAI.Assistants:
    • Renamed RunStepType to RunStepKind. (bf3f0ed)
    • Changed RunStepKind from an "extensible enum" to a regular enum. (bf3f0ed)
    • Renamed the ToolCallId property of RunStepToolCall to Id. (bf3f0ed)
    • Renamed the ToolKind property of RunStepToolCall to Kind. (bf3f0ed)
    • Replaced the FileSearchRanker and FileSearchScoreThreshold properties of RunStepToolCall with a new FileSearchRankingOptions property that contains both values to make it clearer how they are related. (bf3f0ed)

Bugs fixed

  • OpenAI.RealtimeConversation:
    • Fixed serialization issues with ConversationItem creation of system and assistant messages. (bf3f0ed)
    • Fixed an issue causing a deadlock when calling the RealtimeConversationSession's SendInputAudio method overload that takes a BinaryData parameter. (f491c2d)

2.1.0-beta.2 (2024-11-04)

Features added

  • OpenAI.Chat:
    • Added a StoredOutputEnabled property to ChatCompletionOptions (store in the REST API). (b0f9e5c)
      • Use this property to indicate whether or not to store the output of the chat completion for use in model distillation or evals.
    • Added a Metadata property to ChatCompletionOptions (metadata in the REST API). (b0f9e5c)
      • Use this property to add custom tags and values to the chat completions for filtering in the OpenAI dashboard.
    • Added an InputTokenDetails property to ChatTokenUsage (usage.prompt_token_details in the REST API). (b0f9e5c)
      • The property is of a new type called ChatInputTokenUsageDetails, which contains properties for AudioTokenCount and CachedTokenCount for usage with supported models.
    • Added an AudioTokenCount property to ChatOutputTokenUsageDetails (usage.completion_token_details in the REST API). Audio support in chat completions is coming soon. (b0f9e5c)
  • OpenAI.Moderations:
    • Added Illicit and IllicitViolent properties ModerationResult to represent these two new moderation categories. (b0f9e5c)

Breaking Changes in Preview APIs

  • OpenAI.RealtimeConversation:
    • Made improvements to the experimental Realtime API. Please note this features area is currently under rapid development and not all changes may be reflected here. (b0f9e5c)
      • Several types have been renamed for consistency and clarity.
      • ConversationRateLimitsUpdate (previously ConversationRateLimitsUpdatedUpdate) now includes named RequestDetails and TokenDetails properties, mapping to the corresponding named items in the underlying rate_limits command payload.

Bugs Fixed

... (truncated)

Commits

Updates PolySharp from 1.14.1 to 1.15.0

Release notes

Sourced from PolySharp's releases.

1.15.0

This PolySharp release includes C# 13 support.

🪄 Polyfills

🔧 Other changes

New Contributors

Commits
  • 02753db Merge pull request #114 from Sergio0694/dev/constant-expected-attribute
  • cd55412 Add tests for '[ConstantExpected]' attribute
  • 8ed69f9 Update 'README.md' files
  • b100d4b Add 'ConstantExpectedAttribute' type
  • 06e5008 Merge pull request #108 from teo-tsirpanis/net9
  • 81cedeb Fix a typo in CONTRIBUTING.md
  • 92b7b24 Use .NET 9 SDK, update unit tests
  • d9e4541 Update README.md files
  • b71f56f Adapt the attributes to the codebase's standards.
  • 32ac9c8 Copy .NET 9 attribute sources from dotnet/runtime.
  • Additional commits viewable in compare view

Updates Microsoft.CodeAnalysis.CSharp.Workspaces from 4.5.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.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.

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.15.0 to 1.24.0

Commits

Updates H.Resources.Generator from 1.5.0 to 1.6.1

Commits

Updates MSTest.TestFramework from 3.0.2 to 3.7.0

Release notes

Sourced from MSTest.TestFramework's releases.

v3.7.0

See the release notes here

v3.6.4

See the release notes here

v3.6.3

See the release notes here

v3.6.2

See the release notes here

v3.6.1

See the release notes here

v3.6.0

See the release notes here

Special shoutout to @​SimonCropp for his exceptional contribution in improving the quality of the repository.

v3.5.2

See the release notes here

v3.5.1

See the release notes here

v3.5.0

See the release notes here

v3.4.3

See the release notes here

v.3.4.2

See the release notes here

v3.4.1

See the release notes here

v3.4.0

Here are the highlights of the current release, full change log is available below:

microsoft/testfx@v3.3.1...v3.4.0

MSTest

New and improved analyzers

We've added more code analyzers to help you prevent mistakes, and to ensure a consistent code style of your tests.

... (truncated)

Changelog

Sourced from MSTest.TestFramework's changelog.

[3.7.0] - 2024-12-20

See full log here

Added

Bumps the all group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [Microsoft.CodeAnalysis.CSharp](https://github.com/dotnet/roslyn) | `4.3.1` | `4.11.0` |
| [H.Generators.Extensions](https://github.com/HavenDV/H.Generators.Extensions) | `1.22.0` | `1.24.0` |
| [Microsoft.Bcl.AsyncInterfaces](https://github.com/dotnet/runtime) | `8.0.0` | `9.0.0` |
| [Microsoft.Bcl.AsyncInterfaces](https://github.com/dotnet/runtime) | `8.0.0` | `6.0.0` |
| [OpenAI](https://github.com/openai/openai-dotnet) | `1.11.0` | `2.1.0` |
| [PolySharp](https://github.com/Sergio0694/PolySharp) | `1.14.1` | `1.15.0` |
| [Microsoft.CodeAnalysis.CSharp.Workspaces](https://github.com/dotnet/roslyn) | `4.5.0` | `4.8.0` |
| [H.Generators.Tests.Extensions](https://github.com/HavenDV/H.Generators.Extensions) | `1.15.0` | `1.24.0` |
| [H.Resources.Generator](https://github.com/HavenDV/H.Resources.Generator) | `1.5.0` | `1.6.1` |
| [MSTest.TestFramework](https://github.com/microsoft/testfx) | `3.0.2` | `3.7.0` |
| [Verify.MSTest](https://github.com/VerifyTests/Verify) | `19.12.1` | `28.7.0` |
| [Verify.SourceGenerators](https://github.com/VerifyTests/Verify.SourceGenerators) | `2.1.0` | `2.5.0` |



Updates `Microsoft.CodeAnalysis.CSharp` from 4.3.1 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 `Microsoft.Bcl.AsyncInterfaces` from 8.0.0 to 9.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v9.0.0)

Updates `Microsoft.Bcl.AsyncInterfaces` from 8.0.0 to 6.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v9.0.0)

Updates `OpenAI` from 1.11.0 to 2.1.0
- [Release notes](https://github.com/openai/openai-dotnet/releases)
- [Changelog](https://github.com/openai/openai-dotnet/blob/main/CHANGELOG.md)
- [Commits](https://github.com/openai/openai-dotnet/commits/OpenAI_2.1.0)

Updates `PolySharp` from 1.14.1 to 1.15.0
- [Release notes](https://github.com/Sergio0694/PolySharp/releases)
- [Commits](Sergio0694/PolySharp@1.14.1...1.15.0)

Updates `Microsoft.CodeAnalysis.CSharp.Workspaces` from 4.5.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.15.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 `H.Resources.Generator` from 1.5.0 to 1.6.1
- [Release notes](https://github.com/HavenDV/H.Resources.Generator/releases)
- [Commits](https://github.com/HavenDV/H.Resources.Generator/commits)

Updates `MSTest.TestFramework` from 3.0.2 to 3.7.0
- [Release notes](https://github.com/microsoft/testfx/releases)
- [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md)
- [Commits](microsoft/testfx@v3.0.2...v3.7.0)

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

Updates `Verify.SourceGenerators` from 2.1.0 to 2.5.0
- [Release notes](https://github.com/VerifyTests/Verify.SourceGenerators/releases)
- [Commits](https://github.com/VerifyTests/Verify.SourceGenerators/commits/2.5.0)

---
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: Microsoft.Bcl.AsyncInterfaces
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.Bcl.AsyncInterfaces
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: OpenAI
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: PolySharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: H.Resources.Generator
  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-minor
  dependency-group: all
- dependency-name: Verify.MSTest
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Verify.SourceGenerators
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 23, 2024
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