Skip to content

Latest commit

 

History

History
105 lines (51 loc) · 3.88 KB

CHANGELOG.md

File metadata and controls

105 lines (51 loc) · 3.88 KB

Changelog

1.4.1 (2024-09-22)

Performance Improvements

1.4.0 (2024-09-03)

NOTE: In versions 1.1.0 - 1.3.0, there was a bug that caused zeal to be active in all code, even outside of a zeal_context block. That is fixed in 1.4.0. When updating, make sure that you have installed zeal correctly as per the README.

Features

Bug Fixes

1.3.0 (2024-07-25)

Features

  • add ZEAL_SHOW_ALL_CALLERS to aid in debugging (#17) (7fdaf36)

1.2.0 (2024-07-22)

Features

1.1.0 (2024-07-20)

Features

  • allow ignoring specific models/fields in zeal_ignore (#13) (e51413b)

1.0.0 (2024-07-20)

⚠ BREAKING CHANGES

This project has been renamed to zeal. To migrate, replace zealot with zeal in your project's requirements. In your Django settings, replace ZEALOT_ALLOWLIST, ZEALOT_RAISE, etc. with ZEAL_ALLOWLIST, ZEAL_RAISE, and so on. In your code, replace from zealot import ... with from zeal import ....

Miscellaneous Chores

0.2.3 (2024-07-18)

Bug Fixes

  • ensure context is reset after leaving (#8) (f45cabb)

0.2.2 (2024-07-15)

Bug Fixes

  • don't alert from calls on different lines (7f7bda7)

0.2.1 (2024-07-08)

Bug Fixes

  • zeal_ignore always takes precedence (e61d060)

0.2.0 (2024-07-06)

Features

0.1.2 - 2024-07-06

Fixed

  • Handle empty querysets
  • Handle incorrectly-used .prefetch_related() when .select_related() should have been used
  • Don't raise an exception when using .values(...).get()

0.1.1 - 2024-07-05

Fixed

  • Ignore N+1s from singly-loaded records

0.1.0 - 2024-05-03

Initial release.