refactor: Bump @semantic-release/github from 12.0.6 to 12.0.9#268
Conversation
|
🚀 Thanks for opening this pull request! We appreciate your effort in improving the project. Please let us know once your pull request is ready for review. Tip
Note Please respond to review comments from AI agents just like you would to comments from a human reviewer. Let the reviewer resolve their own comments, unless they have reviewed and accepted your commit, or agreed with your explanation for why the feedback was incorrect. Caution Pull requests must be written using an AI agent with human supervision. Pull requests written entirely by a human will likely be rejected, because of lower code quality, higher review effort and the higher risk of introducing bugs. Please note that AI review comments on this pull request alone do not satisfy this requirement. Our CI and AI review are safeguards, not development tools. If many issues are flagged, rethink your development approach. Invest more effort in planning and design rather than using review cycles to fix low-quality code. |
|
Warning Review limit reached
Next review available in: 22 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughChangesSemantic release dependency upgrade
Estimated code review effort: 2 (Simple) | ~10 minutes Caution Pre-merge checks failedPlease resolve all errors before merging. Addressing warnings is optional.
❌ Failed checks (1 error, 1 inconclusive)
✅ Passed checks (5 passed)
✨ 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 |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #268 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 4 4
Lines 159 159
=========================================
Hits 159 159 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
|
@coderabbitai approve the PR if all review feedback is addressed and there is nothing else to do. |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
repo="parse-community/parse-server-api-mail-adapter"
pr="268"
echo "=== PR metadata ==="
gh pr view "$pr" --repo "$repo" --json state,isDraft,mergeable,reviewDecision,baseRefName,headRefName,comments,reviews \
--jq '{state,isDraft,mergeable,reviewDecision,baseRefName,headRefName, reviews: [.reviews[] | {author: .author.login, state, body}], comments: [.comments[] | {author: .author.login, body}]}'
echo "=== Review comments (including resolution status) ==="
gh api "repos/$repo/pulls/$pr/comments?per_page=100" \
--jq '.[] | {id, user: .user.login, path, line, side, body, in_reply_to_id, created_at}'
echo "=== Changed files ==="
gh pr diff "$pr" --repo "$repo" --name-only
echo "=== Final diff ==="
gh pr diff "$pr" --repo "$repo" -- package.json package-lock.jsonLength of output: 11688 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "=== PR diff against main ==="
git diff --no-ext-diff --unified=40 origin/main...HEAD -- package.json package-lock.json
echo "=== Lockfile consistency ==="
python3 - <<'PY'
import json
from pathlib import Path
manifest = json.loads(Path("package.json").read_text())
lock = json.loads(Path("package-lock.json").read_text())
name = "`@semantic-release/github`"
expected = manifest.get("devDependencies", {}).get(name)
root = lock.get("packages", {}).get("", {}).get("devDependencies", {}).get(name)
entry = lock.get("packages", {}).get("node_modules/@semantic-release/github", {})
print(f"package.json devDependency: {expected!r}")
print(f"package-lock root devDependency: {root!r}")
print(f"installed lockfile version: {entry.get('version')!r}")
print(f"installed lockfile resolved: {entry.get('resolved')!r}")
print(f"manifest/root match: {expected == root}")
print(f"installed version satisfies exact expected version: {entry.get('version') == expected}")
print("direct dependencies:")
for dep, spec in sorted(entry.get("dependencies", {}).items()):
print(f" {dep}: {spec}")
PY
echo "=== Relevant nested package entries ==="
python3 - <<'PY'
import json
from pathlib import Path
lock = json.loads(Path("package-lock.json").read_text())
for path, entry in sorted(lock.get("packages", {}).items()):
if any(token in path for token in (
"node_modules/@semantic-release/github",
"node_modules/http-proxy-agent",
"node_modules/https-proxy-agent",
"node_modules/agent-base",
"node_modules/proxy-agent-negotiate",
)):
print(f"{path}: version={entry.get('version')!r}, dependencies={entry.get('dependencies', {})}")
PYLength of output: 24849
[approve] |
|
@coderabbitai full review |
✅ Action performedFull review finished. Your plan includes PR reviews subject to rate limits. More reviews will be available in 18 minutes. |
|
@coderabbitai full review |
✅ Action performedFull review finished. |
|
@coderabbitai full review |
✅ Action performedFull review finished. Your plan includes PR reviews subject to rate limits. More reviews will be available in 22 minutes. |
Closes #266
Changes
Bumps the direct devDependency
@semantic-release/githubfrom12.0.6to12.0.9.Breaking
None. This is a patch-level bump of a devDependency used only in the release pipeline; it does not affect the published package or its runtime.
Code Changes
package.json:@semantic-release/github12.0.6→12.0.9.package-lock.json: updated the@semantic-release/githubsubtree — itshttp-proxy-agent/https-proxy-agentdeps move to^9, pulling inagent-base@9and the newproxy-agent-negotiate.Summary by CodeRabbit