Skip to content
This repository has been archived by the owner on Sep 28, 2021. It is now read-only.

Releases: alex-dukhno/isomorphicdb

0.1.4

30 Sep 17:17
1ebe9de
Compare
Choose a tag to compare

Added

  • dynamic expression evaluation in UPDATE queries (#258) by @AndrewBregger
  • support approximate types constraints (#316)
  • implicit type casting (#312)
  • support for extended query PostgreSQL Wire Protocol (#274) by @silathdiir

0.1.3

29 Aug 09:28
3108a03
Compare
Choose a tag to compare

Added:

  • database can run in persistent mode, your data will survive restart #247
  • supported DROP SCHEMA ... CASCADE #253
  • docker container runs in persistent mode by default #257

0.1.2

22 Jul 16:29
8fc8b55
Compare
Choose a tag to compare

Added

  • support of simple query for PostgreSQL wire protocol
  • support of simplest insert, update, delete and select queries
  • handling errors in column names for update and select queries (#74, #100) by @silathdiir
  • start publishing latest docker image using GitHub package
  • added a documentation how to setup dockerized database (#131)
  • support for SSL connection with a client (#169) by @silathdiir
  • developer hint when type constraint validation fails (#174) by @Tolledo
  • support of serial (smallserial, serial and bigserial) SQL types (#135) by @suhaibaffan
  • support of boolean SQL type (#143) by @lpiepiora
  • validation when user inserts more values than a table has columns (#137) by @AndrewBregger
  • handling insert queries with specified column names (#124) by @silathdiir
  • support of char(n) and varchar(n) SQL types (#97)
  • support of integer (smallint, integer and bigint) SQL types (#95)
  • functional tests migrated to run with python (#117) by @Aleks0010V