Skip to content

Bump the nuget group with 14 updates - #299

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/GitHubIssueFormsParser/nuget-b3bcc6ce1c
Open

Bump the nuget group with 14 updates#299
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/GitHubIssueFormsParser/nuget-b3bcc6ce1c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 12, 2026

Copy link
Copy Markdown
Contributor

Updated CliFx from 2.3.6 to 3.0.1.

Release notes

Sourced from CliFx's releases.

3.0.1

What's Changed

Enhancements

Bugs

Full Changelog: Tyrrrz/CliFx@3.0...3.0.1

3.0

What's new

Source generation instead of reflection

CliFx no longer relies on run-time reflection. Instead, it uses Roslyn source generators to collect metadata about command bindings and extend your types with additional behavior at compile time. This enables full Native AOT and assembly trimming support.

Command types must now be declared as partial (including all enclosing types, if nested).

Auto-generated Main() method

If your project doesn't define a Main() method or use top-level statements, CliFx will automatically generate an entry point that builds and runs the application using all commands from the assembly.

Manual help and version option binding

You can now implement ICommandWithHelpOption and/or ICommandWithVersionOption on your command types and apply [CommandOption] attributes to choose custom identifiers for the help and version options. By default, the source generator auto-implements these interfaces with the conventional -h|--help and --version bindings.

Public CommandDescriptor

Command metadata is exposed via the public CommandDescriptor class (in CliFx.Binding). Source-generated commands expose a static Descriptor property, which can be used to register commands with the builder via AddCommand(CommandDescriptor).

Breaking changes

[!NOTE]
See #​184 for detailed migration guidance.

Type and namespace renames

v2 v3
CliApplication CommandLineApplication
CliApplicationBuilder CommandLineApplicationBuilder
CliFx.Attributes namespace CliFx.Binding namespace
CliFx.Exceptions namespace CliFx (root namespace)
CliFx.Extensibility.BindingConverter<T> CliFx.Activation.ScalarInputConverter<T> / SequenceInputConverter<T>
CliFx.Extensibility.BindingValidator<T> CliFx.Activation.InputValidator<T>
UseTypeActivator(...) UseTypeInstantiator(...)

IsRequired removed from attributes

CommandOptionAttribute.IsRequired and CommandParameterAttribute.IsRequired have been removed. Use the C# required keyword on the property instead.

Init-only properties no longer supported

Input-bound properties must use a regular set accessor. Replace init with set on all properties annotated with [CommandParameter] or [CommandOption].

Directives replaced with environment variables

The [preview] and [debug] directives have been removed. Use CommandLineApplicationBuilder.AllowDebugMode(...) and AllowPreviewMode(...) to configure environment variables that enable these modes (e.g. CLIFX_DEBUG=true ./myapp ...). Both modes are disabled by default.

Preview mode no longer short-circuits

... (truncated)

Commits viewable in compare view.

Updated coverlet.collector from 8.0.1 to 10.0.1.

Release notes

Sourced from coverlet.collector's releases.

10.0.1

Improvements

Fixed

  • Fix inconsistent paths in cobertura reports #​1723
  • Fix when using "is" with "and" in pattern matching, branch coverage is lower than normal #​1313
  • Fix Coverlet flagging a branch for an async functions finally block where none exists #​1337
  • Fix Coverlet Tracker Missing CompilerGeneratedAttribute #​1828

Maintenance

  • Add architecture docs and diagrams for all integrations #​1927
  • Update NuGet packages and .NET SDK versions #​1933

Diff between 10.0.0 and 10.0.1

10.0.0

Improvements

  • Unique Report Filenames (coverlet.MTP and AzDO) #​1866
  • Add --coverlet-file-prefix option for unique report files #​1869
  • Introduce .NET 10 support #​1823

Fixed

  • Fix [BUG] Wrong branch rate on IAsyncEnumerable for generic type #​1836
  • Fix [BUG] Missing Coverage after moving to MTP #​1843
  • Fix [BUG] No coverage reported when targeting .NET Framework with 8.0.1 #​1842
  • Fix [BUG] Behavior changes between MTP and Legacy (msbuild) #​1878
  • Fix [BUG] Coverlet.MTP - Unable to load coverlet.mtp.appsettings.json #​1880
  • Fix [BUG] Coverlet.Collector produces empty report when Mediator.SourceGenerator is referenced #​1718 by https://github.com/yusyd
  • Fix [BUG] Crash during instrumentation (Methods using LibraryImport/DllImport have no body) #​1762

Maintenance

  • Add comprehensive async method tests and documentation for issue #​1864
  • Replace Tmds.ExecFunction Package in coverlet.core.coverage.tests #​1833
  • Add net9.0 and net10.0 targets #​1822

Diff between 8.0.1 and 10.0.0

Commits viewable in compare view.

Updated coverlet.msbuild from 8.0.1 to 10.0.1.

Release notes

Sourced from coverlet.msbuild's releases.

10.0.1

Improvements

Fixed

  • Fix inconsistent paths in cobertura reports #​1723
  • Fix when using "is" with "and" in pattern matching, branch coverage is lower than normal #​1313
  • Fix Coverlet flagging a branch for an async functions finally block where none exists #​1337
  • Fix Coverlet Tracker Missing CompilerGeneratedAttribute #​1828

Maintenance

  • Add architecture docs and diagrams for all integrations #​1927
  • Update NuGet packages and .NET SDK versions #​1933

Diff between 10.0.0 and 10.0.1

10.0.0

Improvements

  • Unique Report Filenames (coverlet.MTP and AzDO) #​1866
  • Add --coverlet-file-prefix option for unique report files #​1869
  • Introduce .NET 10 support #​1823

Fixed

  • Fix [BUG] Wrong branch rate on IAsyncEnumerable for generic type #​1836
  • Fix [BUG] Missing Coverage after moving to MTP #​1843
  • Fix [BUG] No coverage reported when targeting .NET Framework with 8.0.1 #​1842
  • Fix [BUG] Behavior changes between MTP and Legacy (msbuild) #​1878
  • Fix [BUG] Coverlet.MTP - Unable to load coverlet.mtp.appsettings.json #​1880
  • Fix [BUG] Coverlet.Collector produces empty report when Mediator.SourceGenerator is referenced #​1718 by https://github.com/yusyd
  • Fix [BUG] Crash during instrumentation (Methods using LibraryImport/DllImport have no body) #​1762

Maintenance

  • Add comprehensive async method tests and documentation for issue #​1864
  • Replace Tmds.ExecFunction Package in coverlet.core.coverage.tests #​1833
  • Add net9.0 and net10.0 targets #​1822

Diff between 8.0.1 and 10.0.0

Commits viewable in compare view.

Updated GitHubActionsTestLogger from 3.0.1 to 3.0.5.

Release notes

Sourced from GitHubActionsTestLogger's releases.

3.0.5

What's Changed

Enhancements

New Contributors

Full Changelog: Tyrrrz/GitHubActionsTestLogger@3.0.4...3.0.5

3.0.4

What's Changed

Enhancements

Bugs

Full Changelog: Tyrrrz/GitHubActionsTestLogger@3.0.3...3.0.4

3.0.3

What's Changed

Full Changelog: Tyrrrz/GitHubActionsTestLogger@3.0.2...3.0.3

3.0.2

What's Changed

New Contributors

Full Changelog: Tyrrrz/GitHubActionsTestLogger@3.0.1...3.0.2

Commits viewable in compare view.

Updated Meziantou.Analyzer from 3.0.25 to 3.0.255.

Release notes

Sourced from Meziantou.Analyzer's releases.

3.0.255

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.255

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.254...3.0.255

3.0.254

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.254

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.253...3.0.254

3.0.253

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.253

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.252...3.0.253

3.0.252

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.252

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.251...3.0.252

3.0.251

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.251

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.250...3.0.251

3.0.250

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.250

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.249...3.0.250

3.0.249

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.249

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.248...3.0.249

3.0.248

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.248

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.247...3.0.248

3.0.247

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.247

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.246...3.0.247

3.0.246

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.246

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.245...3.0.246

3.0.245

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.245

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.244...3.0.245

3.0.244

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.244

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.243...3.0.244

3.0.243

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.243

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.242...3.0.243

3.0.242

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.242

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.241...3.0.242

3.0.241

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.241

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.240...3.0.241

3.0.240

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.240

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.239...3.0.240

3.0.239

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.239

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.238...3.0.239

3.0.238

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.238

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.237...3.0.238

3.0.237

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.237

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.236...3.0.237

3.0.236

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.236

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.235...3.0.236

3.0.235

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.235

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.234...3.0.235

3.0.234

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.234

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.233...3.0.234

3.0.233

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.233

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.232...3.0.233

3.0.232

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.232

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.231...3.0.232

3.0.231

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.231

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.230...3.0.231

3.0.230

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.230

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.229...3.0.230

3.0.229

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.229

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.228...3.0.229

3.0.228

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.228

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.227...3.0.228

3.0.227

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.227

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.226...3.0.227

3.0.226

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.226

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.225...3.0.226

3.0.225

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.225

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.224...3.0.225

3.0.224

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.224

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.223...3.0.224

3.0.223

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.223

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.222...3.0.223

3.0.222

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.222

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.221...3.0.222

3.0.221

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.221

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.220...3.0.221

3.0.220

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.220

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.219...3.0.220

3.0.219

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.219

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.218...3.0.219

3.0.218

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.218

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.217...3.0.218

3.0.217

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.217

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.216...3.0.217

3.0.216

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.216

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.215...3.0.216

3.0.215

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.215

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.214...3.0.215

3.0.214

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.214

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.213...3.0.214

3.0.213

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.213

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.212...3.0.213

3.0.212

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.212

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.211...3.0.212

3.0.211

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.211

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.210...3.0.211

3.0.210

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.210

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.209...3.0.210

3.0.209

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.209

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.208...3.0.209

3.0.208

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.208

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.207...3.0.208

3.0.207

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.207

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.206...3.0.207

3.0.206

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.206

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.205...3.0.206

3.0.205

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.205

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.204...3.0.205

3.0.204

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.204

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.203...3.0.204

3.0.203

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.203

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.202...3.0.203

3.0.202

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.202

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.201...3.0.202

3.0.201

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.201

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.200...3.0.201

3.0.200

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.200

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.199...3.0.200

3.0.199

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.199

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.198...3.0.199

3.0.198

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.198

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.197...3.0.198

3.0.197

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.197

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.196...3.0.197

3.0.196

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.196

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.195...3.0.196

3.0.195

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.195

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.194...3.0.195

3.0.194

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.194

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.193...3.0.194

3.0.193

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.193

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.192...3.0.193

3.0.192

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.192

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.191...3.0.192

3.0.191

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.191

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.190...3.0.191

3.0.190

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.190

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.189...3.0.190

3.0.189

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.189

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.188...3.0.189

3.0.188

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.188

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.187...3.0.188

3.0.187

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.187

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.186...3.0.187

3.0.186

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.186

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.185...3.0.186

3.0.185

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.185

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.184...3.0.185

3.0.184

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.184

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.183...3.0.184

3.0.183

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.183

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.182...3.0.183

3.0.182

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.182

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.181...3.0.182

3.0.181

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.181

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.180...3.0.181

3.0.180

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.180

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.179...3.0.180

3.0.179

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.179

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.178...3.0.179

3.0.178

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.178

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.177...3.0.178

3.0.177

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.177

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.176...3.0.177

3.0.176

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.176

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.175...3.0.176

3.0.175

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.175

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.174...3.0.175

3.0.174

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.174

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.173...3.0.174

3.0.173

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.173

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.172...3.0.173

3.0.172

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.172

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.171...3.0.172

3.0.171

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.171

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.170...3.0.171

3.0.170

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.170

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.169...3.0.170

3.0.169

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.169

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.168...3.0.169

3.0.168

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.168

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.167...3.0.168

3.0.167

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.167

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.166...3.0.167

3.0.166

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.166

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.165...3.0.166

3.0.165

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.165

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.164...3.0.165

3.0.164

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.164

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.163...3.0.164

3.0.163

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.163

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.162...3.0.163

3.0.162

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.162

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.161...3.0.162

3.0.161

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.161

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.159...3.0.161

3.0.159

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.159

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.158...3.0.159

3.0.158

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.158

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.157...3.0.158

3.0.157

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.157

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.156...3.0.157

3.0.156

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.156

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.155...3.0.156

3.0.155

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.155

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.154...3.0.155

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 18.3.0 to 18.10.0.

Release notes

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

18.10.0

What's Changed

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

18.9.0

What's Changed

Description has been truncated

Bumps CliFx from 2.3.6 to 3.0.1
Bumps coverlet.collector from 8.0.1 to 10.0.1
Bumps coverlet.msbuild from 8.0.1 to 10.0.1
Bumps GitHubActionsTestLogger from 3.0.1 to 3.0.5
Bumps Meziantou.Analyzer from 3.0.25 to 3.0.255
Bumps Microsoft.NET.Test.Sdk from 18.3.0 to 18.10.0
Bumps Microsoft.VisualStudio.Threading.Analyzers from 17.14.15 to 18.7.23
Bumps NSubstitute from 5.3.0 to 6.2.0
Bumps Roslynator.Analyzers from 4.15.0 to 5.0.0
Bumps Roslynator.CodeAnalysis.Analyzers from 4.15.0 to 5.0.0
Bumps Roslynator.Formatting.Analyzers from 4.15.0 to 5.0.0
Bumps xunit.analyzers from 1.27.0 to 2.1.0
Bumps xunit.runner.visualstudio from 3.1.5 to 4.0.0
Bumps YamlDotNet from 16.3.0 to 18.1.0

---
updated-dependencies:
- dependency-name: CliFx
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: coverlet.collector
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: coverlet.msbuild
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: GitHubActionsTestLogger
  dependency-version: 3.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Meziantou.Analyzer
  dependency-version: 3.0.255
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Microsoft.VisualStudio.Threading.Analyzers
  dependency-version: 18.7.23
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: NSubstitute
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: Roslynator.Analyzers
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: Roslynator.CodeAnalysis.Analyzers
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: Roslynator.Formatting.Analyzers
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: xunit.analyzers
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: xunit.runner.visualstudio
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: YamlDotNet
  dependency-version: 18.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added bot:robot: Action taken in an automated fashion dependabot Pull requests created by dependabot nuget Pull requests for NuGet packages updates labels Sep 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bot:robot: Action taken in an automated fashion dependabot Pull requests created by dependabot nuget Pull requests for NuGet packages updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants