fix: resolve #480 CI failures — dependency bumps and util-linux CVE exceptions - #484
Merged
Merged
Conversation
…ailures - dbt-core 1.12.2 → 1.12.3 (widens sqlparse constraint to >=0.5.5,<0.7.0, allowing the patched sqlparse 0.6.0 to be resolved) - Add sqlparse>=0.6.0 explicit pin so the fixed version is always installed - dagster/dagster-graphql/dagster-webserver 1.13.18 → 1.13.19 - dagster-postgres 0.29.18 → 0.29.19 - .trivyignore: drop sqlparse CVEs (fixed by dbt-core 1.12.3 + sqlparse pin); add CVE-2026-53612/53613/53614 (util-linux mount, fixed in 2.41.5-0+deb13u1; no python:3.14-slim digest ships it yet) Co-authored-by: RonaldHensbergen <22539616+RonaldHensbergen@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
RonaldHensbergen
August 21, 2026 19:38
View session
RonaldHensbergen
approved these changes
Aug 22, 2026
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
The dbt image requirements now mix dbt-core==1.12.3 with dbt-postgres==1.11.0, which may be incompatible and contradicts the file’s own “bump together” guidance.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Resolves CI image vulnerability-scan failures by updating image dependencies and adjusting Trivy scan exceptions to account for newly disclosed util-linux CVEs until upstream base image digests include patched packages.
Changes:
- Bump dbt image dependency
dbt-coreto 1.12.3 and add an explicitsqlparse>=0.6.0floor to ensure patched sqlparse is selected. - Bump Dagster image dependencies to 1.13.19 (and
dagster-postgresto 0.29.19). - Update
.trivyignoreto remove now-fixed sqlparse CVE exceptions and add new util-linux CVE exceptions with expiry.
File summaries
| File | Description |
|---|---|
| images/dbt/requirements.txt | Updates dbt dependency pins and adds a sqlparse floor to allow patched versions. |
| images/dagster/requirements.txt | Bumps Dagster component versions in the Dagster image. |
| images/dagster/requirements-postgres.txt | Bumps the Dagster Postgres integration to match the core Dagster bump. |
| .trivyignore | Rotates CVE exceptions to reflect new util-linux disclosures and remove fixed sqlparse exceptions. |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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.
Three new util-linux CVEs (
CVE-2026-53612/53613/53614) were disclosed on 2026-08-21, after the last.trivyignoreupdate. All are fixed in2.41.5-0+deb13u1(trixie-security), but nopython:3.14-slimdigest ships it yet. Additionally,dbt-core==1.12.2hard-pinnedsqlparse<0.6.0, blocking the patched version;1.12.3widens this to<0.7.0.Summary
.trivyignore: drop now-fixed sqlparse CVEs; addCVE-2026-53612/53613/53614(exp:2026-11-15) following the same pattern as the existingCVE-2026-53615entryimages/dbt/requirements.txt:dbt-core1.12.2 → 1.12.3; addsqlparse>=0.6.0explicit floor pin so the patched version is always resolvedimages/dagster/requirements.txt:dagster/dagster-graphql/dagster-webserver1.13.18 → 1.13.19images/dagster/requirements-postgres.txt:dagster-postgres0.29.18 → 0.29.19Type Of Change
User Impact
No runtime behaviour change. Trivy image scans (PR gate + daily scheduled scan) will pass again once the base image digest is updated by Renovate.
Validation
No CLI code changed; unit tests not affected. Image scan gate will be validated by CI on this PR.
python -m unittest discover -s tests -p "test_*.py" -vChecklist