perf: dependency updates 20260616 - #33
Conversation
- Updated @redocly/cli 2.29.1 -> 2.32.2 - Updated @types/node 25.6.0 -> 25.9.3 - Updated eslint 10.2.1 -> 10.5.0 - Updated express-rate-limit 8.3.2 -> 8.5.2 - Updated globals 17.5.0 -> 17.6.0 - Updated mongoose 9.5.0 -> 9.7.0 - Updated tsc-alias 1.8.16 -> 1.8.17 - Updated tsx 4.21.0 -> 4.22.4 - Updated typescript-eslint 8.59.0 -> 8.61.1 - Updated yaml 2.8.3 -> 2.9.0 - Updated zod 4.3.6 -> 4.4.3 - Run npm audit fix From 26 vulnerabilities (20 moderate, 6 high) To 13 moderate severity vulnerabilities - Bump to version patch v1.2.1
|
Warning Review limit reached
More reviews will be available in 47 minutes and 50 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, 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 include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughAdds a new Bash script ( ChangesAPI Documentation Maintenance and Dependency Updates
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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 |
There was a problem hiding this comment.
Actionable comments posted: 3
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@README.md`:
- Around line 349-351: The documentation path mentioned in the `npm run
docs:build` section in README.md is incorrect. Update the documented output path
from `/server/public/redoc/index.html` to `public/docs/redoc/index.html` to
match the actual output location configured in server/package.json. This
correction ensures the documentation accurately reflects where the Redoc CLI
output is written.
- Around line 290-296: The SRI hash-generation command example in the README.md
documentation is incorrect. The bash script is actually named genSriHash.sh and
must be invoked with the ./ prefix, not as /server/scripts/genSriHash. Update
the code block example to show the correct command format:
./server/scripts/genSriHash.sh <full-script-url> so readers can properly
generate the SRI hash without encountering a missing-file error.
In `@server/scripts/genSriHash.sh`:
- Around line 13-14: The script currently uses curl with the -sL flags which
will silently hash HTTP error responses (like 404 pages), producing invalid SRI
hashes that break later. Add set -euo pipefail near the top of the script to
enable exit-on-error behavior, and replace the curl -sL flags in the hash
variable assignment with curl -fsSL, where the -f flag makes curl exit with an
error status on HTTP failures (4xx/5xx responses). This ensures the script fails
fast and prevents generating bogus SRI strings from error pages.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 73efc780-fc03-438b-b5ec-1d08b433aa6f
⛔ Files ignored due to path filters (1)
server/package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (6)
README.mdserver/package.jsonserver/public/index.htmlserver/public/openapi.jsonserver/public/openapi.yamlserver/scripts/genSriHash.sh
Summary
Library Updates
Type of Change
Checklist
Summary by CodeRabbit
Chores
Documentation