Skip to content

chore: update all dependencies to latest versions#15

Merged
andreaslampe merged 4 commits intomainfrom
copilot/update-dependencies
Mar 18, 2026
Merged

chore: update all dependencies to latest versions#15
andreaslampe merged 4 commits intomainfrom
copilot/update-dependencies

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Mar 18, 2026

Bumps all dependencies to their latest versions, driven by docus releasing v5.8.0+ with new features including opt-in sub-navigation.

Dependency updates

Package Before After
docus 5.5.0 5.8.1
nuxt 4.3.1 4.4.2
@nuxt/ui 4.4.0 4.5.1
@nuxt/fonts 0.13.0 0.14.0
@nuxt/eslint 1.15.1 1.15.2
nuxt-studio 1.3.1 1.4.0
better-sqlite3 12.6.2 12.8.0
tailwindcss 4.1.18 4.2.2

Notable: docus sub-navigation (opt-in)

docus 5.8.0 adds a navigation.sub config option — not enabled here, but available via app.config.ts:

docus: {
  navigation: {
    sub: 'header' // or 'aside'
  }
}

"header" renders a secondary tab bar below the main header; "aside" adds section anchors at the top of the sidebar.

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:

  • api.fontshare.com
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/../nuxt/bin/nuxt.mjs build --extends docus (dns block)
  • api.fontsource.org
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/../nuxt/bin/nuxt.mjs build --extends docus (dns block)
  • api.iconify.design
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/../nuxt/bin/nuxt.mjs build --extends docus (dns block)
  • docus.dev
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node /home/REDACTED/work/_temp/ghcca-node/node/bin/node --enable-source-maps /home/REDACTED/work/_temp/copilot-developer-action-main/dist/index.js (dns block)
  • fonts.bunny.net
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/../nuxt/bin/nuxt.mjs build --extends docus (dns block)
  • fonts.google.com
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/../nuxt/bin/nuxt.mjs build --extends docus (dns block)

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

Original prompt

This section details on the original issue you should resolve

<issue_title>Update dependencies</issue_title>
<issue_description>docus had an update recently with some nice new features like the sub-navigation. Please update all dependencies to the latest version but make sure everything is still working.</issue_description>

Comments on the Issue (you are @copilot in this section)


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: andreaslampe <68891717+andreaslampe@users.noreply.github.com>
Copilot AI changed the title [WIP] Update dependencies to the latest version chore: update all dependencies to latest versions Mar 18, 2026
Copilot AI requested a review from andreaslampe March 18, 2026 17:35
@andreaslampe
Copy link
Copy Markdown
Member

@copilot somthing is wrong here. I see a pnpm lockfile, but the build uses npm. There's a missmatch. Since build, Docker, etc use npm, please remove all pnpm related files and settings.
Finally update the npm lockfile with the new dependencies.

Co-authored-by: andreaslampe <68891717+andreaslampe@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 18, 2026

@copilot somthing is wrong here. I see a pnpm lockfile, but the build uses npm. There's a missmatch. Since build, Docker, etc use npm, please remove all pnpm related files and settin...

Done in cb15ab1. Removed pnpm-lock.yaml, removed the packageManager field from package.json, and regenerated package-lock.json via npm install with the updated dependencies. npm run build confirms everything still builds successfully.

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:

  • api.fontshare.com
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)
  • api.fontsource.org
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)
  • api.iconify.design
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)
  • fonts.bunny.net
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)
  • fonts.google.com
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)

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

@andreaslampe
Copy link
Copy Markdown
Member

@copilot somthing is wrong here. I see a pnpm lockfile, but the build uses npm. There's a missmatch. Since build, Docker, etc use npm, please remove all pnpm related files and settin...

Done in cb15ab1. Removed pnpm-lock.yaml, removed the packageManager field from package.json, and regenerated package-lock.json via npm install with the updated dependencies. npm run build confirms everything still builds successfully.

Warning

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

The build is still failing with:
npm error npm ci can only install packages when your package.json and package-lock.json or npm-shrinkwrap.json are in sync. Please update your lock file with npm install before continuing.

Co-authored-by: andreaslampe <68891717+andreaslampe@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 18, 2026

@copilot somthing is wrong here. I see a pnpm lockfile, but the build uses npm. There's a missmatch. Since build, Docker, etc use npm, please remove all pnpm related files and se...

Fixed in a3476c7. The lockfile was originally generated with npm 11.9.0 (Node 24 locally), which resolved commander differently than npm 10.8.2 used in CI. Regenerated package-lock.json using Node 20 + npm 10.8.2 (matching the CI environment) — npm ci and npm run build both pass.

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:

  • api.fontshare.com
    • Triggering command: /opt/hostedtoolcache/node/20.20.1/x64/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)
  • api.fontsource.org
    • Triggering command: /opt/hostedtoolcache/node/20.20.1/x64/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)
  • api.iconify.design
    • Triggering command: /opt/hostedtoolcache/node/20.20.1/x64/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)
  • fonts.bunny.net
    • Triggering command: /opt/hostedtoolcache/node/20.20.1/x64/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)
  • fonts.google.com
    • Triggering command: /opt/hostedtoolcache/node/20.20.1/x64/bin/node node /home/REDACTED/work/docs/docs/node_modules/.bin/nuxt build --extends docus (dns block)

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

@andreaslampe andreaslampe marked this pull request as ready for review March 18, 2026 21:54
@andreaslampe andreaslampe merged commit f51bc91 into main Mar 18, 2026
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Update dependencies

2 participants