chore(deps): update all dependencies to latest - #110
Merged
Conversation
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.
Regenerates every lockfile from scratch and bumps manifests and pins to latest, including majors. The Rust workspace was already tracking the newest major of every crate, so its only manifest change is a floor bump; the rest is a full Cargo.lock refresh to the latest compatible versions.
Astro 7 moved @astrojs/markdown-remark from a direct dependency to a peer-only one pinned at exactly 7.2.1, which npm no longer installs automatically. docs/astro.config.mjs imports it directly (
import { unified } from "@astrojs/markdown-remark"), so it is now declared as a direct dependency at astro's exact peer version. No changes were needed in astro.config.mjs or plugins/rewrite-internal-links.mjs; the production build and the custom link-rewrite and autolink pipeline both pass.The Cargo.lock refresh moved serde_derive, clap_derive, schemars, and async-trait onto the new syn 3.0 major while async-stream and the aws-smithy proc-macros stay on syn 2, an unavoidable transitive split. deny.toml gains a syn@2 skip to cover it and drops the getrandom@0.3 and r-efi@5 skips, which no longer match any duplicate. Notable transitive bumps include aws-lc-fips-sys 0.13.14 → 0.13.16 (same frozen FIPS branch, still built with gcc-13 in the Docker image), the AWS SDK crates, tokio 1.52 → 1.53, reqwest 0.13.4, and serde 1.0.229.
Supersedes #109.