Skip to content

Releases: masibw/goone

v1.4.1

31 Jul 02:04
9992242
Compare
Choose a tag to compare

Changelog

v1.4.0

14 Jan 14:29
bc0d5f0
Compare
Choose a tag to compare

Changelog

  • Seach "goone.yml" up to the root from the file directory which analyzing currently.
    not the working directory(command executed)

v1.3.1

12 Jan 06:49
56ba1ed
Compare
Choose a tag to compare

Resolved the issue where another package func could not be detected if the db type was not imported in the caller's file.

Change name from go_one to goone

11 Jan 02:49
75f7912
Compare
Choose a tag to compare

Change name from go_one to goone completely.

Notice: Change some paths

  • to get goone from go get github.com/masibw/goone/cmd/go_one to go get github.com/masibw/goone/cmd/goone
  • to run from
go vet -vettool=`which go_one` -go_one.configPath="$PWD/go_one.yml" ./...

to

go vet -vettool=`which goone` -goone.configPath="$PWD/goone.yml" ./...

v1.1

19 Nov 06:21
75f7912
Compare
Choose a tag to compare

Users can add types to detect query that called in loop.

first release

04 Sep 14:38
75f7912
Compare
Choose a tag to compare

This is first release.

Feature

FInd SQL query in for loop.

  • call same package function
  • support database/sql, sqlx , gorp , gorm

Fix download issue

10 Jan 16:16
c9e150f
Compare
Choose a tag to compare
Merge pull request #40 from masibw/develop

master deploy 1/10

Support another package call

10 Jan 16:14
c9e150f
Compare
Choose a tag to compare

This release contains these features.

  • Support another package call which has sql query
  • Support types which has interface

Fix false positive

10 Jan 03:53
1d22ead
Compare
Choose a tag to compare

Fix this issue.

  • If the function that is being called is not in the same file, even if the function itself is not calling sql, if there is a sql in the file, it is considered to be N+1.