Skip to content

Releases: vadv/gopher-lua-libs

v0.5.0

14 Sep 06:41
8934440
Compare
Choose a tag to compare
  • Add more filepath functions. #62
  • Bumping to newer go (at least 1.16) and using the embed technique instead of needing textFileToGoConst #63
  • fix(time): allow time.sleep to sleep for milliseconds #61

Dependecy update

30 Dec 20:16
32959d9
Compare
Choose a tag to compare
Bump github.com/aws/aws-sdk-go from 1.32.1 to 1.33.0 (#56)

Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.32.1 to 1.33.0.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Changelog](https://github.com/aws/aws-sdk-go/blob/v1.33.0/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.32.1...v1.33.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v0.4.0 - add loglevel

18 Nov 18:17
09c76ee
Compare
Choose a tag to compare
  • Add loglevel functionality atop log. #54

v0.3.5 - more assertions

17 Nov 08:57
7f3dbcf
Compare
Choose a tag to compare
  • Add Nil, NotNil, Greater, GreaterOrEqual, Less, LessOrEqual and ..f variants. #55

v0.3.4 - testify-like assert/require modules

16 Nov 20:46
bcf14a6
Compare
Choose a tag to compare
  • Add assert and require features like testify has. #53

v0.3.3 - suite.Run returns count of tests

12 Nov 00:35
3dec4ec
Compare
Choose a tag to compare
  • Make suite.Run return the number of tests found and executed #52

v0.3.2 - mTLS, test Suite

10 Nov 18:18
6afdfc8
Compare
Choose a tag to compare
  • Added mTLS support for http client. #49
  • Add suite for testing - inspired by testify suite.Suite #51
  • Show the pattern of closing the state #50

v0.3.1

02 Nov 08:16
d4e40cb
Compare
Choose a tag to compare

What's Changed

  • Fix json README usage by @iyear in #46
  • JSON: Support empty tables being objects; not arrays. by @scr-oath in #45
  • Fix the case where reading a line has spaces in it by @scr-oath in #43
  • README: go install and directly copyable by @waschik in #48
  • strings: register type in package and not globally by @waschik in #47

New Contributors

Full Changelog: v0.3.0...v0.3.1

v0.3.0 - new argparse, plugin args+goroutine, fix log.set_output

v0.2.0 - argparse, tcp honor lua style read("*l"), etc

24 Jul 19:57
17061ce
Compare
Choose a tag to compare
  • #35 - Use the golang style tests for all packages
  • #38 - Added argparse from https://github.com/mpeterv/argparse
  • #39 - Use the io wrappers for tcp as well - so other lua signatures such as read("*a") and read("*l) are possible.