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

fix(deps): update module github.com/cheshir/go-mq to v2 #57

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
13 changes: 4 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.21

require (
github.com/Khan/genqlient v0.7.0
github.com/cheshir/go-mq v1.0.2
github.com/cheshir/go-mq/v2 v2.0.1
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/joho/godotenv v1.5.1
github.com/matryer/try v0.0.0-20161228173917-9ac251b645a2
Expand All @@ -13,11 +13,10 @@ require (

require (
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/NeowayLabs/wabbit v0.0.0-20200409220312-12e68ab5b0c6 // indirect
github.com/NeowayLabs/wabbit v0.0.0-20210927194032-73ad61d1620e // indirect
github.com/containerd/containerd v1.7.13 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-ini/ini v1.67.0 // indirect
github.com/goccy/go-json v0.10.3 // indirect
Expand All @@ -28,19 +27,17 @@ require (
github.com/minio/md5-simd v1.1.2 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/patternmatcher v0.6.0 // indirect
github.com/moby/sys/sequential v0.5.0 // indirect
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
github.com/pborman/uuid v1.2.0 // indirect
github.com/pborman/uuid v1.2.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rabbitmq/amqp091-go v1.7.0 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/rs/xid v1.5.0 // indirect
github.com/streadway/amqp v0.0.0-20200108173154-1c71cc93ed71 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/vektah/gqlparser/v2 v2.5.11 // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)

replace (
Expand All @@ -51,9 +48,7 @@ replace (
require (
github.com/CycloneDX/cyclonedx-go v0.9.0
github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 // indirect
github.com/fsouza/go-dockerclient v1.7.3 // indirect
github.com/minio/minio-go/v7 v7.0.75
github.com/tiago4orion/conjure v0.0.0-20150908101743-93cb30b9d218 // indirect
golang.org/x/net v0.26.0 // indirect
gopkg.in/yaml.v3 v3.0.1
)
Expand Down
1,296 changes: 1,266 additions & 30 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion internal/handler/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"

"github.com/cheshir/go-mq"
"github.com/cheshir/go-mq/v2"
"github.com/matryer/try"
"github.com/uselagoon/lagoon/services/insights-handler/internal/lagoonclient"
"github.com/uselagoon/lagoon/services/insights-handler/internal/lagoonclient/jwt"
Expand Down
2 changes: 1 addition & 1 deletion internal/handler/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"testing"

cdx "github.com/CycloneDX/cyclonedx-go"
"github.com/cheshir/go-mq"
"github.com/cheshir/go-mq/v2"
"github.com/joho/godotenv"
"github.com/stretchr/testify/mock"
"github.com/uselagoon/lagoon/services/insights-handler/internal/lagoonclient"
Expand Down
2 changes: 1 addition & 1 deletion internal/handler/messaging.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package handler
import (
"encoding/json"
"fmt"
"github.com/cheshir/go-mq"
"github.com/cheshir/go-mq/v2"
"log/slog"
"sort"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion internal/handler/processing.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"encoding/json"
"github.com/Khan/genqlient/graphql"
"github.com/cheshir/go-mq"
"github.com/cheshir/go-mq/v2"
"github.com/uselagoon/lagoon/services/insights-handler/internal/lagoonclient"
"log/slog"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"flag"
"fmt"
"github.com/cheshir/go-mq"
"github.com/cheshir/go-mq/v2"
"github.com/uselagoon/lagoon/services/insights-handler/internal/handler"
"log/slog"
"os"
Expand Down
Loading