deps(deps-dev): bump the minor-and-patch group across 1 directory with 3 updates#118
deps(deps-dev): bump the minor-and-patch group across 1 directory with 3 updates#118dependabot[bot] wants to merge 1 commit into
Conversation
…h 3 updates Bumps the minor-and-patch group with 3 updates in the / directory: [@electric-sql/pglite](https://github.com/electric-sql/pglite/tree/HEAD/packages/pglite), [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `@electric-sql/pglite` from 0.4.5 to 0.4.6 - [Release notes](https://github.com/electric-sql/pglite/releases) - [Changelog](https://github.com/electric-sql/pglite/blob/main/packages/pglite/CHANGELOG.md) - [Commits](https://github.com/electric-sql/pglite/commits/HEAD/packages/pglite) Updates `knip` from 6.14.1 to 6.14.2 - [Release notes](https://github.com/webpro-nl/knip/releases) - [Commits](https://github.com/webpro-nl/knip/commits/knip@6.14.2/packages/knip) Updates `vite` from 8.0.13 to 8.0.14 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.0.14/packages/vite) --- updated-dependencies: - dependency-name: "@electric-sql/pglite" dependency-version: 0.4.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: knip dependency-version: 6.14.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: vite dependency-version: 8.0.14 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
📝 WalkthroughWalkthroughThree development dependencies receive patch version updates: ChangesDevelopment dependencies
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Suggested reviewers
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 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: 1
🤖 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 `@package.json`:
- Line 38: package-lock.json is out of sync with package.json for
devDependencies `@electric-sql/pglite`, knip, and vite; regenerate the lockfile
and commit the update by running your package manager (e.g., bun install) so the
lockfile reflects the versions declared in package.json (ensure
`@electric-sql/pglite` -> 0.4.6, knip -> 6.14.2, vite -> 8.0.14), then verify
package-lock.json changes and include them in the PR.
🪄 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: Organization UI
Review profile: CHILL
Plan: Pro Plus
Run ID: 21fcb2c9-ab76-436e-9fd9-536354f0f265
⛔ Files ignored due to path filters (1)
bun.lockis excluded by!**/*.lock
📒 Files selected for processing (1)
package.json
📜 Review details
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (6)
- GitHub Check: Unit Tests
- GitHub Check: Lint & Type Check
- GitHub Check: Build Verification
- GitHub Check: E2E Tests
- GitHub Check: Integration Tests
- GitHub Check: Docker Build
🔇 Additional comments (3)
package.json (3)
38-38: LGTM!
56-56: LGTM!
64-64: LGTM!
| "devDependencies": { | ||
| "@biomejs/biome": "^2.4.15", | ||
| "@electric-sql/pglite": "^0.4.5", | ||
| "@electric-sql/pglite": "^0.4.6", |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Verify that lockfiles contain the updated dependency versions
echo "=== Checking for lockfiles ==="
fd -t f 'bun.lockb|package-lock.json|yarn.lock|pnpm-lock.yaml' --max-depth 1
echo -e "\n=== Checking package-lock.json (if exists) ==="
if [ -f "package-lock.json" ]; then
echo "--- `@electric-sql/pglite` version ---"
cat package-lock.json | jq -r '.packages["node_modules/@electric-sql/pglite"].version // "not found"'
echo "--- knip version ---"
cat package-lock.json | jq -r '.packages["node_modules/knip"].version // "not found"'
echo "--- vite version ---"
cat package-lock.json | jq -r '.packages["node_modules/vite"].version // "not found"'
else
echo "package-lock.json not found"
fi
echo -e "\n=== Expected versions from package.json ==="
echo "`@electric-sql/pglite`: 0.4.6"
echo "knip: 6.14.2"
echo "vite: 8.0.14"Repository: Divkix/Logwell
Length of output: 353
Update lockfile to match package.json dependency versions
package.json declares updated devDependency versions for @electric-sql/pglite, knip, and vite, but package-lock.json still contains older versions:
@electric-sql/pglite:0.4.5inpackage-lock.jsonvs0.4.6inpackage.jsonknip:6.12.2inpackage-lock.jsonvs6.14.2inpackage.jsonvite:8.0.13inpackage-lock.jsonvs8.0.14inpackage.json
Regenerate the lockfile (e.g., with bun install) so the lockfile reflects the new versions.
🤖 Prompt for 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.
In `@package.json` at line 38, package-lock.json is out of sync with package.json
for devDependencies `@electric-sql/pglite`, knip, and vite; regenerate the
lockfile and commit the update by running your package manager (e.g., bun
install) so the lockfile reflects the versions declared in package.json (ensure
`@electric-sql/pglite` -> 0.4.6, knip -> 6.14.2, vite -> 8.0.14), then verify
package-lock.json changes and include them in the PR.
|
Looks like these dependencies are updatable in another way, so this is no longer needed. |
Bumps the minor-and-patch group with 3 updates in the / directory: @electric-sql/pglite, knip and vite.
Updates
@electric-sql/pglitefrom 0.4.5 to 0.4.6Changelog
Sourced from @electric-sql/pglite's changelog.
Commits
Updates
knipfrom 6.14.1 to 6.14.2Release notes
Sourced from knip's releases.
Commits
e93ccaaRelease knip@6.14.22753d69Detect Babel plugins/presets in Vite plugin options (resolve #1761)1b28923Fix Bun binary dependency tracking (#1759)f600b09Fix extended tsconfig type dependency attribution (#1758)ebde7f8Fix Serverless TypeScript plugin dependencies (#1757)e841c63Fix GraphQL Codegen script config dependencies (#1756)829620fFix LICENSE link (#1760)33e0cc1Fix Astro plugin to support both possible middleware entry points (#1749)Updates
vitefrom 8.0.13 to 8.0.14Release notes
Sourced from vite's releases.
Changelog
Sourced from vite's changelog.
Commits
c917f1erelease: v8.0.145d94d1bfix(html): handle trailing slash paths in transformIndexHtml (#22480)98b8163fix(deps): update all non-major dependencies (#22471)96efc88feat: update rolldown to 1.0.2 (#22484)ebf39a0test(css): sass does not use main field (#22449)0ae2844refactor(glob): do not rewrite import path for absolute base (#22310)7cb728echore(deps): update rolldown-related dependencies (#22470)b3132dafix(optimizer): pass oxc jsx options to transformSync in dependency scan ...e8e9a34fix(dev): handle errors when sending messages to vite server (#22450)2c69495chore: remove irrelevant commits from changelogDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions