-
Notifications
You must be signed in to change notification settings - Fork 249
Cherry-Picking Commits for 1.5 #2689
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
dc2f8f7
Fixing Pipelines due to Ubuntu 24.04 update removing Mono (#2648)
sezal98 c267188
[Bug] Fix Health request for GraphQL endpoint (#2657)
sezal98 a76d33e
2554 Enhance REST OTEL instrumentation with custom metrics and traces…
tommasodotNET d0f5352
Resolve SSRF in HealhCheck (#2659)
sezal98 61001ac
Include cache options in the add and update verbs of CLI (#2655)
aaronburtle 35509ee
Caching response from Health Endpoint (#2633)
sezal98 66d71da
[Health]: Test Case for Rest and GraphQL Requests to DAB during healt…
sezal98 e0677cd
Enhance GraphQL OTEL instrumentation with custom metrics and traces (…
RubenCerna2079 468aa26
Fix test failure
RubenCerna2079 eabc4a4
Add header support for caching (#2650)
aaronburtle 6e4811b
Fixed CosmosSqlMetadataProvider concurrency issue. (#2695)
michaelstaib e868507
Upgrade Microsoft.Data.SqlClient to New Version (#2702)
RubenCerna2079 ab20a8c
HttpClient fixes for Container port and SSL validation (#2688)
souvikghosh04 32f1092
Fix Unit Test Failure
RubenCerna2079 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
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
57 changes: 57 additions & 0 deletions
57
src/Cli.Tests/Snapshots/AddEntityTests.AddEntityWithCachingEnabled.verified.txt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
DataSource: { | ||
DatabaseType: MSSQL | ||
}, | ||
Runtime: { | ||
Rest: { | ||
Enabled: true, | ||
Path: /api, | ||
RequestBodyStrict: true | ||
}, | ||
GraphQL: { | ||
Enabled: true, | ||
Path: /graphql, | ||
AllowIntrospection: true | ||
}, | ||
Host: { | ||
Cors: { | ||
AllowCredentials: false | ||
}, | ||
Authentication: { | ||
Provider: StaticWebApps | ||
} | ||
} | ||
}, | ||
Entities: [ | ||
{ | ||
CachingEntity: { | ||
Source: { | ||
Object: MyTable, | ||
Type: Table | ||
}, | ||
GraphQL: { | ||
Singular: CachingEntity, | ||
Plural: CachingEntities, | ||
Enabled: true | ||
}, | ||
Rest: { | ||
Enabled: true | ||
}, | ||
Permissions: [ | ||
{ | ||
Role: anonymous, | ||
Actions: [ | ||
{ | ||
Action: * | ||
} | ||
] | ||
} | ||
], | ||
Cache: { | ||
Enabled: true, | ||
TtlSeconds: 1 | ||
} | ||
} | ||
} | ||
] | ||
} |
51 changes: 51 additions & 0 deletions
51
src/Cli.Tests/Snapshots/UpdateEntityTests.TestUpdateEntityCaching.verified.txt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
DataSource: { | ||
DatabaseType: MSSQL | ||
}, | ||
Runtime: { | ||
Rest: { | ||
Enabled: true, | ||
Path: /, | ||
RequestBodyStrict: true | ||
}, | ||
GraphQL: { | ||
Enabled: true, | ||
Path: /graphql, | ||
AllowIntrospection: true | ||
}, | ||
Host: { | ||
Cors: { | ||
AllowCredentials: false | ||
}, | ||
Authentication: { | ||
Provider: StaticWebApps, | ||
Jwt: { | ||
Audience: , | ||
Issuer: | ||
} | ||
} | ||
} | ||
}, | ||
Entities: [ | ||
{ | ||
MyEntity: { | ||
Source: { | ||
Object: MyTable, | ||
Type: Table | ||
}, | ||
GraphQL: { | ||
Singular: MyEntity, | ||
Plural: MyEntities, | ||
Enabled: true | ||
}, | ||
Rest: { | ||
Enabled: true | ||
}, | ||
Cache: { | ||
Enabled: true, | ||
TtlSeconds: 1 | ||
} | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.