Skip to content

Bump the nuget group with 14 updates - #301

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 26, 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.290.

Release notes

Sourced from Meziantou.Analyzer's releases.

3.0.290

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.289...3.0.290

3.0.289

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.288...3.0.289

3.0.288

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.287...3.0.288

3.0.287

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.286...3.0.287

3.0.286

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.285...3.0.286

3.0.285

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.284...3.0.285

3.0.284

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.283...3.0.284

3.0.283

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.282...3.0.283

3.0.282

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.281...3.0.282

3.0.281

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.280...3.0.281

3.0.280

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.279...3.0.280

3.0.279

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.278...3.0.279

3.0.278

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.277...3.0.278

3.0.277

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.276...3.0.277

3.0.276

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.275...3.0.276

3.0.275

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.274...3.0.275

3.0.274

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.273...3.0.274

3.0.273

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.272...3.0.273

3.0.272

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.271...3.0.272

3.0.271

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.270...3.0.271

3.0.270

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.269...3.0.270

3.0.269

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.268...3.0.269

3.0.268

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.267...3.0.268

3.0.267

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.266...3.0.267

3.0.266

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.265...3.0.266

3.0.265

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.264...3.0.265

3.0.264

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.263...3.0.264

3.0.263

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.262...3.0.263

3.0.262

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.261...3.0.262

3.0.261

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.260...3.0.261

3.0.260

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.259...3.0.260

3.0.259

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.258...3.0.259

3.0.258

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.257...3.0.258

3.0.257

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

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.256...3.0.257

3.0.256

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

What's Changed

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

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.1...

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.290
Bumps Microsoft.NET.Test.Sdk from 18.3.0 to 18.10.1
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.290
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.10.1
  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 26, 2026

This branch has not been deployed

No deployments
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