Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- **Work Graph generator**: `[WorkGraph]` / `[WorkGraph<TContext>]` + `[WorkStep]` drive `WorkGraphGenerator`, emitting `{Holder}WorkStepKeys` and `{Holder}WorkGraph.Create(resolver|dictionary)` that fills `WorkGraphBuilder`. Reports **DP087–DP092** (cycle, unknown DependsOn, duplicate id, self-dependency, unreachable Warning, contract mismatch); no MVP DI/Autofac emission ([#311](https://github.com/Skymly/DesignPatterns/issues/311), Spec [#308](https://github.com/Skymly/DesignPatterns/issues/308)).
- **Work Graph diagnostic IDs**: reserved **DP087–DP092** for the upcoming Work Graph generator (dependency cycle, unknown DependsOn, duplicate step id, self-dependency, unreachable step Warning, contract/TContext mismatch); no unregistered-`IWorkStep` Analyzer in MVP; DP067–DP071 remain ADR-008-only ([#310](https://github.com/Skymly/DesignPatterns/issues/310), Spec [#308](https://github.com/Skymly/DesignPatterns/issues/308)).

### Changed
Expand Down
7 changes: 7 additions & 0 deletions DesignPatterns.SourceGenerators/Generators/TrackingNames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,11 @@ internal static class TrackingNames

public const string CommandPipelineBehaviorCombine = nameof(CommandPipelineBehaviorCombine);
public const string CommandHandlerPipelineCombine = nameof(CommandHandlerPipelineCombine);

// WorkGraphGenerator
public const string WorkGraphHolderNonGenericTransform = nameof(WorkGraphHolderNonGenericTransform);
public const string WorkGraphHolderGenericTransform = nameof(WorkGraphHolderGenericTransform);
public const string WorkStepTransform = nameof(WorkStepTransform);
public const string WorkGraphHolderCombine = nameof(WorkGraphHolderCombine);
public const string WorkGraphCombine = nameof(WorkGraphCombine);
}
Loading
Loading