Skip to content

Latest commit

 

History

History
46 lines (26 loc) · 1.09 KB

CHANGELOG.md

File metadata and controls

46 lines (26 loc) · 1.09 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.

[1.2.8] - 2024-05-15

  • Compatible with both MySQLClient and PyMySQL

[1.2.7] - 2024-04-28

  • Add MySQLClientInstrumentor used to automatic tracing the requests from mysqlClient, the instrument() method should be invoked before connect().

[1.2.6] - 2021-12-29

  • Update updated_at field implicitly when updating with the only option.
some_record.a_field = "updatede a field"
# updated fields: a_field, updated_at
some_record.save(only=["a_field"])

[1.2.3] - 2021-04-21

  • ensure_ascii is provided in JSONCharField to support storing Chinese in non-ascii way

1.1.0 - 2019-02-15

added

  • Mass assignment protection

changed

  • replace count function with fn.SQL COUNT

1.0.0 - 2018-11-05

changed

  • Raise UserWarning when trying to use delete() in instance.