Skip to content

Releases: microsoft/gocosmos

v1.1.1

09 Feb 06:26
Compare
Choose a tag to compare

Fixed/Improvement

  • Improvement: implement fmt.Stringer
  • Improvement: Driver implements interface driver.DriverContext
  • Improvement: Conn implements interface driver.Pinger
  • Improvement: StmtCreateCollection/StmtAlterCollection/StmtDropCollection implements interface driver.StmtExecContext
  • Improvement: StmtListCollections implements interface driver.StmtQueryContext
  • Improvement: StmtCreateDatabase/StmtAlterDatabase/StmtDropDatabase implements interface driver.StmtExecContext
  • Improvement: StmtListDatabases implements interface driver.StmtQueryContext
  • Improvement: StmtInsert/StmtDelete/StmtUpdate implements interface driver.StmtExecContext
  • Improvement: StmtSelect implements interface driver.StmtQueryContext

v1.1.0

29 Jan 11:49
Compare
Choose a tag to compare

Added/Refactoring

  • Refactored DELETE statement, appending PK values at the end of parameter list is no longer needed.
  • Refactored UPDATE statement, appending PK values at the end of parameter list is no longer needed.
  • Feature: INSERT/UPSERT statement accepts WITH PK clause. Appending PK values at the end of parameter list is no longer needed.

Deprecated

  • Deprecated: WITH singlePK/SINGLE_PK is now deprecated for INSERT/UPSERT, DELETE and UPDATE statements.

v1.0.2

20 Dec 09:02
Compare
Choose a tag to compare

Security

  • Security: fix CodeQL code scanning alerts

v1.0.1

19 Dec 10:49
Compare
Choose a tag to compare

Fixed/Improvement

  • Fix: server may return status 304 without body

v1.0.0

19 Dec 02:14
Compare
Choose a tag to compare

Changed

  • BREAKING: migrated from btnguyen2k/gocosmos, package name changed.

Added/Refactoring

  • Added feature: better error report when calling REST APIs

Fixed/Improvement

  • Fixed: no content is returned when the DELETE operation is successful
  • Fix golint