-
Notifications
You must be signed in to change notification settings - Fork 244
chore(deps): update #2180
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
Merged
Merged
chore(deps): update #2180
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
dcbdfe0
chore: update deps manually
atinux 1b55d31
chore: update devtools and remove resolutions
atinux 9d448c8
fix: typecheck
atinux beaff72
chore: fix tests by disabling vite env api
atinux 1630c0f
Merge branch 'main' into chore/deps
atinux 8816817
chore(deps): update
benjamincanac c1713c9
chore(nuxt.config): remove native sqlite connector
benjamincanac 9266393
up
benjamincanac 3b4ee32
chore(deps): remove `@ai-sdk/openai`
benjamincanac 45113cc
chore(deps): update
benjamincanac fc9af26
chore(deps): remove vite 8
benjamincanac File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: nuxt/nuxt.com
Length of output: 1215
🌐 Web query:
playwright docker image v1.58.2-noble mcr.microsoft.com available💡 Result:
As of the current official Playwright Docker documentation, the published
mcr.microsoft.com/playwrighttags shown are for v1.57.0 (includingv1.57.0-nobleandv1.57.0-jammy)—there is no mention/listing ofv1.58.2-noblethere. [1]To confirm whether
v1.58.2-nobleexists on MCR from your environment, try one of:docker pull mcr.microsoft.com/playwright:v1.58.2-noble # or docker manifest inspect mcr.microsoft.com/playwright:v1.58.2-nobleIf it’s available, these will succeed; if not, you’ll get a manifest/tag-not-found style error.
Source
-noble). [1]Update Playwright Docker image version to match npm packages.
The
test:browser:updatescript usesmcr.microsoft.com/playwright:v1.57.0-noble, but@playwright/testandplaywrightare both set to^1.58.2. Playwright requires matching versions between npm packages and browser binaries—this mismatch will cause test failures or incorrect snapshot results.However, the
v1.58.2-nobleDocker image tag does not yet appear in the official Playwright registry. Either wait for the image to be published or downgrade the npm packages to^1.57.2:Option A: Downgrade npm packages to 1.57.2 (recommended until v1.58.2 Docker image is available)
Update lines 79 and 91 in package.json to:
Option B: Update Docker image once v1.58.2 is available
Also applies to: 79-79, 91-91
🤖 Prompt for AI Agents