Skip to content

chore(deps): update all non-major dependencies#159

Open
renovate[bot] wants to merge 10 commits into
mainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#159
renovate[bot] wants to merge 10 commits into
mainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 27, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@commitlint/cli (source) ^20.4.3^20.5.0 age confidence devDependencies patch
@iconify-json/lucide 1.2.1021.2.104 age confidence dependencies patch
@netlify/nuxt (source) ^0.2.36^0.3.0 age confidence devDependencies minor
@nuxt/ui (source) 4.6.14.7.0 age confidence dependencies minor
@prisma/adapter-pg (source) 7.7.07.8.0 age confidence dependencies minor
@prisma/client (source) 7.7.07.8.0 age confidence dependencies minor
@sentry/nuxt (source) 10.49.010.50.0 age confidence dependencies minor
@takumi-rs/core (source) 1.0.121.1.2 age confidence devDependencies minor
@takumi-rs/wasm 1.0.121.1.2 age confidence devDependencies minor
@vue/test-utils 2.4.62.4.9 age confidence dependencies patch
nuxt-og-image (source) 6.4.36.4.8 age confidence dependencies patch
pnpm (source) 10.33.010.33.2 age confidence packageManager patch
skilld ^1.6.2^1.7.0 age confidence devDependencies minor
stale-dep 0.8.50.8.6 age confidence dependencies patch
tailwindcss (source) ^4.2.1^4.2.2 age confidence devDependencies patch
voidzero-dev/setup-vp v1.6.0v1.8.0 age confidence action minor
vue-tsc (source) ^3.2.5^3.2.6 age confidence devDependencies patch

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v20.5.2

Compare Source

Note: Version bump only for package @​commitlint/cli

netlify/primitives (@​netlify/nuxt)

v0.3.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated

v0.2.41

Compare Source

Dependencies
  • The following workspace dependencies were updated

v0.2.40

Compare Source

Dependencies
  • The following workspace dependencies were updated

v0.2.39

Compare Source

Dependencies
  • The following workspace dependencies were updated

v0.2.38

Compare Source

Dependencies
  • The following workspace dependencies were updated

v0.2.37

Compare Source

Dependencies
  • The following workspace dependencies were updated
nuxt/ui (@​nuxt/ui)

v4.7.0

Compare Source

Features
Bug Fixes
  • Accordion/Tabs: use item value as stable key to avoid remounts (#​6380) (3cee610)
  • Avatar: remove leading-none from fallback (#​6383) (77ce09a)
  • ChatMessage/ChatMessages: preserve generic message type in slot scope (#​6391) (20f66db)
  • ChatMessages: prevent layout shift caused by indicator during streaming (#​6297) (b7160e2)
  • ChatMessages: use MutationObserver for auto-scroll during streaming (#​6357) (47bf3cb)
  • ChatPromptSubmit: ignore disabled prop when status is not ready (600a2ca)
  • components: resolve defaultVariants in template logic (#​6361) (75b37d0)
  • ContentSearch/DashboardSearch: pick shared props from CommandPalette (cdcf2e5)
  • ContentSearch: speed up navigation mapping (0faf2c2)
  • ContentToc: use links for scrollspy instead of hardcoded h2/h3 (#​6282) (6aba2ea)
  • FieldGroup: prevent context from leaking into portals (#​6313) (5155e27)
  • FileUpload: use form field color and highlight instead of raw props (bb5a9ed)
  • Header/DashboardSidebar/Sidebar: allow auto focus in menu for proper focus trapping (#​6266) (9b91ee4)
  • InputDate/InputTime: increase segments width (#​6339) (4ebdb2f)
  • InputTags: add missing field group variant (#​6326) (aae5378)
  • Link: ensure single-root rendering for v-show and $el resolution (#​6310) (2c4ff35)
  • Modal/Slideover: drop empty header wrapper when empty (#​6381) (1082960)
  • module: use relative tagPriority for inline style tags (#​6299) (ae693d0)
  • PricingTable: align header elements vertically (#​6111) (0daacb0)
  • PricingTable: handle RTL mode (#​6382) (ab203db)
  • ProseCodeCollapse: match background on overscroll (28c89fe)
  • ProseImg: respect markdown width attribute (#​6350) (d4e4ea1)
  • ProsePre: get code from DOM if code prop is missing (#​6333) (b808ce4)
  • Select: support item-aligned position mode (#​6358) (255807a)
prisma/prisma (@​prisma/adapter-pg)

v7.8.0

Compare Source

Today, we are excited to share the 7.8.0 stable release 🎉

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

Highlights

ORM

Features

Prisma Client

  • Added a queryPlanCacheMaxSize option to the PrismaClient constructor for fine-grained control over the query plan cache. Pass 0 to disable the cache entirely, or omit it to use the default cache size. A larger value can improve performance in applications that execute many unique queries, while a smaller one can reduce memory usage. (#​29503)
Bug Fixes

Prisma Client

  • Fixed an equality filter panic and incorrect ::jsonb cast when filtering on PostgreSQL JSON list columns. Queries using where: { jsonListField: { equals: [...] } } no longer panic with a type mismatch or emit invalid SQL. (prisma/prisma-engines#5804)
  • Fixed case-insensitive JSON field filtering (mode: insensitive), allowing where: { jsonField: { equals: "...", mode: "insensitive" } } to work correctly. (prisma/prisma-engines#5806)
  • Fixed incorrect parameterization of enum values that have a custom database name set via @map. (#​29422)
  • Fixed a database parameter limit check (P2029), which could incorrectly reject or miss over-limit queries. (#​29422)
  • Fixed a regression that caused missing SQL Server VARCHAR casts for parameterized values. (prisma/prisma-engines#5801)

Schema Engine

  • Fixed a misleading error message in prisma migrate diff that referenced the --shadow-database-url CLI flag, which was removed in Prisma 7. (#​29455)
  • Fixed prisma migrate dev (and shadow database migration replay in general) failing with CREATE INDEX CONCURRENTLY cannot run inside a transaction block when a migration contained concurrent index creation statements on PostgreSQL. (prisma/prisma-engines#5799)
  • Fixed PostgreSQL introspection silently dropping sequence defaults when the database returns the schema-qualified form pg_catalog.nextval('sequence_name'::regclass) instead of the bare nextval(...). Columns backed by sequences now correctly appear as @default(autoincrement()) in the Prisma schema in all cases. (prisma/prisma-engines#5802)

Driver Adapters

  • @​prisma/adapter-d1: Savepoint operations (createSavepoint, rollbackToSavepoint, releaseSavepoint) now silently no-op with debug logging instead of executing SQL statements, consistent with how the D1 adapter already treats top-level transactions. (#​29499)

Open roles at Prisma

Interested in joining Prisma? We're growing and have several exciting opportunities across the company for developers who are passionate about building with Prisma. Explore our open positions on our Careers page and find the role that's right for you.

Enterprise support

Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.

With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.

getsentry/sentry-javascript (@​sentry/nuxt)

v10.50.0

Compare Source

kane50613/takumi (@​takumi-rs/core)

v1.1.2

Compare Source

Patch Changes

v1.1.1

Compare Source

Patch Changes

v1.1.0

Compare Source

Patch Changes

v1.0.16

Compare Source

Patch Changes

v1.0.15

Compare Source

Patch Changes

v1.0.14

Compare Source

Patch Changes

v1.0.13

Compare Source

Patch Changes
kane50613/takumi (@​takumi-rs/wasm)

v1.1.2

Compare Source

Patch Changes

v1.1.1

Compare Source

Patch Changes

v1.1.0

Compare Source

Patch Changes

v1.0.16

Compare Source

Patch Changes

v1.0.15

Compare Source

Patch Changes

v1.0.14

Compare Source

Patch Changes
  • Updated dependencies [6323299]
    • takumi-js@​1.0.14

v1.0.13

Compare Source

Patch Changes
  • Updated dependencies [ccfaff3]
    • takumi-js@​1.0.13
vuejs/test-utils (@​vue/test-utils)

v2.4.9

Compare Source

v2.4.8

Compare Source

compare changes

🩹 Fixes
  • Correct declaration entrypoint (#​2826)
🤖 CI
❤️ Contributors

v2.4.7

Compare Source

compare changes

🚀 Enhancements
  • Add Chinese docs translation (#​2552)
  • SetData()/shallowMount with initialData for components using the Composition API / <script setup> (#​2655)
🩹 Fixes
  • Preserve code from keyboard events (#​2434)
  • Switch browser and require exports definitions (#​2501)
  • Re-add peer dependencies but with wider range (#​2511)
  • Resolve warnings in docs:dev (30b7491)
  • Resolve TypeScript type errors in .vitepress/config (#​2549)
  • Accept FunctionalComponent as selector (0bb947f)
  • Text() misses content for array functional component (#​2579)
  • Use await in test (c5482b4)
  • deps: Update dependency vue-component-type-helpers to v3 (#​2683)
  • Remove wrapper div when unmount (#​2700)
  • Make mount options slots compatible with noUncheckedIndexedAccess true (#​2713)
  • Add missing peerDependency @​vue/compiler-dom (75801ba)
  • docs: Declare css module for vitepress typecheck (ddaca97)
💅 Refactors
  • Enforce consistent usage of type imports (#​2734)
📖 Documentation
  • Clarify findComponent vs getComponent (#​2435)
  • Update fr docs (67064ef)
  • Add note about partial transition stub support (#​2431)
  • Fix missing data at passing data section essentials guide (dda205e)
  • Fix missing data at passing data section essentials guide fr (ae2c72c)
  • Fix plugin TS declaration example (#​2466)
  • Fixed incorrect checkbox value check (#​2495)
  • Capital letter in sentence fix (#​2499)
  • Import missing DOMWrapper on Implementation of the plugin section (#​2519)
  • Add migration step for deprecated ref syntax in findAllComponents (#​2498)
  • Correct anchor hash links and fix typo (#​2551)
  • Center logo on home (#​2559)
  • zh-cn: Review a-crash-course (#​2563)
  • Use code-group for install commands (#​2571)
  • zh-cn: Review event-handing.md (#​2572)
  • zh-cn: Enhance conditional-rendering.md (#​2562)
  • zh-cn: Review easy-to-test (#​2567)
  • zh-cn: Review passing-data.md (#​2575)
  • zh-cn: Review async-suspense.md (#​2576)
  • zh: 优化 API 文档格式和内容 (#​2569)
  • zh: 更新 Vitest 模拟日期和计时器的说明 (#​2578)
  • zh-cn: Review http-requests.md (#​2580)
  • zh-cn: Review forms (#​2582)
  • zh-cn: Guide/advanced/slots.md (#​2565)
  • zh: Review extending-vtu (#​2583)
  • zh: Review index (#​2584)
  • Fix modelValue test example (85bfdf4)
  • Removes broken link from plugins.md (69bc1ce)
  • zh: Review transitions, component-instance, and reusability-composition (#​2616)
  • zh: Review v-model and vuex (#​2617)
  • zh: Review all the rest advanced guide (#​2619)
  • zh: Review migration (#​2623)
  • Fix a typo in transitions.md (#​2635)
  • Update crash-course to script setup (c81aa79)
  • Update Essentials section to setup (composition api) (#​2647)
  • Typos in examples (#​2678)
  • Typo in easy-to-test.md (#​2710)
  • Add note about mocking requestAnimationFrame for transitions (2324c65)
  • Updated example TodoApp to script setup (#​2727)
  • Remove "Using data" section from "Conditional Rendering" guide and fix passing data test example (#​2743)
  • Follow-up fixes for the conditional rendering guide (#​2744)
  • Mention shallowMount stub name changes in migration guide (80e051a)
  • Update conditional rendering documentation to clarify isVisible() usage with attachTo (#​2799)
  • Restore Options API component for data() mounting example (#​2804)
  • Promote Vitest as recommended test runner (#​2805)
  • api: Note that setValue does not accept objects on <select> (#​2819)
🏡 Chore
  • Add api/index.md to docs:translation:compare (6b8681c)
  • Remove unnecessary generic arguments (cfd70c6)
  • Ignore TS error in config object (9d0a618)
  • Simplify eslint packages (c1d0ffd)
  • Use eslint v9 with flat config (2f19fdf)
  • Expose Stubs type publicly (#​2492)
  • Update documentation file path (9c96594)
  • Use pnpm v10 (e4c2cb3)
  • Pnpm approve build (81c54e9)
  • Use github issue forms (#​2673)
  • Exclude class components from test type-checking (0899008)
  • Add explicit coverage include for vitest v4 (51672b9)
  • Update to prettier v3.7 (fed9e7c)
  • Migrate to oxfmt (81c1de9)
  • Migrate to oxlint (a361908)
  • Prepare TypeScript 6 migration settings (55e1262)
  • Adjust tsd config for TypeScript 6 (7d23eb5)
  • Avoid TypeScript 6 target deprecation warning (81d063c)
🤖 CI
  • Remove node v22 build (7ebf58d)
  • Add node v22 build (57540ee)
  • Use "pool: threads" instead of vmThreads (d0cbb54)
  • Remove node v18 and add v24 (fd9cf95)
  • Add trusted publishing release workflow (#​2825)
❤️ Contributors
nuxt-modules/og-image (nuxt-og-image)

v6.4.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.4.7

Compare Source

compare changes

🩹 Fixes
  • takumi: Restore non-latin glyph support regressed in v6.2.0 (#​587)
🏡 Chore
❤️ Contributors

v6.4.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.4.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.4.4

Compare Source

compare changes

🩹 Fixes
  • takumi: Serialize WASM calls (#​583)
🏡 Chore
❤️ Contributors
pnpm/pnpm (pnpm)

v10.33.2

Compare Source

v10.33.1: pnpm 10.33.1

Compare Source

Patch Changes
  • When a project's packageManager field selects pnpm v11 or newer, commands that v10 would have passed through to npm (version, login, logout, publish, unpublish, deprecate, dist-tag, docs, ping, search, star, stars, unstar, whoami, etc.) are now handed over to the wanted pnpm, which implements them natively. Previously they silently shelled out to npm — making, for example, pnpm version --help print npm's help on a project with packageManager: pnpm@11.0.0-rc.3 #​11328.
Platinum Sponsors
Bit
Gold Sponsors
Sanity Discord Vite
SerpApi CodeRabbit Stackblitz
Workleap Nx
skilld-dev/skilld (skilld)

v1.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
sxzz/stale-dep (stale-dep)

v0.8.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
tailwindlabs/tailwindcss (tailwindcss)

v4.2.4

Compare Source

Fixed
  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#​19947)

v4.2.3

Compare Source

Fixed
  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#​19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#​19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#​19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#​19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#​19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#​19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#​19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#​19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#​19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#​19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#​19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#​19846)
  • Upgrade: never migrate files that are ignored by git (#​19846)
  • Add .env and .env.* to default ignored content files (#​19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#​19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#​19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#​19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#​19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#​19858)
  • Improve performance when scanning JSONL / NDJSON files (#​19862)
  • Support NODE_PATH environment variable in standalone CLI (

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "on Monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added chore dependencies Pull requests that update a dependency file labels Apr 27, 2026
@sentry
Copy link
Copy Markdown

sentry Bot commented Apr 27, 2026

✅ All tests passed.

@codspeed-hq
Copy link
Copy Markdown

codspeed-hq Bot commented Apr 27, 2026

Merging this PR will not alter performance

✅ 44 untouched benchmarks


Comparing renovate/all-minor-patch (21e9eae) with main (8388997)

Open in CodSpeed

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0ed6a03 to 1ee5e0b Compare April 27, 2026 15:06
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 1ee5e0b to 84cc95a Compare April 27, 2026 20:52
@RedStar071
Copy link
Copy Markdown
Member

@copilot fix failed workflow

…ssion in tailwindcss 4.2.4

Agent-Logs-Url: https://github.com/wolfstar-project/wolfstar.rocks/sessions/4152fe4f-252c-49a2-8f97-b4b6388df319

Co-authored-by: RedStar071 <76824516+RedStar071@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 27, 2026

@copilot fix failed workflow

Fixed in commit 867f182.

Root cause: tailwindcss@4.2.4 (via PR tailwindlabs/tailwindcss#19947) changed @plugin resolution in @tailwindcss/vite to use browser export conditions. Since daisyui@5.5.19's package.json has "browser": "./daisyui.css", the plugin resolver was picking up the CSS file instead of the JS plugin (index.js), causing ERR_UNKNOWN_FILE_EXTENSION: .css.

The upstream fix (tailwindlabs/tailwindcss#19949) is not yet released. As a workaround, changed @plugin "daisyui"@plugin "daisyui/index.js" in app/assets/css/main.css to explicitly reference the JS entry point, bypassing the browser field lookup.

Copilot AI requested a review from RedStar071 April 27, 2026 22:38
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Apr 28, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@RedStar071 RedStar071 requested a review from lorypelli April 28, 2026 16:35
…ld regression in tailwindcss 4.2.4"

This reverts commit 867f182.
@RedStar071
Copy link
Copy Markdown
Member

@copilot resolve the merge conflicts in this pull request

Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 28, 2026

@copilot resolve the merge conflicts in this pull request

Resolved in commit 4e5ac52.

The conflict was in pnpm-lock.yamlmain had added dedupePeers: true to pnpm-workspace.yaml and regenerated the lockfile, which conflicted with the renovate PR's lockfile changes.

Fixed by:

  1. Adding dedupePeers: true to pnpm-workspace.yaml (matching main)
  2. Running pnpm install --no-frozen-lockfile to regenerate a clean pnpm-lock.yaml incorporating both the renovate dependency updates and the dedupePeers setting

@RedStar071
Copy link
Copy Markdown
Member

@copilot resolve the merge conflicts in this pull request

…pdate CI workflow

Co-authored-by: RedStar071 <76824516+RedStar071@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

Copilot AI commented May 1, 2026

@copilot resolve the merge conflicts in this pull request

Resolved in commit 34f6840.

main had gained 3 new commits since the last conflict resolution, including a new server/plugins/fallback-ui.ts file (noscript fallback UI). Merged origin/main into the branch, resolved the pnpm-lock.yaml conflict by keeping the renovate dependency updates, and incorporated the new files (.coderabbit.yml, server/plugins/fallback-ui.ts, CI workflow update).

lorypelli
lorypelli previously approved these changes May 1, 2026
Copy link
Copy Markdown
Member

@lorypelli lorypelli left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@RedStar071
Copy link
Copy Markdown
Member

@copilot resolve the merge conflicts in this pull request

@RedStar071 RedStar071 requested a review from lorypelli May 9, 2026 13:11
…age.json conflicts

Co-authored-by: RedStar071 <76824516+RedStar071@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

Copilot AI commented May 9, 2026

@copilot resolve the merge conflicts in this pull request

Resolved in commit 915a245.

Conflicts this round:

  • .github/workflows/autofix.yml and continuous-integration.yml: main had migrated to a local .github/actions/setup-vp composite action — took main's version.
  • package.json: merged main's pinned exact versions with renovate's bumps (@netlify/nuxt@0.3.0, @takumi-rs/core@1.1.2, @takumi-rs/wasm@1.1.2, skilld@1.7.0, nuxt-og-image@6.4.8, stale-dep@^0.8.6, pnpm@10.33.2).
  • pnpm-lock.yaml: regenerated via pnpm install --no-frozen-lockfile.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/graphql
    • Triggering command: /usr/bin/gh gh auth status (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/6.4.8
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/main
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/master
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/nuxt-og-image@6.4.8
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/v6.4.8
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/releases
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/4.1.5
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/@vitest/browser-playwright@4.1.5
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/main
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/master
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/v4.1.5
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
  • https://api.github.com/repos/vitest-dev/vitest/releases
    • Triggering command: REDACTED, pid is -1 (http block)
  • nuxtseo.com
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)
  • ungh.cc
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)
  • unpkg.com
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)
  • vitest.dev
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

lorypelli
lorypelli previously approved these changes May 9, 2026
Copy link
Copy Markdown
Member

@lorypelli lorypelli left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@RedStar071
Copy link
Copy Markdown
Member

@copilot resolve the merge conflicts in this pull request

RedStar071
RedStar071 previously approved these changes May 12, 2026
Copilot AI and others added 2 commits May 12, 2026 16:21
…kill files

Co-authored-by: RedStar071 <76824516+RedStar071@users.noreply.github.com>
Copilot AI dismissed stale reviews from RedStar071 and lorypelli via 21e9eae May 12, 2026 16:22
Copy link
Copy Markdown
Contributor

Copilot AI commented May 12, 2026

@copilot resolve the merge conflicts in this pull request

Resolved in commit 21e9eae.

main had upgraded pnpm from v10 to v11 (commits eb8fe362/a64b9164/89fcd655) which conflicted with Renovate's pnpm 10.33.0→10.33.2 bump in this branch. Resolved by taking main's packageManager: pnpm@11.1.0 while preserving all Renovate dep bumps. Regenerated pnpm-lock.yaml with pnpm v11 and synced skill lock files from main.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • codspeed.io
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)
  • https://api.github.com/graphql
    • Triggering command: /usr/bin/gh gh auth status (http block)
  • https://api.github.com/repos/CodSpeedHQ/codspeed-node/git/trees/5.4.0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/CodSpeedHQ/codspeed-node/git/trees/@codspeed/vitest-plugin@5.4.0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/CodSpeedHQ/codspeed-node/git/trees/main
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/CodSpeedHQ/codspeed-node/git/trees/master
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/CodSpeedHQ/codspeed-node/git/trees/v5.4.0
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
  • https://api.github.com/repos/CodSpeedHQ/codspeed-node/releases
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/netlify/primitives
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/netlify/primitives/git/trees/0.3.0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/netlify/primitives/git/trees/@netlify/nuxt@0.3.0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/netlify/primitives/git/trees/main
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/netlify/primitives/git/trees/master
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/netlify/primitives/git/trees/v0.3.0
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
  • https://api.github.com/repos/netlify/primitives/releases
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/6.4.8
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/main
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/master
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/nuxt-og-image@6.4.8
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/git/trees/v6.4.8
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
  • https://api.github.com/repos/nuxt-modules/og-image/releases
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/open-circle/valibot/git/trees/1.4.0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/open-circle/valibot/git/trees/main
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/open-circle/valibot/git/trees/master
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/open-circle/valibot/git/trees/v1.4.0
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
  • https://api.github.com/repos/open-circle/valibot/git/trees/valibot@1.4.0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/open-circle/valibot/releases
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/sxzz/stale-dep
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/sxzz/stale-dep/git/trees/0.8.6
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/sxzz/stale-dep/git/trees/main
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/sxzz/stale-dep/git/trees/master
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/sxzz/stale-dep/git/trees/stale-dep@0.8.6
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/sxzz/stale-dep/git/trees/v0.8.6
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
  • https://api.github.com/repos/sxzz/stale-dep/releases
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/4.1.6
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/@vitest/browser-playwright@4.1.6
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/main
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/master
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/vitest-dev/vitest/git/trees/v4.1.6
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (http block)
  • https://api.github.com/repos/vitest-dev/vitest/releases
    • Triggering command: REDACTED, pid is -1 (http block)
  • nuxtseo.com
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)
  • ungh.cc
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)
  • unpkg.com
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)
  • valibot.dev
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)
  • vitest.dev
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node /home/REDACTED/work/wolfstar.rocks/wolfstar.rocks/node_modules/skilld/dist/cli-entry.mjs update (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI requested a review from RedStar071 May 12, 2026 16:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

chore dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants