Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.41 KB

CHANGELOG.md

File metadata and controls

33 lines (25 loc) · 1.41 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 aims to adhere to Semantic Versioning.

[Unreleased]

Check https://github.com/alex-dukhno/database/commits/master for undocumented changes.

Changed

Added

Fixed

[0.1.2] - 2020-07-22

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