-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Refactor shells; add consumer graph & call stack tracking #7352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
b5b1733
refactor(deps): use local CShells project refs
sfmskywalker 787d2eb
Handle assembly load errors in feature discovery
sfmskywalker 7b7eca5
Refactor configuration and service extension methods.
sfmskywalker 1653c5f
Introduce ManagementServiceCollectionExtensions to streamline activit…
sfmskywalker d15e6d4
Add resilience strategy registration to HTTP feature
sfmskywalker bdca3c5
Add new configuration options to JavaScriptFeature
sfmskywalker e813e81
refactor(workflows): unify graph caching
sfmskywalker 3b9cc43
refactor(tests): centralize default IDs and materializer setup
sfmskywalker bb1897f
extend(tests): enhance cache key verification in AutoUpdateTests
sfmskywalker ce89663
refactor(projects): update CShells project paths and solution configu…
sfmskywalker 240a594
Merge branch 'tmp' into enh/shells
sfmskywalker 6304670
Merge remote-tracking branch 'origin/main' into enh/shells
sfmskywalker da7d073
Merge remote-tracking branch 'origin/main' into enh/shells
sfmskywalker 4489f83
Add `IWorkflowReferenceGraphBuilder` to `WorkflowManagementFeature`; …
sfmskywalker 2f200f4
Refactor `HttpFeature` to use `IMiddlewareShellFeature`, include `Htt…
sfmskywalker 654c11f
Add `AddTypeAlias` and `AddVariableTypeAndAlias` extension methods to…
sfmskywalker 01e458a
Merge branch 'main' into enh/shells
sfmskywalker File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
External sibling-repository dependency breaks default contributor workflow
The
ProjectReferencepath../../../../cshells/src/CShells.Abstractions/CShells.Abstractions.csprojresolves to a directory that is a sibling of theelsa-corerepo root (i.e.../cshells/relative to the solution). This pattern requires every developer and every CI agent to check out thecshellsrepository besideelsa-corebefore the solution can build.Without an explicit README note, a
git submodule, or a CI pipeline step that clonescshellsas a sibling, any fresh clone ofelsa-corealone will fail to restore/build with an error like:Consider documenting the required sibling checkout in the repository README (or
CONTRIBUTING.md), and adding the corresponding checkout step to the CI workflow. The same concern applies toElsa.Api.Common.csproj,Elsa.Identity.csproj, andElsa.Workflows.Api.csprojwhere the same relative path pattern is used.