chore(deps): update lock files to fix known vulnerabilities (GC1-104) - #280
Open
pmichalina-groq wants to merge 1 commit into
Open
chore(deps): update lock files to fix known vulnerabilities (GC1-104)#280pmichalina-groq wants to merge 1 commit into
pmichalina-groq wants to merge 1 commit into
Conversation
Updates the pinned versions with published security advisories: - aiohttp 3.13.3 -> 3.14.3 (multiple advisories, e.g. GHSA-2fqr-mr3j-6wp8) - filelock 3.19.1 -> 3.32.2 (GHSA-qmgc-5h2g-mvrw, GHSA-w853-jp5j-5j7f) - idna 3.11 -> 3.18 (GHSA-65pc-fj4g-8rjx) - pygments 2.19.2 -> 2.20.0 (GHSA-5239-wwwm-4pmq) - pytest 8.4.2 -> 9.1.1 (GHSA-6w46-j5rx-g56g) - pytest-asyncio 1.2.0 -> 1.4.0 (required by pytest 9) All other pins are unchanged. pydantic stays at 2.12.5 because pydantic 2.13 adds a model_dump parameter that the generated model overrides do not accept yet (pyright failure). OSV scan of the updated lock file reports zero known vulnerabilities across all 59 pins.
pmichalina-groq
requested review from
andrewtlw and
cwilmott-groq
as code owners
August 10, 2026 20:41
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
andrewtlw
approved these changes
Aug 10, 2026
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.
Part of GC1-104.
What
Update the rye lock files to remove all pinned versions that have published security advisories:
All other pins are unchanged. pydantic stays at 2.12.5 on purpose: pydantic 2.13 adds a
polymorphic_serializationparameter tomodel_dump/model_dump_json, and the generated overrides insrc/groq/_models.pydo not accept it yet, so pyright fails. That bump belongs in Stainless codegen.Verification
rye lock --all-features --update <pkg>...with rye 0.44.0 (the CI-pinned version)./scripts/lintpasses (ruff, pyright, mypy, import check)./scripts/testpasses: 732 passed, 62 skipped, plus the pydantic-v1 nox sessionrequirements-dev.lock: 0 known vulnerabilities across all 59 pinsNote
Dependabot vulnerability alerts are disabled on this repository, which is why these advisories were silent. A repository admin should enable them (Settings -> Advanced Security -> Dependabot alerts). Tracked in GC1-104.
Companion PR: #281 switches PyPI publishing to Trusted Publishing (OIDC). The two PRs are independent; this one can merge first.