All Versions
11
Latest Version
Avg Release Cycle
49 days
Latest Release
1608 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