-
Notifications
You must be signed in to change notification settings - Fork 84
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: remove CVE-2023-46809 revert config #683
Conversation
Warning Rate Limit Exceeded@fengmk2 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 20 minutes and 38 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. WalkthroughThe recent updates encompass multiple files, focusing on modernizing the Node.js version matrix, enhancing the encryption and decryption mechanisms using Changes
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 Configration 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 (3)
- .github/workflows/nodejs.yml (2 hunks)
- .github/workflows/release.yml (1 hunks)
- package.json (1 hunks)
Files skipped from review due to trivial changes (2)
- .github/workflows/release.yml
- package.json
Additional comments not posted (2)
.github/workflows/nodejs.yml (2)
35-35
: LGTM! Thenode-version
matrix update to include Node.js 22 is appropriate.
86-86
: LGTM! Thenode-version
matrix update to include Node.js 22 is appropriate.
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
🚮 Removed packages: npm/mysql2@3.9.7, npm/npm-package-arg@10.1.0, npm/oss-cnpm@5.0.1, npm/p-map@4.0.0, npm/s3-cnpmcore@1.1.2, npm/semver@7.6.2, npm/ssri@8.0.1, npm/type-fest@2.19.0, npm/typescript@5.2.2, npm/ua-parser-js@1.0.37, npm/validate-npm-package-name@3.0.0 |
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 (5)
- .github/workflows/nodejs.yml (2 hunks)
- .github/workflows/release.yml (1 hunks)
- app/common/CryptoUtil.ts (1 hunks)
- package.json (1 hunks)
- test/port/webauth/webauthController.test.ts (1 hunks)
Files not reviewed due to errors (1)
- app/common/CryptoUtil.ts (no review received)
Files skipped from review due to trivial changes (1)
- test/port/webauth/webauthController.test.ts
Files skipped from review as they are similar to previous changes (3)
- .github/workflows/nodejs.yml
- .github/workflows/release.yml
- package.json
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #683 +/- ##
=======================================
Coverage 96.84% 96.84%
=======================================
Files 181 181
Lines 17899 17902 +3
Branches 2311 2318 +7
=======================================
+ Hits 17334 17337 +3
Misses 565 565 ☔ View full report in Codecov by Sentry. |
use node-rsa instead of RSA_PKCS1_PADDING revert #650 run test on Node.js 22
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: 4
Out of diff range and nitpick comments (1)
app/common/CryptoUtil.ts (1)
Line range hint
2-10
: Consider increasing the modulus length from 512 to at least 2048 for enhanced security.- modulusLength: 512, + modulusLength: 2048,
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (6)
- .github/workflows/nodejs.yml (2 hunks)
- .github/workflows/release.yml (1 hunks)
- app/common/CryptoUtil.ts (2 hunks)
- package.json (3 hunks)
- test/common/CryptoUtil.test.ts (1 hunks)
- test/port/webauth/webauthController.test.ts (19 hunks)
Files skipped from review as they are similar to previous changes (4)
- .github/workflows/nodejs.yml
- .github/workflows/release.yml
- package.json
- test/port/webauth/webauthController.test.ts
Additional comments not posted (1)
test/common/CryptoUtil.test.ts (1)
1-2
: The updated import statements using ES module syntax are correctly implemented.
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
[skip ci] ## [3.58.1](v3.58.0...v3.58.1) (2024-05-17) ### Bug Fixes * remove CVE-2023-46809 revert config ([#683](#683)) ([ff00e42](ff00e42))
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)
- test/common/CryptoUtil.test.ts (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- test/common/CryptoUtil.test.ts
revert #650
run test on Node.js 22
Summary by CodeRabbit
New Features
Bug Fixes
Chores
Refactor