deps: upgrade all dependencies to latest - #122
Merged
Merged
Conversation
Upgrade npm devDependencies and GitHub Actions to the latest installable stable versions (respecting the 7-day publish cooldown). npm: - astro 7.0.6 to 7.0.7 - eslint 10.6.0 to 10.7.0 - eslint-plugin-astro 2.1.1 to 3.0.0 (major) - typescript-eslint 8.62.1 to 8.63.0 - vitest 4.1.9 to 4.1.10 GitHub Actions: - actions/setup-node v6.4.0 to v7.0.0 Held back: - typescript stays at 6.0.3. TypeScript 7.0 ships the native compiler port which changes the ts.Extension API, and typescript-eslint (8.63.0 and 8.64.0) still caps support at typescript >=4.8.4 <6.1.0. Installing TS 7 crashes eslint with "Cannot read properties of undefined (reading 'Cjs')". Revisit once typescript-eslint ships TS 7 support. - tailwindcss stays at 4.3.2. 4.3.3 is within the 7-day cooldown window. All local checks pass: lint, astro check (0 errors), typecheck, 16 tests. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 2f030837-bde3-46dd-839d-1af90e7c63fe
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Upgrades all dependencies across the repo to the latest installable stable versions, respecting the 7-day npm publish cooldown.
npm devDependencies
GitHub Actions
setup-node v7.0.0 pinned to SHA
820762786026740c76f36085b0efc47a31fe5020. Both workflows pinnode-version: '22'explicitly, and publish.yml providesNODE_AUTH_TOKENat publish time, so the v7 behavior changes (ESM migration, removed dummy NODE_AUTH_TOKEN export) do not affect this repo.Held back (intentional)
ts.ExtensionAPI. typescript-eslint (both 8.63.0 and the newer 8.64.0) still caps support attypescript >=4.8.4 <6.1.0, and installing TS 7 crashes eslint withCannot read properties of undefined (reading 'Cjs'). Revisit once typescript-eslint ships TS 7 support. This is why the open Dependabot PR bumping TypeScript to 7.0.2 is expected to fail CI.Validation
All local checks pass:
pnpm lint(eslint) cleanpnpm check(astro check): 0 errors, 0 warnings, 1 pre-existing hintpnpm typecheck(tsc --noEmit) cleanpnpm test(vitest): 16 passed / 2 filesCo-authored-by: Copilot App 223556219+Copilot@users.noreply.github.com