fix: resolve CVE-2026-6321/6322 and register Airflow Job types in source-gen JSON - #105
Merged
Ebram Tawfik (EbramTawfik) merged 3 commits intoMay 18, 2026
Merged
Conversation
✅ Integration Tests PASSEDWorkflow: 🎉 All integration tests passed! This PR is ready for review. |
…gen JSON Add CreateAirflowJobRequest, UpdateAirflowJobRequest, AirflowJob, ListAirflowJobsResponse, and definition types to the source-generated JSON context. Replace anonymous type with EmptyRequest for getDefinition. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Ebram-Tawfik
force-pushed
the
fix/fast-uri-security-vulnerability
branch
from
May 18, 2026 18:32
cac2bb6 to
383da85
Compare
The FullLifecycle test now gracefully skips when the create API returns an error (e.g., EntityNotFound), instead of failing with a confusing assertion error about missing airflowJobId. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Ebram Tawfik (EbramTawfik)
approved these changes
May 18, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Fixes two high-severity security alerts and resolves Airflow Job serialization failures introduced by the source-gen JSON merge.
Security Fix
Updates transitive dependency
fast-urifrom 3.1.0 to 3.1.2 to resolve:Airflow Job Source-Gen JSON Fix
Registers all Airflow Job types in
DataFactoryJsonContextfor AOT-compatible serialization:AirflowJob,CreateAirflowJobRequest,UpdateAirflowJobRequest,ListAirflowJobsResponseAirflowJobDefinition,AirflowJobDefinitionPart,GetAirflowJobDefinitionResponse,UpdateAirflowJobDefinitionRequestnew { }withEmptyRequestinGetAirflowJobDefinitionAsyncChanges
DataFactory.MCP.Core/Resources/McpApps/package-lock.json: bumped fast-uri 3.1.0 -> 3.1.2DataFactory.MCP.Core/Configuration/DataFactoryJsonContext.cs: registered Airflow Job typesDataFactory.MCP.Core/Services/FabricAirflowJobService.cs: use EmptyRequest instead of anonymous typeTesting