-
Notifications
You must be signed in to change notification settings - Fork 31
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
fix: add urllib to dependencies #181
Conversation
WalkthroughThe pull request involves updating the Changes
Possibly related PRs
Poem
Tip CodeRabbit's docstrings feature is now available as part of our Early Access Program! Simply use the command 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
✅ Files skipped from review due to trivial changes (1)
🔇 Additional comments (4)src/lib/types.ts (1)
This update helps decouple the code from the ✅ Verification successfulImport source change from 'egg/urllib' to 'urllib' is correctly implemented The verification shows that:
The change has been consistently applied across the codebase, successfully decoupling from the egg framework's custom urllib implementation. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Verify there are no more references to egg/urllib across the codebase
rg --context 3 "egg/urllib"
Length of output: 27 Script: #!/bin/bash
# Let's verify the current imports from urllib in the codebase
rg --context 3 "from ['\"]urllib['\"]"
# Also check for any direct imports of urllib
rg --context 3 "import.*urllib"
# Let's also check the git history for this specific file to understand the change
git log -p -- src/lib/types.ts | grep -A 5 -B 5 "urllib"
Length of output: 3118 test/fixtures/apps/helloworld/package.json (1)
The test fixture now relies on package.json (2)
Retaining TypeScript at version 5 for devDependencies is likely fine, but ensure the new changes (and any transitive dependencies introduced by
Moving ✅ Verification successful
The verification confirms that
Since these are part of the package's core functionality and not just development/testing utilities, moving 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Check if the newly added urllib version is referenced and used in the codebase
rg -A 5 "from 'urllib'"
Length of output: 1614 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 using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
🚮 Removed packages: npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected] |
commit: |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #181 +/- ##
=======================================
Coverage 57.34% 57.34%
=======================================
Files 21 21
Lines 2438 2438
Branches 191 191
=======================================
Hits 1398 1398
Misses 1040 1040 ☔ View full report in Codecov by Sentry. |
[skip ci] ## [6.0.3](v6.0.2...v6.0.3) (2024-12-29) ### Bug Fixes * add urllib to dependencies ([#181](#181)) ([d56e49d](d56e49d))
Summary by CodeRabbit
Dependencies
urllib
package from development to production dependency@eggjs/mock
version 6 to test fixture's development dependenciesImport Changes
MockAgent
and related utilities fromegg/urllib
tourllib
These changes appear to be primarily related to package management and import adjustments, with no direct user-facing functionality modifications.