- refactor: refactor uniq aggregate function. - feat: add some ClickHouse tuple and hash functions. - fix: test and fix ClickHouse functions. - ci: remove deploy of testpypi. - docs: update DatabaseOperations.max_in_list_size docstring. - docs: fix readme error word. - chore: clickhouse_backend.models.functions turn module to package.
1.1.4
- fix [57](https://github.com/jayvynl/django-clickhouse-backend/issues/57). - Implemente an improved version of inspectdb command. - Fix update compiler.
1.1.3
- Fix 50 partition by single expression raise TypeError. - Fix 51 . - Fix 53 .
1.1.2
- Use [flake8](https://flake8.pycqa.org/) to lint code. - Add GitHub action which runs tests. - Add test coverage to ci and send data to coveralls, add coverage badge. - Fix distributed and replicated table engine tests, add test guide to README.md.
1.1.1
- [Black](https://github.com/psf/black) code style. - Support [MergeTree settings](https://clickhouse.com/docs/en/engines/table-engines/mergetree-family/mergetree#settings) in creating table. - Support [distributed DDL](https://clickhouse.com/docs/en/sql-reference/distributed-ddl) and [distributed table](https://clickhouse.com/docs/en/engines/table-engines/special/distributed). - Support create migration table and run migrating on cluster. - Fix bug: exception is raised when insert data with expression values. - Fix bug: exception is raised when alter field from not null to null. - Support escaping dict data.
1.1.0
- Change `AutoFiled` and `SmallAutoField` to clickhouse `Int64`, so that id worker can generate value for them. This allows more compatibilities with existing apps such as `django.contrib.auth`. - `DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'` is no longer a required configuration item.