infi.clickhouse_orm/CHANGELOG.md

110 lines
3.7 KiB
Markdown
Raw Normal View History

2017-02-07 17:22:04 +03:00
Change Log
==========
2018-04-07 15:20:33 +03:00
Unreleased
----------
- Add support for compound filters with Q objects (desile)
- Add support for BETWEEN operator (desile)
2018-04-21 12:10:30 +03:00
- Distributed engine support (tsionyx)
- `_fields` and `_writable_fields` are OrderedDicts - note that this might break backwards compatibility (tsionyx)
- Improve error messages returned from the database with the `ServerError` class (tsionyx)
2018-04-21 13:48:00 +03:00
- Added support of custom partitioning (M1hacka)
- Added attribute `server_version` to Database class (M1hacka)
- Changed `Engine.create_table_sql()`, `Engine.drop_table_sql()`, `Model.create_table_sql()`, `Model.drop_table_sql()` parameter to db from db_name (M1hacka)
2018-04-21 13:53:06 +03:00
- Fix parsing of datetime column type when it includes a timezone (M1hacka)
2017-02-07 17:22:04 +03:00
2017-10-31 12:48:32 +03:00
v0.9.8
------
2017-10-30 16:15:12 +03:00
- Bug fix: add field names list explicitly to Database.insert method (anci)
- Added RunPython and RunSQL migrations (M1hacka)
2017-10-30 16:29:49 +03:00
- Allow ISO-formatted datetime values (tsionyx)
- Show field name in error message when invalid value assigned (tsionyx)
2017-10-30 16:49:53 +03:00
- Bug fix: select query fails when query contains '$' symbol (M1hacka)
- Prevent problems with AlterTable migrations related to field order (M1hacka)
- Added documentation about custom fields.
2017-10-30 16:15:12 +03:00
2017-09-13 12:24:51 +03:00
v0.9.7
------
2017-09-10 17:17:04 +03:00
- Add `distinct` method to querysets
- Add `AlterTableWithBuffer` migration operation
2017-09-13 12:24:51 +03:00
- Support Merge engine (M1hacka)
2017-08-23 08:15:03 +03:00
v0.9.6
------
2017-08-20 10:36:21 +03:00
- Fix python3 compatibility (TvoroG)
- Nullable arrays not supported in latest ClickHouse version
- system.parts table no longer includes "replicated" column in latest ClickHouse version
2017-08-15 23:26:21 +03:00
v0.9.5
------
- Added `QuerySet.paginate()`
- Support for basic aggregation in querysets
2017-06-26 11:10:18 +03:00
v0.9.4
------
- Migrations: when creating a table for a `BufferModel`, create the underlying table too if necessary
2017-06-24 12:59:35 +03:00
v0.9.3
------
2017-06-23 11:56:05 +03:00
- Changed license from PSF to BSD
- Nullable fields support (yamiou)
2017-06-24 12:28:42 +03:00
- Support for queryset slicing
2017-06-23 11:56:05 +03:00
2017-06-15 14:49:43 +03:00
v0.9.2
2017-06-15 14:48:39 +03:00
------
- Added `ne` and `not_in` queryset operators
- Querysets no longer have a default order unless `order_by` is called
- Added `autocreate` flag to database initializer
- Fix some Python 2/3 incompatibilities (TvoroG, tsionyx)
- To work around a JOIN bug in ClickHouse, `$table` now inserts only the table name,
and the database name is sent in the query params instead
2017-05-11 05:46:42 +03:00
v0.9.0
------
2017-05-11 05:30:17 +03:00
- Major new feature: building model queries using QuerySets
- Refactor and expand the documentation
- Add support for FixedString fields
- Add support for more engine types: TinyLog, Log, Memory
- Bug fix: Do not send readonly=1 when connection is already in readonly mode
2017-04-06 15:12:39 +03:00
v0.8.2
------
- Fix broken Python 3 support (M1hacka)
2017-04-05 18:37:14 +03:00
v0.8.1
------
2017-04-04 15:26:15 +03:00
- Add support for ReplacingMergeTree (leenr)
- Fix problem with SELECT WITH TOTALS (pilosus)
- Update serialization format of DateTimeField to 10 digits, zero padded (nikepan)
- Greatly improve performance when inserting large strings (credit to M1hacka for identifying the problem)
- Reduce memory footprint of Database.insert()
2017-04-04 15:26:15 +03:00
2017-02-22 11:52:03 +03:00
v0.8.0
------
2017-02-07 17:22:04 +03:00
- Always keep datetime fields in UTC internally, and convert server timezone to UTC when parsing query results
- Support for ALIAS and MATERIALIZED fields (M1ha)
- Pagination: passing -1 as the page number now returns the last page
- Accept datetime values for date fields (Zloool)
- Support readonly mode in Database class (tswr)
2017-02-19 10:30:19 +03:00
- Added support for the Buffer table engine (emakarov)
- Added the SystemPart readonly model, which provides operations on partitions (M1ha)
- Added Model.to_dict() that converts a model instance to a dictionary (M1ha)
- Added Database.raw() to perform arbitrary queries (M1ha)
2017-02-07 17:22:04 +03:00
v0.7.1
------
- Accept '0000-00-00 00:00:00' as a datetime value (tsionyx)
- Bug fix: parse_array fails on int arrays
- Improve performance when inserting many rows
v0.7.0
------
- Support array fields
- Support enum fields
v0.6.3
------
- Python 3 support