Skip to content

Commit

Permalink
fix(deps): update module github.com/cheshir/go-mq to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 15, 2024
1 parent 161e23c commit d68e8b2
Show file tree
Hide file tree
Showing 7 changed files with 1,275 additions and 44 deletions.
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

0 comments on commit d68e8b2

Please sign in to comment.