chore(deps): refresh all application and CI dependencies#156
Merged
Conversation
Run `poetry update` to bump all locked dependencies to their latest compatible versions and update the CI tooling constraints. This supersedes the open Dependabot PRs (#147-#153): - idna 3.14 -> 3.18 (PR #153) - requests 2.34.0 -> 2.34.2 (PR #152) - jaraco-functools 4.4.0 -> 4.5.0 (PR #151) - typeguard 4.5.1 -> 4.5.2 (PR #150) - python-discovery 1.3.0 -> 1.4.2 (PR #149) - virtualenv 21.3.1 -> 21.4.3, both poetry.lock and the .github/workflows/constraints.txt CI pin (PRs #147, #148) Also refreshes other transitive/dev deps (aiohttp, black, cryptography, faker, numpy, slack-sdk, etc.) and bumps the CI pip pin 26.1.1 -> 26.1.2. All nox sessions pass: tests, mypy, typeguard, safety, pre-commit. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Coverage Report
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Code reviewNo issues found. Checked for bugs and CLAUDE.md compliance. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR refreshes the project’s pinned dependency set by updating poetry.lock (via poetry update) and updating CI tool pins in .github/workflows/constraints.txt, consolidating the previously-open Dependabot bumps into a single change set.
Changes:
- Updated CI tool constraints:
pipto26.1.2andvirtualenvto21.4.3. - Regenerated
poetry.lockto reflect updated direct/transitive dependency versions while keepingpyproject.tomlconstraints unchanged.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/constraints.txt | Bumps CI tool pins for pip and virtualenv to the new constrained versions. |
| poetry.lock | Refreshes the resolved dependency graph and hashes after running poetry update. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Refreshes all application and CI/CD dependencies via
poetry updateplus a bump to the CI tooling pins in.github/workflows/constraints.txt. This supersedes the open Dependabot PRs #147–#153, all of which are subsumed here (in most cases to a newer version than the individual PR proposed).Dependabot PRs covered
Other refreshed deps
poetry updatealso bumped numerous transitive and dev dependencies, including aiohttp 3.13.5 → 3.14.1, black 26.3.1 → 26.5.1, cryptography 48.0.0 → 48.0.1, faker 40.15.0 → 40.23.0, numpy 2.4.4 → 2.4.6, slack-sdk 3.41.0 → 3.42.0, click 8.3.3 → 8.4.1, and more. CIpippin bumped 26.1.1 → 26.1.2.pyproject.tomlversion constraints already permitted all new versions, so onlypoetry.lockand.github/workflows/constraints.txtchanged.Testing
All nox sessions pass locally:
nox -s tests(295 passed)nox -s mypynox -s typeguardnox -s safety(pip-audit: no known vulnerabilities)nox -s pre-commit🤖 Generated with Claude Code