Conversation
❌ Deploy Preview for apollo-client-nextjs-docmodel failed.
|
702f588 to
cb580c4
Compare
cb580c4 to
df7c51f
Compare
df7c51f to
e319da4
Compare
e319da4 to
335088d
Compare
335088d to
f8d2cb6
Compare
f8d2cb6 to
081d3d3
Compare
081d3d3 to
03983a1
Compare
03983a1 to
5db62df
Compare
size-limit report 📦
|
5db62df to
b65e5e1
Compare
|
b65e5e1 to
3d95479
Compare
3d95479 to
acf2f8c
Compare
acf2f8c to
09b3717
Compare
d0921f0 to
db6db01
Compare
db6db01 to
0a943fd
Compare
0a943fd to
f3f30f6
Compare
f3f30f6 to
40fcef5
Compare
|
40fcef5 to
334f8b2
Compare
334f8b2 to
effd79f
Compare
effd79f to
dd5c470
Compare
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
dd5c470 to
f83688e
Compare
f83688e to
c0bbd5e
Compare
📝 WalkthroughWalkthroughMultiple package.json files have been updated with devDependency version bumps. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@package.json`:
- Line 43: The package.json dependency for "@types/node" was bumped to ^24.0.0
but yarn.lock lacks the corresponding resolved entry; run yarn install (or yarn
install --immutable false if CI constraints) to regenerate yarn.lock so it
contains a resolved entry for `@types/node`@^24.0.0, add the updated yarn.lock to
the commit, and ensure package.json and yarn.lock are committed together before
merging.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 9f7c9afa-a71f-4ba0-bcc7-1a530526a8c7
📒 Files selected for processing (6)
package.jsonpackages/client-react-streaming/package.jsonpackages/nextjs/package.jsonpackages/package.jsonpackages/react-router/package.jsonpackages/tanstack-start/package.json
📜 Review details
🔇 Additional comments (5)
packages/tanstack-start/package.json (1)
76-76: No additional file-local concern.This is covered by the lockfile/artifact regeneration blocker raised from root
package.json(Line 43).packages/client-react-streaming/package.json (1)
151-151: No additional file-local concern.This change is already covered by the root lockfile/artifact regeneration issue (root
package.json, Line 43).packages/nextjs/package.json (1)
88-88: No additional file-local concern.Covered by the same root dependency-artifact blocker already flagged in root
package.json(Line 43).packages/react-router/package.json (1)
72-72: No additional file-local concern.This segment is covered by the root lockfile/artifact regeneration issue already raised (root
package.json, Line 43).packages/package.json (1)
7-8: No additional file-local concern.These version bumps are included in the same root lockfile/artifact regeneration blocker already raised (root
package.json, Line 43).
| "@size-limit/webpack": "11.1.2", | ||
| "@size-limit/webpack-why": "11.1.2", | ||
| "@types/node": "^22.10.9", | ||
| "@types/node": "^24.0.0", |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
# Step 1: Verify lockfile exists
echo "=== Checking for yarn.lock ==="
if fd '^yarn.lock$' 2>/dev/null; then
echo "yarn.lock found"
else
echo "yarn.lock NOT found"
fi
# Step 2: Verify bumped manifests are present
echo ""
echo "=== Checking package.json files for `@types/node` ==="
fd 'package\.json$' | while read -r file; do
if rg -q '"@types/node"' "$file" 2>/dev/null; then
echo "Found in: $file"
rg -n '"@types/node"' "$file" | head -5
fi
done
# Step 3: Verify lockfile contains resolved entries
echo ""
echo "=== Checking yarn.lock for resolved `@types/node` entries ==="
if fd '^yarn.lock$' 2>/dev/null; then
if rg -n '@types/node@npm:' yarn.lock 2>/dev/null | head -10; then
echo "Found resolved entries in yarn.lock"
else
echo "No resolved entries found in yarn.lock for `@types/node`"
fi
fi
# Step 4: Check git status to see what changed
echo ""
echo "=== Git status of key files ==="
git status --short 2>/dev/null | grep -E '(package\.json|yarn\.lock)' || echo "No changes to key files"
# Step 5: Check if yarn.lock has recent entries for `@types/node`
echo ""
echo "=== Detailed yarn.lock entry for `@types/node` (if exists) ==="
if fd '^yarn.lock$' 2>/dev/null; then
rg -A 5 '@types/node@\^24\.0\.0:' yarn.lock 2>/dev/null | head -20 || echo "Pattern not found"
fiRepository: apollographql/apollo-client-integrations
Length of output: 1741
Block merge until yarn.lock is regenerated for @types/node@^24.0.0.
The package.json has been updated to @types/node@^24.0.0 (line 43), but yarn.lock is missing a resolved entry for this version constraint. This breaks reproducible installs and creates peer dependency graph drift. Regenerate the lockfile with yarn install and include it in the commit before merging.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@package.json` at line 43, The package.json dependency for "@types/node" was
bumped to ^24.0.0 but yarn.lock lacks the corresponding resolved entry; run yarn
install (or yarn install --immutable false if CI constraints) to regenerate
yarn.lock so it contains a resolved entry for `@types/node`@^24.0.0, add the
updated yarn.lock to the commit, and ensure package.json and yarn.lock are
committed together before merging.
This PR contains the following updates:
20.12.11->24.11.0^22.10.9->^24.0.07.5.0->8.56.17.5.0->8.56.1Release Notes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.56.1Compare Source
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.56.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.55.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.54.0Compare Source
🚀 Features
🩹 Fixes
def.name(#11982)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.53.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.53.0Compare Source
🚀 Features
🩹 Fixes
errortyped" with more helpful description (#11704)extendsandimplementsin interface declaration (#11935)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.52.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.51.0Compare Source
🚀 Features
🩹 Fixes
no-useless-default-assignment(#11845)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.50.1Compare Source
🩹 Fixes
this(#11813)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.50.0Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.49.0Compare Source
🚀 Features
Intl.Segmenterinstead ofgraphemer(#11804)🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.48.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.48.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.47.0Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.46.4Compare Source
🩹 Fixes
projectServiceandprojectare set (#11333)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.46.3Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.46.2Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.46.1Compare Source
🩹 Fixes
.finallynot to report when a promise returning function is provided as an argument (#11667)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.46.0Compare Source
🚀 Features
🩹 Fixes
export imports (#11603)this: voidand binding (#11634)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.45.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.44.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.44.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.43.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.42.0Compare Source
🩹 Fixes
You can read about our versioning strategy and releases on our website.
v8.41.0Compare Source
🩹 Fixes
You can read about our versioning strategy and releases on our website.
v8.40.0Compare Source
🚀 Features
EnumMember(#11232)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.39.1Compare Source
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.39.0Compare Source
🚀 Features
🩹 Fixes
unsafeObjectPatternmessage (#11403)checkoption for most RHS of a chain (#11272)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.38.0Compare Source
🩹 Fixes
isolatedDeclarationsif enabled inconstructoroption (#11351)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.37.0Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.36.0Compare Source
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.35.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.35.0Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.34.1Compare Source
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.34.0Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.33.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.33.0Compare Source
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.32.1Compare Source
🩹 Fixes
TSMappedTypewith no type annotation (#11180)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.32.0Compare Source
🚀 Features
allowRethrowing(#11075)🩹 Fixes
thisfrom optional parameter overload check (#11005)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.31.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.31.0Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.30.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.30.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.29.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.29.0Compare Source
🚀 Features
ignoreIfStatementsoption (#11000)🩹 Fixes
noUncheckedIndexedAccessis enabled (#10961)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.28.0Compare Source
🚀 Features
ifstatement assignment (??=) and fix several minor bugs (#10861)🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.27.0Compare Source
🚀 Features
DeprecatedInfoforrule.meta.deprecated(#10932)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.26.1Compare Source
🩹 Fixes
any/unknownas eligible for nullish coalescing (#10865)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.26.0Compare Source
🚀 Features
🩹 Fixes
accessorproperties with an invalidvoidtype (#10864)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.25.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "after 8am and before 4pm on tuesday" in timezone Etc/UTC.
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot.
Summary by CodeRabbit