Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.

Releases: go-xorm/xorm

v0.5.6 is released

21 Sep 06:57
Compare
Choose a tag to compare

This is the latest release of 0.5. This version resolved many bugs and added Sums methods.

v0.5.1 is released

24 Mar 14:44
Compare
Choose a tag to compare
resolved #374

v0.5.0 is released

29 Feb 14:38
Compare
Choose a tag to compare
  • logging interface changed
  • some bugs fixed

v0.4.5 is released

16 Feb 09:06
Compare
Choose a tag to compare
* many bugs fixed
* extends support unlimited deep
* Delete Limit support

v0.4.4 is released

09 Sep 01:31
Compare
Choose a tag to compare

Many bug fixed and ql, tidb database expriment support.

  • ql database expriment support
  • tidb database expriment support
  • sql.NullString and etc. field support
  • select ForUpdate support
  • many bugs fixed

v0.4.3 is released

01 Apr 14:00
Compare
Choose a tag to compare
  • Json column type support
  • Oracle experiment support
  • Some bugs fixed

v0.4.2 is released

01 Apr 13:59
Compare
Choose a tag to compare
  • Transaction will auto rollback if not Rollback or Commit be called.
  • Gonic Mapper support, so when you use ID in go codes, you can get id in database column name.
  • Some bugs fixed

v0.4.1 is released

06 Nov 02:11
Compare
Choose a tag to compare
  • deleted tag support for soft delete
  • bug fixed

v0.3.2 is released

01 Apr 14:03
Compare
Choose a tag to compare

Improvements:
* Add AllCols & MustCols function
* Add TableName for custom table name

Bug Fixes:
* #46
* #51
* #53
* #89
* #86
* #92

v0.3.1

02 Jan 09:51
Compare
Choose a tag to compare
  • Features:
    • Support MSSQL DB via ODBC driver (github.com/lunny/godbc);
    • Composite Key, using multiple pk xorm tag
    • Added Row() API as alternative to Iterate() API for traversing result set, provide similar usages to sql.Rows type
    • ORM struct allowed declaration of pointer builtin type as members to allow null DB fields
    • Before and After Event processors
  • Improvements:
    • Allowed int/int32/int64/uint/uint32/uint64/string as Primary Key type
    • Performance improvement for Get()/Find()/Iterate()