Skip to content

Releases: n-r-w/squirrel

v1.4.2

07 May 12:44
4422d1a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.4.1...v1.4.2

v1.4.1

18 Apr 09:53
8ba498c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.4.0...v1.4.1

Equal, NotEqual, Greater, GreaterOrEqual, Less, LessOrEqual functions

18 Apr 07:02
f0e8aca
Compare
Choose a tag to compare

What's Changed

Equal, NotEqual, Greater, GreaterOrEqual, Less, LessOrEqual functions

Full Changelog: v1.3.2...v1.4.0

v1.3.2

17 Apr 18:42
0326fc5
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.1...v1.3.2

v1.3.1

17 Apr 17:06
9e9a48f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.0...v1.3.1

v1.3.0

30 Mar 11:32
d50e331
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.2.1...v1.3.0

Select.Alias

13 Mar 10:47
2b8f553
Compare
Choose a tag to compare
Merge pull request #16 from n-r-w/alias_order_by

Select.Alias.OrderBy

Paginator getters

12 Mar 14:07
a031428
Compare
Choose a tag to compare
Merge pull request #14 from n-r-w/paganator_getters

Paginator getters

Case auto cast, OrderByCond, Search, PaginateByID, PaginateByPage, Paginate

06 Mar 12:06
eb536c5
Compare
Choose a tag to compare

New functions: OrderByCond, Search, PaginateByID, PaginateByPage, Paginate
Case auto cast

v1.0.6

03 Mar 10:40
744d6f5
Compare
Choose a tag to compare
  • Range function: sq.Range("id", 1, 10) -> id BETWEEN 1 AND 10. sq.Range("id", 1, nil) -> id >= 1. sq.Range("id", nil, 10) -> id <= 10
  • EqNotEmpty function: ignores empty and zero values in Eq map. Useful for filtering. EqNotEmpty{"id1": 1, "name": nil, id2: 0, "desc": ""} -> id1 = 1