All Versions
11
Latest Version
Avg Release Cycle
49 days
Latest Release
1341 days ago

Changelog History
Page 1

  • v1.5.0 Changes

    August 22, 2020
    • ๐Ÿ‘Œ support build insert on duplicate
    • โšก๏ธ update doc
    • ๐Ÿ‘Œ support _lockMode
    • ๐Ÿ›  Fix bug of wrongly trimed quota field
  • v1.4.0

    July 07, 2020
  • v1.3.2 Changes

    January 14, 2020

    โฌ†๏ธ bump version to 1.3.2

  • v1.3.1 Changes

    August 05, 2019

    Fix bug of _orderby&_groupby.

    in mysql manual:

    Parameter markers can be used only where data values should appear, not for SQL keywords, identifiers, and so forth.

    ๐Ÿ‘€ see also: issue mysql manual

  • v1.3.0 Changes

    July 27, 2019
    • Fix potential sql injection bug caused by _orderby, _groupby and _limit
    • ๐Ÿ— Using strings.Builder to concat sql, which makes BuildSelectnearly 10% faster
  • v1.2.1 Changes

    July 13, 2019

    ๐Ÿ‘Œ support not like

  • v1.2.0 Changes

    July 05, 2019

    โž• add support for between and not between:

        where := map[string]interface{}{
            "age not between": []int{10, 30},
            "name": "caibirdme",
            "score between": []float64{3.5, 7.2},
        }
    
  • v1.1.2 Changes

    July 05, 2019

    ๐Ÿ‘‰ make regexp non-greedy

  • v1.1.1 Changes

    May 14, 2019

    ๐Ÿ‘Œ support scan boolean type(in mysql tinyint(1))

  • v1.1.0 Changes

    April 26, 2019
    • ๐Ÿ‘Œ support replace into
    • ๐Ÿ‘Œ support insert ignore into

    Thx for @guangxuewu 's contribution