-
Notifications
You must be signed in to change notification settings - Fork 0
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
ExecuteProcedure - add managed identity authentication #50
ExecuteProcedure - add managed identity authentication #50
Conversation
Warning Rate limit exceeded@FrendsSarlinS has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 15 minutes and 51 seconds before requesting another review. How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. WalkthroughThe recent changes to the Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant SQLClient as SQL Client
participant Database
Client->>SQLClient: Initiate connection
SQLClient-->>Database: Connect to database
Client->>SQLClient: Execute stored procedure
SQLClient-->>Database: Execute command
Database-->>SQLClient: Return result
SQLClient-->>Client: Return result
Assessment against linked issues
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (9)
- Frends.MicrosoftSQL.ExecuteProcedure/CHANGELOG.md (1 hunks)
- Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/ExecuteReaderUnitTests.cs (1 hunks)
- Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/Frends.MicrosoftSQL.ExecuteProcedure.Tests.csproj (1 hunks)
- Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/ManualTesting.cs (1 hunks)
- Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/NonQueryUnitTests.cs (1 hunks)
- Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/ScalarUnitTests.cs (1 hunks)
- Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/lib/Helper.cs (1 hunks)
- Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure/ExecuteProcedure.cs (2 hunks)
- Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.csproj (2 hunks)
Additional comments not posted (10)
Frends.MicrosoftSQL.ExecuteProcedure/CHANGELOG.md (1)
3-5
: Changelog entry looks good.The entry accurately reflects the breaking change due to the transition to
Microsoft.Data.SqlClient
.Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/Frends.MicrosoftSQL.ExecuteProcedure.Tests.csproj (1)
12-13
: Package reference update looks good.The transition to
Microsoft.Data.SqlClient
version5.2.1
aligns with the PR objectives and enhances compatibility with modern SQL Server features.Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.csproj (2)
5-5
: Version increment looks good.The increment to
2.0.0
indicates a significant update, aligning with the PR objectives.
25-25
: Package reference update looks good.The transition to
Microsoft.Data.SqlClient
version5.2.1
aligns with the PR objectives and enhances compatibility with modern SQL Server features.Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/lib/Helper.cs (1)
3-3
: LGTM! The import statement has been correctly updated.The import statement has been updated to use
Microsoft.Data.SqlClient
, which is in line with the PR objectives.Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/ManualTesting.cs (1)
3-3
: LGTM! The import statement has been correctly updated.The import statement has been updated to use
Microsoft.Data.SqlClient
, which is in line with the PR objectives.Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure/ExecuteProcedure.cs (1)
6-6
: LGTM! The import statement has been correctly updated.The import statement has been updated to use
Microsoft.Data.SqlClient
, which is in line with the PR objectives.Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/ScalarUnitTests.cs (1)
3-3
: LGTM! Import statement forMicrosoft.Data.SqlClient
is correct.The new import statement is appropriate and aligns with the PR objectives.
Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/NonQueryUnitTests.cs (1)
3-3
: LGTM! Import statement forMicrosoft.Data.SqlClient
is correct.The new import statement is appropriate and aligns with the PR objectives.
Frends.MicrosoftSQL.ExecuteProcedure/Frends.MicrosoftSQL.ExecuteProcedure.Tests/ExecuteReaderUnitTests.cs (1)
4-4
: LGTM! Import statement forMicrosoft.Data.SqlClient
is correct.The new import statement is appropriate and aligns with the PR objectives.
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- Frends.MicrosoftSQL.ExecuteProcedure/CHANGELOG.md (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- Frends.MicrosoftSQL.ExecuteProcedure/CHANGELOG.md
Closes #45. System.Data.SqlConnection has been changed to Microsoft.Data.SqlConnection as per instructions where its is applicable. 2.0.0 change.
Summary by CodeRabbit
New Features
Bug Fixes
Chores