Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adyen Go Library v14.0.0 #60

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module golang-online-payments
go 1.19

require (
github.com/adyen/adyen-go-api-library/v11 v11.0.0
github.com/adyen/adyen-go-api-library/v14 v14.0.0
github.com/gin-gonic/contrib v0.0.0-20191209060500-d6e26eeaa607
github.com/gin-gonic/gin v1.10.0
github.com/google/uuid v1.6.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -601,8 +601,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk=
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
github.com/adyen/adyen-go-api-library/v11 v11.0.0 h1:8WlQERsiMilsl46ZliuCsr6QAdVK//hmPmSVlVK0pF8=
github.com/adyen/adyen-go-api-library/v11 v11.0.0/go.mod h1:pH6M7VRnlkRKPb+mw6oPH+B75qdca6sa4LlaNcbNYvc=
github.com/adyen/adyen-go-api-library/v14 v14.0.0 h1:OEHF4DyVuS/HuXQ2lmKb5ltXqfGpvn4eN2Hk42r+fV8=
github.com/adyen/adyen-go-api-library/v14 v14.0.0/go.mod h1:2Ygu0h/gR/xhi+FyhhoXxRKEH7G6OVgPWwlxu+dLAus=
github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY=
github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk=
github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw=
Expand Down
8 changes: 4 additions & 4 deletions src/web/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ package web
import (
"context"
"fmt"
"github.com/adyen/adyen-go-api-library/v11/src/webhook"
"github.com/adyen/adyen-go-api-library/v14/src/webhook"
"io/ioutil"
"log"
"net/http"
"net/url"

"github.com/adyen/adyen-go-api-library/v11/src/checkout"
"github.com/adyen/adyen-go-api-library/v11/src/common"
"github.com/adyen/adyen-go-api-library/v11/src/hmacvalidator"
"github.com/adyen/adyen-go-api-library/v14/src/checkout"
"github.com/adyen/adyen-go-api-library/v14/src/common"
"github.com/adyen/adyen-go-api-library/v14/src/hmacvalidator"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
)
Expand Down
4 changes: 2 additions & 2 deletions src/web/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"log"
"os"

"github.com/adyen/adyen-go-api-library/v11/src/adyen"
"github.com/adyen/adyen-go-api-library/v11/src/common"
"github.com/adyen/adyen-go-api-library/v14/src/adyen"
"github.com/adyen/adyen-go-api-library/v14/src/common"
"github.com/gin-gonic/contrib/static"
"github.com/gin-gonic/gin"
"github.com/joho/godotenv"
Expand Down