diff --git a/integrations/bunguard/go.mod b/integrations/bunguard/go.mod index 0b41eb3..050afb7 100644 --- a/integrations/bunguard/go.mod +++ b/integrations/bunguard/go.mod @@ -3,7 +3,7 @@ module github.com/KARTIKrocks/sqlguard/integrations/bunguard go 1.27 require ( - github.com/KARTIKrocks/sqlguard v0.1.1 + github.com/KARTIKrocks/sqlguard v0.2.0 github.com/mattn/go-sqlite3 v1.14.52 github.com/uptrace/bun v1.2.18 github.com/uptrace/bun/dialect/sqlitedialect v1.2.18 diff --git a/integrations/bunguard/go.sum b/integrations/bunguard/go.sum index cfe1355..a11df0f 100644 --- a/integrations/bunguard/go.sum +++ b/integrations/bunguard/go.sum @@ -1,5 +1,5 @@ -github.com/KARTIKrocks/sqlguard v0.1.1 h1:qNdb0yztVcpJiBu0NgikMPMAYTebcutwtX3DGxaoBiI= -github.com/KARTIKrocks/sqlguard v0.1.1/go.mod h1:FDwahcB1Sv2s9ejA+bMfIbS/w/YKBrE2/POttvchwhg= +github.com/KARTIKrocks/sqlguard v0.2.0 h1:mvHV/nMoDKSpqiWZIJ98KBpKa43ewtvFKJNFjECpbUA= +github.com/KARTIKrocks/sqlguard v0.2.0/go.mod h1:iWN5p4uImNtZedOfD6jRw/QnSlS5wBuWy+0bCyB/9M8= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= diff --git a/integrations/entguard/go.mod b/integrations/entguard/go.mod index 071e2ae..3b250d7 100644 --- a/integrations/entguard/go.mod +++ b/integrations/entguard/go.mod @@ -4,7 +4,7 @@ go 1.27 require ( entgo.io/ent v0.14.6 - github.com/KARTIKrocks/sqlguard v0.1.1 + github.com/KARTIKrocks/sqlguard v0.2.0 github.com/mattn/go-sqlite3 v1.14.52 ) diff --git a/integrations/entguard/go.sum b/integrations/entguard/go.sum index db7cff3..8c87963 100644 --- a/integrations/entguard/go.sum +++ b/integrations/entguard/go.sum @@ -2,8 +2,8 @@ entgo.io/ent v0.14.6 h1:/f2696BpwuWAEEG6PVGWflg6+Inrpq4pRWuNlWz/Skk= entgo.io/ent v0.14.6/go.mod h1:z46QBUdGC+BATwsedbDuREfSS0oSCV+csdEYlL4p73s= github.com/DATA-DOG/go-sqlmock v1.5.0 h1:Shsta01QNfFxHCfpW6YH2STWB0MudeXXEWMr20OEh60= github.com/DATA-DOG/go-sqlmock v1.5.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= -github.com/KARTIKrocks/sqlguard v0.1.1 h1:qNdb0yztVcpJiBu0NgikMPMAYTebcutwtX3DGxaoBiI= -github.com/KARTIKrocks/sqlguard v0.1.1/go.mod h1:FDwahcB1Sv2s9ejA+bMfIbS/w/YKBrE2/POttvchwhg= +github.com/KARTIKrocks/sqlguard v0.2.0 h1:mvHV/nMoDKSpqiWZIJ98KBpKa43ewtvFKJNFjECpbUA= +github.com/KARTIKrocks/sqlguard v0.2.0/go.mod h1:iWN5p4uImNtZedOfD6jRw/QnSlS5wBuWy+0bCyB/9M8= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= diff --git a/integrations/gormguard/go.mod b/integrations/gormguard/go.mod index 9b2a211..a54efb7 100644 --- a/integrations/gormguard/go.mod +++ b/integrations/gormguard/go.mod @@ -3,7 +3,7 @@ module github.com/KARTIKrocks/sqlguard/integrations/gormguard go 1.27 require ( - github.com/KARTIKrocks/sqlguard v0.1.1 + github.com/KARTIKrocks/sqlguard v0.2.0 gorm.io/driver/sqlite v1.6.0 gorm.io/gorm v1.31.2 ) diff --git a/integrations/gormguard/go.sum b/integrations/gormguard/go.sum index 05be6e8..b1f2982 100644 --- a/integrations/gormguard/go.sum +++ b/integrations/gormguard/go.sum @@ -1,5 +1,5 @@ -github.com/KARTIKrocks/sqlguard v0.1.1 h1:qNdb0yztVcpJiBu0NgikMPMAYTebcutwtX3DGxaoBiI= -github.com/KARTIKrocks/sqlguard v0.1.1/go.mod h1:FDwahcB1Sv2s9ejA+bMfIbS/w/YKBrE2/POttvchwhg= +github.com/KARTIKrocks/sqlguard v0.2.0 h1:mvHV/nMoDKSpqiWZIJ98KBpKa43ewtvFKJNFjECpbUA= +github.com/KARTIKrocks/sqlguard v0.2.0/go.mod h1:iWN5p4uImNtZedOfD6jRw/QnSlS5wBuWy+0bCyB/9M8= github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= diff --git a/integrations/pgxguard/go.mod b/integrations/pgxguard/go.mod index c8dd480..23cc617 100644 --- a/integrations/pgxguard/go.mod +++ b/integrations/pgxguard/go.mod @@ -3,7 +3,7 @@ module github.com/KARTIKrocks/sqlguard/integrations/pgxguard go 1.27 require ( - github.com/KARTIKrocks/sqlguard v0.1.1 + github.com/KARTIKrocks/sqlguard v0.2.0 github.com/jackc/pgx/v5 v5.11.0 ) @@ -11,7 +11,6 @@ require ( github.com/jackc/pgpassfile v1.0.0 // indirect github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect github.com/jackc/puddle/v2 v2.2.2 // indirect - github.com/mattn/go-sqlite3 v1.14.52 // indirect golang.org/x/sync v0.23.0 // indirect golang.org/x/text v0.42.0 // indirect ) diff --git a/integrations/pgxguard/go.sum b/integrations/pgxguard/go.sum index 9003b0a..1c1d9a1 100644 --- a/integrations/pgxguard/go.sum +++ b/integrations/pgxguard/go.sum @@ -1,5 +1,5 @@ -github.com/KARTIKrocks/sqlguard v0.1.1 h1:qNdb0yztVcpJiBu0NgikMPMAYTebcutwtX3DGxaoBiI= -github.com/KARTIKrocks/sqlguard v0.1.1/go.mod h1:FDwahcB1Sv2s9ejA+bMfIbS/w/YKBrE2/POttvchwhg= +github.com/KARTIKrocks/sqlguard v0.2.0 h1:mvHV/nMoDKSpqiWZIJ98KBpKa43ewtvFKJNFjECpbUA= +github.com/KARTIKrocks/sqlguard v0.2.0/go.mod h1:iWN5p4uImNtZedOfD6jRw/QnSlS5wBuWy+0bCyB/9M8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/integrations/sqlxguard/go.mod b/integrations/sqlxguard/go.mod index d7967c0..fb9e5bf 100644 --- a/integrations/sqlxguard/go.mod +++ b/integrations/sqlxguard/go.mod @@ -3,7 +3,7 @@ module github.com/KARTIKrocks/sqlguard/integrations/sqlxguard go 1.27 require ( - github.com/KARTIKrocks/sqlguard v0.1.1 + github.com/KARTIKrocks/sqlguard v0.2.0 github.com/jmoiron/sqlx v1.4.0 github.com/mattn/go-sqlite3 v1.14.52 ) diff --git a/integrations/sqlxguard/go.sum b/integrations/sqlxguard/go.sum index abb5c63..afdef59 100644 --- a/integrations/sqlxguard/go.sum +++ b/integrations/sqlxguard/go.sum @@ -1,8 +1,8 @@ filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4= filippo.io/edwards25519 v1.2.0 h1:crnVqOiS4jqYleHd9vaKZ+HKtHfllngJIiOpNpoJsjo= filippo.io/edwards25519 v1.2.0/go.mod h1:xzAOLCNug/yB62zG1bQ8uziwrIqIuxhctzJT18Q77mc= -github.com/KARTIKrocks/sqlguard v0.1.1 h1:qNdb0yztVcpJiBu0NgikMPMAYTebcutwtX3DGxaoBiI= -github.com/KARTIKrocks/sqlguard v0.1.1/go.mod h1:FDwahcB1Sv2s9ejA+bMfIbS/w/YKBrE2/POttvchwhg= +github.com/KARTIKrocks/sqlguard v0.2.0 h1:mvHV/nMoDKSpqiWZIJ98KBpKa43ewtvFKJNFjECpbUA= +github.com/KARTIKrocks/sqlguard v0.2.0/go.mod h1:iWN5p4uImNtZedOfD6jRw/QnSlS5wBuWy+0bCyB/9M8= github.com/go-sql-driver/mysql v1.8.1/go.mod h1:wEBSXgmK//2ZFJyE+qWnIsVGmvmEKlqwuVSjsCm7DZg= github.com/go-sql-driver/mysql v1.10.1 h1:arlSnNLq6a5yxGxV7qg9lF4j0C+KwD6NbQyKr9QL6ME= github.com/go-sql-driver/mysql v1.10.1/go.mod h1:M+cqaI7+xxXGG9swrdeUIoPG3Y3KCkF0pZej+SK+nWk= diff --git a/integrations/xormguard/go.mod b/integrations/xormguard/go.mod index 3e7b4a4..9ce1f1d 100644 --- a/integrations/xormguard/go.mod +++ b/integrations/xormguard/go.mod @@ -3,7 +3,7 @@ module github.com/KARTIKrocks/sqlguard/integrations/xormguard go 1.27 require ( - github.com/KARTIKrocks/sqlguard v0.1.1 + github.com/KARTIKrocks/sqlguard v0.2.0 github.com/mattn/go-sqlite3 v1.14.52 xorm.io/xorm v1.4.1 ) @@ -17,7 +17,6 @@ require ( github.com/syndtr/goleveldb v1.0.0 // indirect golang.org/x/net v0.59.0 // indirect golang.org/x/sys v0.48.0 // indirect - golang.org/x/tools v0.50.0 // indirect golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect xorm.io/builder v0.3.13 // indirect ) diff --git a/integrations/xormguard/go.sum b/integrations/xormguard/go.sum index 63fb71a..08092cf 100644 --- a/integrations/xormguard/go.sum +++ b/integrations/xormguard/go.sum @@ -2,8 +2,8 @@ filippo.io/edwards25519 v1.2.0 h1:crnVqOiS4jqYleHd9vaKZ+HKtHfllngJIiOpNpoJsjo= filippo.io/edwards25519 v1.2.0/go.mod h1:xzAOLCNug/yB62zG1bQ8uziwrIqIuxhctzJT18Q77mc= gitea.com/xorm/sqlfiddle v0.0.0-20180821085327-62ce714f951a h1:lSA0F4e9A2NcQSqGqTOXqu2aRi/XEQxDCBwM8yJtE6s= gitea.com/xorm/sqlfiddle v0.0.0-20180821085327-62ce714f951a/go.mod h1:EXuID2Zs0pAQhH8yz+DNjUbjppKQzKFAn28TMYPB6IU= -github.com/KARTIKrocks/sqlguard v0.1.1 h1:qNdb0yztVcpJiBu0NgikMPMAYTebcutwtX3DGxaoBiI= -github.com/KARTIKrocks/sqlguard v0.1.1/go.mod h1:FDwahcB1Sv2s9ejA+bMfIbS/w/YKBrE2/POttvchwhg= +github.com/KARTIKrocks/sqlguard v0.2.0 h1:mvHV/nMoDKSpqiWZIJ98KBpKa43ewtvFKJNFjECpbUA= +github.com/KARTIKrocks/sqlguard v0.2.0/go.mod h1:iWN5p4uImNtZedOfD6jRw/QnSlS5wBuWy+0bCyB/9M8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/parsers/mysqlparser/go.mod b/parsers/mysqlparser/go.mod index 0e0dcba..5f03712 100644 --- a/parsers/mysqlparser/go.mod +++ b/parsers/mysqlparser/go.mod @@ -3,6 +3,6 @@ module github.com/KARTIKrocks/sqlguard/parsers/mysqlparser go 1.27 require ( - github.com/KARTIKrocks/sqlguard v0.1.1 + github.com/KARTIKrocks/sqlguard v0.2.0 github.com/xwb1989/sqlparser v0.0.0-20180606152119-120387863bf2 ) diff --git a/parsers/mysqlparser/go.sum b/parsers/mysqlparser/go.sum index 986b74c..1efcc44 100644 --- a/parsers/mysqlparser/go.sum +++ b/parsers/mysqlparser/go.sum @@ -1,4 +1,4 @@ -github.com/KARTIKrocks/sqlguard v0.1.1 h1:qNdb0yztVcpJiBu0NgikMPMAYTebcutwtX3DGxaoBiI= -github.com/KARTIKrocks/sqlguard v0.1.1/go.mod h1:FDwahcB1Sv2s9ejA+bMfIbS/w/YKBrE2/POttvchwhg= +github.com/KARTIKrocks/sqlguard v0.2.0 h1:mvHV/nMoDKSpqiWZIJ98KBpKa43ewtvFKJNFjECpbUA= +github.com/KARTIKrocks/sqlguard v0.2.0/go.mod h1:iWN5p4uImNtZedOfD6jRw/QnSlS5wBuWy+0bCyB/9M8= github.com/xwb1989/sqlparser v0.0.0-20180606152119-120387863bf2 h1:zzrxE1FKn5ryBNl9eKOeqQ58Y/Qpo3Q9QNxKHX5uzzQ= github.com/xwb1989/sqlparser v0.0.0-20180606152119-120387863bf2/go.mod h1:hzfGeIUDq/j97IG+FhNqkowIyEcD88LrW6fyU3K3WqY= diff --git a/parsers/pgparser/go.mod b/parsers/pgparser/go.mod index 2307b43..fa55ec4 100644 --- a/parsers/pgparser/go.mod +++ b/parsers/pgparser/go.mod @@ -3,7 +3,7 @@ module github.com/KARTIKrocks/sqlguard/parsers/pgparser go 1.27 require ( - github.com/KARTIKrocks/sqlguard v0.1.1 + github.com/KARTIKrocks/sqlguard v0.2.0 github.com/auxten/postgresql-parser v1.0.1 ) diff --git a/parsers/pgparser/go.sum b/parsers/pgparser/go.sum index 2d8045e..401b6ee 100644 --- a/parsers/pgparser/go.sum +++ b/parsers/pgparser/go.sum @@ -6,8 +6,8 @@ github.com/CloudyKit/fastprinter v0.0.0-20170127035650-74b38d55f37a/go.mod h1:EF github.com/CloudyKit/jet v2.1.3-0.20180809161101-62edd43e4f88+incompatible/go.mod h1:HPYO+50pSWkPoj9Q/eq0aRGByCL6ScRlUmiEX5Zgm+w= github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKzY= github.com/Joker/jade v1.0.1-0.20190614124447-d475f43051e7/go.mod h1:6E6s8o2AE4KhCrqr6GRJjdC/gNfTdxkIXvuGZZda2VM= -github.com/KARTIKrocks/sqlguard v0.1.1 h1:qNdb0yztVcpJiBu0NgikMPMAYTebcutwtX3DGxaoBiI= -github.com/KARTIKrocks/sqlguard v0.1.1/go.mod h1:FDwahcB1Sv2s9ejA+bMfIbS/w/YKBrE2/POttvchwhg= +github.com/KARTIKrocks/sqlguard v0.2.0 h1:mvHV/nMoDKSpqiWZIJ98KBpKa43ewtvFKJNFjECpbUA= +github.com/KARTIKrocks/sqlguard v0.2.0/go.mod h1:iWN5p4uImNtZedOfD6jRw/QnSlS5wBuWy+0bCyB/9M8= github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398/go.mod h1:a1uqRtAwp2Xwc6WNPJEufxJ7fx3npB4UV/JOLmbu5I0= github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=