Skip to content

Bump incrementalist.cmd from 1.1.0 to 1.2.1#272

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/dot-config/incrementalist.cmd-1.2.1
Open

Bump incrementalist.cmd from 1.1.0 to 1.2.1#272
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/dot-config/incrementalist.cmd-1.2.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 3, 2026

Copy link
Copy Markdown
Contributor

Updated incrementalist.cmd from 1.1.0 to 1.2.1.

Release notes

Sourced from incrementalist.cmd's releases.

1.2.1

1.2.1 May 28 2026

Bug Fixes:

  • MSBuild Locator Type Mismatch on .NET 10.x:
    Fixed MSBuild assembly type mismatch that caused Incrementalist to fail on .NET 10.x SDKs. The MSBuild.Locator now properly discovers SDK 10's MSBuild 18.x assemblies by scanning .NET SDK paths instead of only looking for Visual Studio installations.

Release Infrastructure:

  • Extracted the latest release block logic for GitHub release body generation, making release automation more reliable

Fixes #​513

Changes:

  • ff4ab2bbfb03f6587b84b947e5767fe7a13d010d Release v1.2.1 (#​519) [ #​513, #​501 ]
  • ec1e6dcf51a8b4b331ae6c34804be59b783b36de fix: MSBuild assembly type mismatch on .NET 10.x + bump packages + fix CVEs (#​513) (#​518) [ #​514 ]
  • e93223b5c9df722917b5b8bdbbfe9817e635b7ad Extract only latest release block for GitHub release body (#​501)
  • 27645b1aa18e69a9bcc9788df9bda70313a10b33 Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.3.0 (#​493)
  • af973f9444415ed1f7d58bf7b1196688c5666d78 Use PNG logo in README for proper sizing (#​487)

This list of changes was auto generated.

1.2.0

1.2.0 December 23 2025

Stable Release - Parallel Execution Control

This stable release adds a new feature to control parallelism during build and test operations.

New Features:

  • Parallel Limit Control:
    Added --parallel-limit CLI option and parallelLimit configuration setting to limit the degree of parallelism when running tasks in parallel. This helps prevent memory exhaustion and random errors when many projects are affected in large solutions.

    Example:

    incrementalist test --parallel --parallel-limit 4

    Or in incrementalist.json:

    {
      "parallelLimit": 4
    }

Documentation:

  • Added comprehensive documentation for --parallel-limit option in README.md and configuration docs
  • Updated JSON schema with validation for parallelLimit setting
  • Improved README.md Markdown compatibility for better NuGet.org rendering

Other Improvements:

  • Increased PR validation timeout from 10 to 20 minutes to accommodate integration tests on Windows

Fixes #​456

1.2.0-beta.1 December 15 2025

BETA RELEASE - Dual-Targeting .NET 8.0 and .NET 10.0 with .slnx Support

This beta release adds dual-targeting support for .NET 8.0 and .NET 10.0, with .slnx solution format support available on .NET 10.0+.

Major Changes:

  • Dual-Targeting .NET 8.0 and .NET 10.0:
    Incrementalist now targets both net8.0 and net10.0, allowing it to run on either .NET 8.0 or .NET 10.0 SDKs.

  • Added .slnx Solution Format Support (.NET 10.0+ only):
    Full support for the new XML-based .slnx solution format in both Workspace and Static Graph build engines when running on .NET 10.0+. This format is not available on .NET 8.0 due to MSBuild/Roslyn version constraints.
    ... (truncated)

1.2.0-beta.1

1.2.0-beta.1 December 15 2025

BETA RELEASE - Dual-Targeting .NET 8.0 and .NET 10.0 with .slnx Support

This beta release adds dual-targeting support for .NET 8.0 and .NET 10.0, with .slnx solution format support available on .NET 10.0+.

Major Changes:

  • Dual-Targeting .NET 8.0 and .NET 10.0:
    Incrementalist now targets both net8.0 and net10.0, allowing it to run on either .NET 8.0 or .NET 10.0 SDKs.

  • Added .slnx Solution Format Support (.NET 10.0+ only):
    Full support for the new XML-based .slnx solution format in both Workspace and Static Graph build engines when running on .NET 10.0+. This format is not available on .NET 8.0 due to MSBuild/Roslyn version constraints.

  • TFM-Conditional Dependency Versions:
    MSBuild and Roslyn package versions are now conditional based on the target framework:

    • .NET 8.0: MSBuild 17.11.48, Roslyn 4.14.0
    • .NET 10.0: MSBuild 18.0.2, Roslyn 5.0.0 (stable)
  • Multi-Targeted Project Deduplication:
    Fixed issue where multi-targeted projects could appear multiple times in the dependency graph. Projects are now properly deduplicated in StaticGraphBuildEngine.

  • Improved F# Project Handling:
    F# projects now use StaticGraphBuildEngine for better compatibility with Roslyn 5.0+.

  • Dependency Upgrades:

    • Microsoft.Build.Locator: 1.9.1 → 1.10.12
    • xunit.runner.visualstudio: 3.1.4 → 3.1.5

Bug Fixes:

  • Fixed deprecated Workspace.WorkspaceFailed API usage (replaced with RegisterWorkspaceFailedHandler)
  • Updated F# test samples to use net8.0 target framework

Fixes #​405

Changes:

  • 0af2de812758a7f1876b9b28cb3fbeab2f990301 Update RELEASE_NOTES.md for 1.2.0-beta.1 release (#​483)
  • d255f21ad319b5cc00b5876cf28234fcccb3ff29 Add support for .slnx solution format (#​463) [ #​405 ]
  • 3fb770a454988a1a4090bae44f675505c4eb3d66 Bump xunit.runner.visualstudio from 3.1.4 to 3.1.5 (#​468)
  • af9c333f2f1ecf28c87014847387b8dd59d431f0 Bump Microsoft.Build.Locator from 1.10.2 to 1.10.12 (#​464)
  • a91f3a925e01e54c3eda8f3c2dc1b417d04ce338 Reduce default timeout to 1 minute (#​462)
  • a3bc4a1329826235af68593f5614297199fd82bb Bump Microsoft.Build from 17.11.31 to 17.11.48 (#​453)
  • 7d9da30327fa347de1dfd902fd1f63f43fd62482 Bump Microsoft.Build.Locator from 1.9.1 to 1.10.2 (#​448)

This list of changes was auto generated.

Commits viewable in compare view.

@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Jun 3, 2026
@dependabot dependabot Bot force-pushed the dependabot/nuget/dot-config/incrementalist.cmd-1.2.1 branch 8 times, most recently from 1814138 to 1770888 Compare June 11, 2026 03:30
---
updated-dependencies:
- dependency-name: incrementalist.cmd
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/nuget/dot-config/incrementalist.cmd-1.2.1 branch from 1770888 to ddb3984 Compare June 11, 2026 03:38
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 .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants