Conversation
Owner
furlongm
commented
Apr 13, 2026
- auto-enable wal mode for sqlite backend
- fix duplicate verbose_name_plural in report model meta
- sanitize filter_params in bulk action views
- add null guard for missing references element in updateinfo xml
- return early on yaml parse error in extract_module_metadata
- fix null url handling in osv.dev cve references
- send info messages to stdout instead of stderr
- override get_new_connection to set journal_mode=wal automatically - eliminates need for manual pragma calls in post-install scripts
first assignment was meant to be verbose_name (singular).
five bulk action views passed raw POST filter_params into redirects without calling sanitize_filter_params(), unlike the rest of the codebase.
find() returns None when the element doesn't exist, causing AttributeError on the subsequent findall() call.
missing return after except meant code fell through to iterate an unassigned variable, causing UnboundLocalError.
- skip references with null urls in parse_osv_dev_cve_data - bail early from fixup_reference when urlparse has no hostname
tqdm.write(file=sys.stdout) replaces logger.info() for info messages so that patchman -lh, -lr etc. can be piped through grep and other standard unix tools. warnings and errors remain on stderr.
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.