From 41e7edba196417f374be0eae8452a8caab2e9d3f Mon Sep 17 00:00:00 2001 From: Burak Sezer Date: Thu, 12 Dec 2024 15:24:34 +0300 Subject: [PATCH] [TT-13608] Issues with custom scalar in query variable (#6766) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### **User description**
TT-13608
Summary Issues with custom scalar in query variable
Type Bug Bug
Status In Code Review
Points N/A
Labels '24Bugsmash, jira_escalated
--- This PR updates graphql-go-tools dependency. Related PR: https://github.com/TykTechnologies/graphql-go-tools/pull/434 ___ ### **PR Type** Bug fix, Dependencies ___ ### **Description** - Updated the `graphql-go-tools` dependency in `go.mod` to a newer version (`v1.6.2-0.20241212110213-7724a3b64bb2`). - Updated corresponding hash values in `go.sum` to reflect the new dependency version. - This update addresses issues with custom scalar handling in query variables. ___ ### **Changes walkthrough** 📝
Relevant files
Dependencies
go.mod
Update `graphql-go-tools` dependency version in `go.mod`.

go.mod
  • Updated the graphql-go-tools dependency to a newer version.
  • Changed the version from v1.6.2-0.20240926103032-6eca9f4b5e30 to
    v1.6.2-0.20241212110213-7724a3b64bb2.
  • +1/-1     
    go.sum
    Update dependency hash values in `go.sum`.                             

    go.sum
  • Updated hash values for the graphql-go-tools dependency to match the
    new version.
  • Replaced old hash values with those corresponding to the updated
    version.
  • +2/-2     
    ___ > 💡 **PR-Agent usage**: Comment `/help "your question"` on any pull request to receive relevant information (cherry picked from commit f48eb98026a304ac0f7ae79aededee6cb707e846) --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 3516c4ccdf4..17a71a8a13f 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,7 @@ require ( github.com/TykTechnologies/gojsonschema v0.0.0-20170222154038-dcb3e4bb7990 github.com/TykTechnologies/gorpc v0.0.0-20241016124253-606484472fbb github.com/TykTechnologies/goverify v0.0.0-20220808203004-1486f89e7708 - github.com/TykTechnologies/graphql-go-tools v1.6.2-0.20240926103032-6eca9f4b5e30 + github.com/TykTechnologies/graphql-go-tools v1.6.2-0.20241212110213-7724a3b64bb2 github.com/TykTechnologies/graphql-translator v0.0.0-20240319092712-4ba87e4c06ff github.com/TykTechnologies/leakybucket v0.0.0-20170301023702-71692c943e3c github.com/TykTechnologies/murmur3 v0.0.0-20230310161213-aad17efd5632 diff --git a/go.sum b/go.sum index 2c8d43f7e4d..570a5e5a372 100644 --- a/go.sum +++ b/go.sum @@ -63,8 +63,8 @@ github.com/TykTechnologies/gorpc v0.0.0-20241016124253-606484472fbb h1:4ZQmRdKvO github.com/TykTechnologies/gorpc v0.0.0-20241016124253-606484472fbb/go.mod h1:v6v7Mlj08+EmEcXOfpuTxGt2qYU9yhqqtv4QF9Wf50E= github.com/TykTechnologies/goverify v0.0.0-20220808203004-1486f89e7708 h1:cmXjlMzcexhc/Cg+QB/c2CPUVs1ux9xn6162qaf/LC4= github.com/TykTechnologies/goverify v0.0.0-20220808203004-1486f89e7708/go.mod h1:mkS8jKcz8otdfEXhJs1QQ/DKoIY1NFFsRPKS0RwQENI= -github.com/TykTechnologies/graphql-go-tools v1.6.2-0.20240926103032-6eca9f4b5e30 h1:SxmD3nMD7AyhJGcOBG4QHwslMFvwLM0e3jH1enmWxZk= -github.com/TykTechnologies/graphql-go-tools v1.6.2-0.20240926103032-6eca9f4b5e30/go.mod h1:NE9MYGcB5eWKW0OefGOjZZEPv6S20AQ0OTsO+npGR8I= +github.com/TykTechnologies/graphql-go-tools v1.6.2-0.20241212110213-7724a3b64bb2 h1:/B7Dmb35zO4392FACTKyVDH7XTQ0xAb80/M1GMk97Is= +github.com/TykTechnologies/graphql-go-tools v1.6.2-0.20241212110213-7724a3b64bb2/go.mod h1:NE9MYGcB5eWKW0OefGOjZZEPv6S20AQ0OTsO+npGR8I= github.com/TykTechnologies/graphql-go-tools/v2 v2.0.0-20240509085643-e95cdc317e1d h1:ntmDECMD7475TK/cxshJ1b8KJvUM1wppohd0qZjqUqI= github.com/TykTechnologies/graphql-go-tools/v2 v2.0.0-20240509085643-e95cdc317e1d/go.mod h1:eOt2cxB9sZ80mz4q1UKzzk9CE4QZaS6jP20X2LwPwy8= github.com/TykTechnologies/graphql-translator v0.0.0-20240319092712-4ba87e4c06ff h1:kFA240S1Y4snsEL4Ng4Ch1Ib2N04A15Y+9KYumK6uCg=