Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- [PR 23](https://github.com/salesforce/django-request-queue-timeout/pull/23) Pin the ruff lint rule set to the historic default (E + F) so a ruff 0.16 upgrade stays behavior-neutral

## [1.0.4] - 2025-12-10
- [PR 9](https://github.com/salesforce/django-request-queue-timeout/pull/9) Update GitHub action versions
- [PR 10](https://github.com/salesforce/django-request-queue-timeout/pull/10) Fix Makefile install target
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ packages = ["rqto"]

[tool.ruff]
extend-exclude = [".heroku"]
extend-select = ["C901"]
# ruff 0.16 expanded its default rule set (~59 -> 413 rules). Pin the historic
# default (E + F) explicitly so a ruff 0.16 upgrade stays behavior-neutral;
# adopting the newly-default categories is a separate, deliberate decision.
lint.select = ["E4", "E7", "E9", "F"]
lint.extend-select = ["C901"]

[tool.coverage.report]
fail_under = 90
Expand Down
Loading