-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
chore: update dependencies #11666
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
chore: update dependencies #11666
Conversation
WalkthroughDependency version bumps across multiple package.json files, a .gitignore rule removal, async/await refactors in test utilities, adjustments to async control flow in tests, and a minor async mapping fix in the SQL Server query runner. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Tester
participant TestUtils as test/utils/test-utils.ts
participant DS as DataSource (per-conn)
Tester->>TestUtils: closeTestingConnections(connections)
alt no connections
TestUtils-->>Tester: return
else has connections
loop for each connection (async)
TestUtils->>DS: if (initialized) destroy()
DS-->>TestUtils: resolved
end
TestUtils-->>Tester: return (after await Promise.all)
end
sequenceDiagram
autonumber
participant Runner as SqlServerQueryRunner
participant DB as SQL Server
Runner->>Runner: allTablesResults.map(async ...)
par per-table async
alt temp table (#...)
Runner-->>Runner: skip
else non-temp table
Runner->>DB: DROP TABLE [schema].[name]
DB-->>Runner: OK
end
and others...
end
Runner-->>Caller: Promise.all resolved
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro ⛔ Files ignored due to path filters (3)
📒 Files selected for processing (9)
💤 Files with no reviewable changes (1)
🧰 Additional context used🧠 Learnings (1)📚 Learning: 2025-07-27T17:29:18.547ZApplied to files:
🧬 Code graph analysis (2)test/github-issues/9189/issue-9189.ts (1)
test/utils/test-utils.ts (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (8)
🔇 Additional comments (11)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
gioboa
left a comment
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.
That's great 👏 Thanks @alumni
commit: |
Description of change
Updating all dependencies without breaking changes.
Pull-Request Checklist
masterbranchFixes #00000Summary by CodeRabbit
Bug Fixes
Chores
Tests