Skip to content

Latest commit

 

History

History
110 lines (62 loc) · 3.74 KB

CHANGELOG.md

File metadata and controls

110 lines (62 loc) · 3.74 KB

Changelog

0.3.9 (2024-08-15)

  • add support for 128 and 256 bit integers #181
  • drop :array_join support (please use ARRAY join hint instead) #190
  • adapt to Ecto v3.12 #190
  • support naive DateTime64 #189

0.3.8 (2024-07-01)

  • add DateTime64 precision #179

0.3.7 (2024-06-15)

  • add alter_update_all/2 #172

0.3.6 (2024-05-10)

  • deprecate :array_join and support ARRAY join hint #160

0.3.5 (2024-05-01)

  • add to_inline_sql/2 which is similar to to_sql/2 but inlines the parameters into SQL #157

0.3.4 (2024-04-07)

  • support join strictness (ASOF, ANY, ANTI, SEMI) #156

0.3.3 (2024-04-04)

  • allow Map(K,V) params #155

0.3.2 (2023-12-19)

  • use DateTime64 for usec timestamps #142

0.3.1 (2023-11-11)

  • raise on validate: true in CHECK constraints #124
  • add support for unsafe hints #102
  • lookup types for aliased Ecto.Schema fields #137

0.3.0 (2023-09-13)

  • ensure all columns are for the same table in ecto.ch.schema mix task #118
  • switch from CREATE INDEX to ALTER TABLE ... ADD INDEX syntax for indexes #120
  • raise on CREATE INDEX CONCURRENTLY #121
  • switch from DROP INDEX to ALTER TABLE ... DROP INDEX syntax for indexes #122
  • add support for structured :options in migrations #116
  • add :default_table_options option #123

0.2.2 (2023-08-29)

  • use our http client for structure_load #111

0.2.1 (2023-08-28)

  • added constraint support in migrations #108

0.2.0 (2023-07-28)

  • refactor dumpers and loaders #92 -- this is the reason for minor version bumping
  • improve ecto.ch.schema mix task #83

0.1.11 (2023-06-12)

  • add support for :array_join and :left_array_join types #76
  • add preliminary support for inserts via :input #79

0.1.10 (2023-06-01)

  • add support for type(..., :any) #78

0.1.9 (2023-05-24)

  • update :ch

0.1.8 (2023-05-24)

  • fix string types in schemaless inserts #75

0.1.7 (2023-05-24)

  • add insert_stream #74

0.1.6 (2023-05-23)

  • make types more strict #69

0.1.5 (2023-05-23)

  • require :ch to be ~> 0.1.10 #71

0.1.4 (2023-05-05)

  • improve :array type handling #67

0.1.3 (2023-05-01)

  • fix in params #64

0.1.2 (2023-04-28)

  • add mix ecto.load support #60

0.1.1 (2023-04-26)

  • add :default_table_engine option #58
  • add ecto.ch.schema mix task #59