Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageReference Include="Shouldly" Version="4.3.0"/>
<PackageReference Include="ModularPipelines" Version="2.48.30"/>
<PackageReference Include="ModularPipelines.Git" Version="2.48.30"/>
<PackageReference Include="ModularPipelines.GitHub" Version="2.48.30"/>
<PackageReference Include="ModularPipelines.GitHub" Version="3.0.1"/>
Copy link

Copilot AI Jan 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This partial upgrade creates an incompatibility issue. ModularPipelines.GitHub v3 has been upgraded while ModularPipelines, ModularPipelines.Git, and ModularPipelines.DotNet remain at v2.48.30. ModularPipelines v3 introduced breaking API changes that are incompatible with v2:

  1. The core package uses IPipelineContext in v2, but v3 requires IModuleContext
  2. Module result access changed from direct .Value property to discriminated unions with pattern matching or .ValueOrDefault
  3. The entry point changed from PipelineHostBuilder.Create() to Pipeline.CreateBuilder()

The existing code in Program.cs and all module files (CreateGitHubChangelogModule.cs, PublishGithubModule.cs, etc.) uses v2 APIs and will not compile with this partial upgrade. All ModularPipelines packages should be upgraded together to v3 and the code should be migrated according to the v3 migration guide.

Suggested change
<PackageReference Include="ModularPipelines.GitHub" Version="3.0.1"/>
<PackageReference Include="ModularPipelines.GitHub" Version="2.48.30"/>

Copilot uses AI. Check for mistakes.
<PackageReference Include="ModularPipelines.DotNet" Version="2.48.30"/>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4"/>
<PackageReference Include="Microsoft.VisualStudio.SolutionPersistence" Version="1.0.52"/>
Expand Down
Loading