deps: update dependencies to latest - #129
Merged
Merged
Conversation
- typescript: 6.0.3 -> 7.0.2 (native compiler, supplies tsc) - @typescript/typescript6: new at 6.0.2 (TS 6.0 API for typescript-eslint and astro check) - pnpm (packageManager): 11.11.0 -> 11.17.0 - actions/checkout: v7.0.0 -> v7.0.1 - brace-expansion: 5.0.7 -> 5.0.8 (GHSA-mh99-v99m-4gvg, high) - fast-uri: 3.1.3 -> 3.1.4 (GHSA-v2hh-gcrm-f6hx, high) - postcss: 8.5.16 -> 8.5.23 (GHSA-r28c-9q8g-f849, high) - svgo: 4.0.1 -> 4.0.2 (GHSA-2p49-hgcm-8545, high) TypeScript 7.0 ships the native compiler without a compiler API, so typescript-eslint and @astrojs/check both hard-fail against it. This adopts the side-by-side layout Microsoft documents for the 6.0/7.0 transition: the typescript specifier is aliased to @typescript/typescript6 so API consumers keep working, and @typescript/native supplies the 7.0 tsc that build and typecheck run. The four transitive security bumps are pinned through the existing pnpm overrides block. The two stacked fast-uri entries and the postcss entry were consolidated into single ranges that cover the new advisories. pnpm audit now reports no known vulnerabilities, down from 4 high. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 2127a7a3-47c9-410a-9f75-7eaf08125751
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.
Updates every dependency to its latest stable version and clears all four high-severity audit findings.
Direct
Everything else (astro 7.1.3, tailwindcss 4.3.3, eslint 10.8.0, typescript-eslint 8.65.0, vitest 4.1.10, @astrojs/check 0.9.9, @eslint/js 10.0.1, eslint-plugin-astro 3.0.1) was already at latest.
Security, transitive, pinned via pnpm overrides
pnpm auditnow reports no known vulnerabilities, down from 4 high.Why the typescript entry points at 6.0.2
TypeScript 7.0 ships the native compiler but no compiler API, so
typescript-eslintand@astrojs/checkboth hard-fail against it. This uses the side-by-side layout Microsoft documents for the 6.0/7.0 transition: thetypescriptspecifier is aliased to@typescript/typescript6so API consumers keep working, and@typescript/nativesupplies the 7.0tsc. Net result is that the project type-checks on TypeScript 7:pnpm exec tsc --versionreports 7.0.2 andpnpm peers checkis clean. Supersedes #118.Held back: nothing.
Validation: build / typecheck (TS 7.0.2) / astro check / lint / test (16 passed): pass.
pnpm install --frozen-lockfilepasses.