Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 2 KB

CHANGELOG.md

File metadata and controls

56 lines (43 loc) · 2 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[2.0.0]

Added

  • Make autocomplete work for N+1 queries detection properties.
  • Add more precise detection to
    • Avoid false positive with multiple calls to same method
    • Detect undetected N+1 queries caused by eager fetching
  • Add a new method to clear Hibernate session state and avoid missed detection because of test setup
  • Add new property to enable or disable N+1 queries detection

Changed

  • Rename N+1 queries detection properties.

Removed

  • Remove unused application properties

1.0.3 - 2020-05-10

Added

  • Add back a more specific detection of N+1 queries due to missing lazy fetching.

Changed

  • Make the detection of N+1 queries due to missing eager fetching on the queries more specific.

1.0.2 - 2020-05-08

Changed

  • Rename N+1 query to plural.

Removed

  • [BUG FIX] Temporarily remove detection of eager fetching on queries to avoid false positives.

1.0.1 - 2015-05-06

Changed

  • [BUG FIX] Fix initialisation of ThreadLocal variables to avoid NullPointerExceptions.

1.0.0 - 2020-05-01

Added

  • Auto detection of N+1 queries
  • Error level configuration by application properties

0.1.0 - 2019-12-18

Added

  • Feature to count the queries