-
Notifications
You must be signed in to change notification settings - Fork 1
deps(deps-dev): bump the svelte-ecosystem group with 2 updates #117
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,7 +38,7 @@ | |
| "@electric-sql/pglite": "^0.4.5", | ||
| "@internationalized/date": "^3.12.1", | ||
| "@playwright/test": "^1.60.0", | ||
| "@sveltejs/kit": "^2.60.1", | ||
| "@sveltejs/kit": "^2.61.1", | ||
| "@sveltejs/vite-plugin-svelte": "^7.1.2", | ||
| "@tailwindcss/vite": "^4.3.0", | ||
| "@testing-library/jest-dom": "^6.9.1", | ||
|
|
@@ -55,7 +55,7 @@ | |
| "jsdom": "^29.1.1", | ||
| "knip": "^6.14.1", | ||
| "mode-watcher": "^1.1.0", | ||
| "svelte": "^5.55.8", | ||
| "svelte": "^5.55.9", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify svelte@5.55.9 exists and check for vulnerabilities
# Check if the version exists on npm
echo "=== Checking svelte@5.55.9 exists ==="
npm view svelte@5.55.9 version
# Check for security advisories
echo -e "\n=== Checking for security advisories ==="
gh api graphql -f query='
{
securityVulnerabilities(first: 10, ecosystem: NPM, package: "svelte") {
nodes {
advisory {
summary
severity
publishedAt
}
vulnerableVersionRange
firstPatchedVersion {
identifier
}
}
}
}'Repository: Divkix/Logwell Length of output: 2641 🏁 Script executed: #!/bin/bash
set -euo pipefail
# Locate lockfiles
echo "=== Lockfiles present ==="
ls -la package-lock.json bun.lockb 2>/dev/null || true
echo
echo "=== package.json svelte spec ==="
cat package.json | node -e 'let s="";process.stdin.on("data",d=>s+=d).on("end",()=>{const j=JSON.parse(s);console.log(j.dependencies?.svelte ?? j.devDependencies?.svelte ?? j.svelte)})'
echo
echo "=== svelte versions in package-lock.json ==="
if [ -f package-lock.json ]; then
rg -n '"svelte"' package-lock.json | head -n 50
echo
rg -n '"name": "svelte"|"svelte@' package-lock.json | head -n 50 || true
echo
rg -n '"version": "5\.55\.' package-lock.json | head -n 50
fi
echo
echo "=== bun.lockb exists? ==="
if [ -f bun.lockb ]; then
echo "bun.lockb present (cannot easily parse without bun)."
fiRepository: Divkix/Logwell Length of output: 1075 🏁 Script executed: #!/bin/bash
set -euo pipefail
node -e 'const fs=require("fs");const j=JSON.parse(fs.readFileSync("package.json","utf8")); console.log("packageManager:", j.packageManager ?? "(none)"); console.log("scripts keys:", j.scripts?Object.keys(j.scripts):[]);'Repository: Divkix/Logwell Length of output: 608 🏁 Script executed: #!/bin/bash
set -euo pipefail
rg -n "bun install|bun\.lockb|\bBun\b|package-lock\.json|npm ci|npm install" -S README* package.json .github workflows* 2>/dev/null || trueRepository: Divkix/Logwell Length of output: 2688 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "=== Does package-lock.json contain 5.55.9? ==="
rg -n "5\.55\.9" package-lock.json || true
echo
echo "=== Does package-lock.json contain svelte spec ^5.55.9? ==="
rg -n "\"svelte\": \"\^5\.55\.9\"" package-lock.json || true
echo
echo "=== Show context around the found svelte version 5.55.7 (line ~6619) ==="
sed -n '6605,6635p' package-lock.json | cat -nRepository: Divkix/Logwell Length of output: 1669 🌐 Web query:
💡 Result: In Bun, Citations:
🏁 Script executed: #!/bin/bash
set -euo pipefail
ls -la bun.lock bun.lockb 2>/dev/null || trueRepository: Divkix/Logwell Length of output: 118 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "=== bun.lock contains 5.55.9? ==="
rg -n "5\.55\.9" bun.lock || true
echo
echo "=== bun.lock contains 5.55.7? ==="
rg -n "5\.55\.7" bun.lock || true
echo
echo "=== bun.lock occurrences for svelte ==="
rg -n "svelte@|\"svelte\"" bun.lock | head -n 50 || trueRepository: Divkix/Logwell Length of output: 9394 🏁 Script executed: #!/bin/bash
set -euo pipefail
rg -n "npm ci|npm install|package-lock\.json" .github/workflows -S || trueRepository: Divkix/Logwell Length of output: 249 Update
Security: 🤖 Prompt for AI Agents |
||
| "svelte-adapter-bun": "^1.0.1", | ||
| "svelte-check": "^4.4.8", | ||
| "svelte-sonner": "^1.1.1", | ||
|
|
||
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: Divkix/Logwell
Length of output: 2744
Update the lockfile so installs use the bumped, non-vulnerable dependency versions
package.jsonbumps@sveltejs/kitto^2.61.1, butpackage-lock.jsonstill pins@sveltejs/kitto2.59.1, so installs won’t pick up the intended upgrade.@sveltejs/kit@2.61.1exists, and advisories indicate versions<= 2.60.0are affected (patched at2.60.1), which includes2.59.1. Regenerate and commit the lockfile (e.g., viabun install/npm install) so it matchespackage.json(alsosvelteappears similarly out of sync).🤖 Prompt for AI Agents