🧹 Resolve Security Vulnerabilities and Migrate Paraglide to v2#25
Open
🧹 Resolve Security Vulnerabilities and Migrate Paraglide to v2#25
Conversation
…2 middleware and fix security vulnerabilities
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.
Noticed some security warnings in our package audit and realized they were tied to a few libraries that hadn't been updated in a while. Since one of the main culprits was actually deprecated, I attempted to clean up the stack. I also took the opportunity to fix a breaking issue in our CI pipeline related to pyAV dependency builds.
The stuff this PR did:
ajvandcookiesince those nested versions are currently stuck upstream.@inlang/paraglide-sveltekit. I updated it with the now recommendedparaglide-js(v2).<ParaglideJS>layout wrapper and thei18n.tsfile. It's now using the newer middleware and native SvelteKitreroutehooks.avpackage was attempting to compile from source against an incompatible version of FFmpeg in theubuntu-latestrunner. I added anapt-get install -y ffmpegstep to provide the base system media libraries, and added anav!=14.4.0constraint topyproject.toml. This forcesuvto download a pre-compiled wheel instead, which bypasses the C-compiler entirely, turns the pipeline green.The project is now passing
pnpm auditand the test suite is running successfully.