Skip to content

Commit

Permalink
fix(deps): update minor and pin
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 16, 2024
1 parent a602de9 commit d0aa5b3
Show file tree
Hide file tree
Showing 9 changed files with 2,231 additions and 1,690 deletions.
8 changes: 4 additions & 4 deletions dockerfiles/docker-compose-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.1"

services:
db:
image: postgres:16.0
image: postgres:16.4
restart: always
ports:
- "5555:5432"
Expand Down Expand Up @@ -34,10 +34,10 @@ services:
- 16686:16686 # UI
- 14268:14268
- 9411:9411
image: "jaegertracing/all-in-one:1.50"
image: "jaegertracing/all-in-one:1.60"
# Collector
collector:
image: otel/opentelemetry-collector:0.87.0
image: otel/opentelemetry-collector:0.111.0
platform: linux/amd64
command: [ "--config=/conf/collector-config.yaml" ]
volumes:
Expand All @@ -57,4 +57,4 @@ services:
- MEILI_MASTER_KEY=FOO
volumes:
- '../tmp/meili_data:/meili_data'
image: 'getmeili/meilisearch:v1.4'
image: 'getmeili/meilisearch:v1.10'
2 changes: 1 addition & 1 deletion dockerfiles/go.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 AS builder-go
FROM golang:1.23 AS builder-go

WORKDIR /work
COPY go.mod .
Expand Down
70 changes: 35 additions & 35 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,30 @@ module github.com/nickysemenza/gourd

go 1.21

toolchain go1.21.0
toolchain go1.23.2

replace github.com/ericlagergren/decimal => github.com/ericlagergren/decimal v0.0.0-20181231230500-73749d4874d5

require (
github.com/Masterminds/squirrel v1.5.4
github.com/buckket/go-blurhash v1.1.0
github.com/charmbracelet/glamour v0.6.0
github.com/cosmtrek/air v1.47.0
github.com/charmbracelet/glamour v0.8.0
github.com/cosmtrek/air v1.61.1
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/dlclark/regexp2 v1.10.0 // indirect
github.com/friendsofgo/errors v0.9.2
github.com/getkin/kin-openapi v0.120.0
github.com/getsentry/sentry-go v0.25.0
github.com/getkin/kin-openapi v0.128.0
github.com/getsentry/sentry-go v0.29.1
github.com/go-openapi/swag v0.22.4 // indirect
github.com/golang-migrate/migrate/v4 v4.16.2
github.com/golangci/golangci-lint v1.54.0
github.com/golang-migrate/migrate/v4 v4.18.1
github.com/golangci/golangci-lint v1.61.0
github.com/google/uuid v1.4.0 // indirect
github.com/gphotosuploader/googlemirror v0.5.0
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/jmoiron/sqlx v1.3.5
github.com/jomei/notionapi v1.12.2-0.20230616065528-b0a0b47e1b3f
github.com/labstack/echo/v4 v4.11.3
github.com/jmoiron/sqlx v1.4.0
github.com/jomei/notionapi v1.13.2
github.com/labstack/echo/v4 v4.12.0
github.com/lib/pq v1.10.9
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mitchellh/go-server-timing v1.0.1
Expand All @@ -36,25 +36,25 @@ require (
github.com/prometheus/procfs v0.11.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.17.0
github.com/stretchr/testify v1.8.4
github.com/volatiletech/sqlboiler/v4 v4.15.0
github.com/spf13/cobra v1.8.1
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.9.0
github.com/volatiletech/sqlboiler/v4 v4.16.2
github.com/volatiletech/strmangle v0.0.5
go.opencensus.io v0.24.0
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.45.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0
go.opentelemetry.io/contrib/propagators/jaeger v1.20.0
go.opentelemetry.io/otel v1.19.0
go.opentelemetry.io/otel/sdk v1.19.0
go.opentelemetry.io/otel/trace v1.19.0
golang.org/x/oauth2 v0.13.0
golang.org/x/tools v0.14.0
google.golang.org/api v0.147.0
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.56.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0
go.opentelemetry.io/contrib/propagators/jaeger v1.31.0
go.opentelemetry.io/otel v1.31.0
go.opentelemetry.io/otel/sdk v1.31.0
go.opentelemetry.io/otel/trace v1.31.0
golang.org/x/oauth2 v0.23.0
golang.org/x/tools v0.26.0
google.golang.org/api v0.201.0
gopkg.in/guregu/null.v4 v4.0.0
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
sigs.k8s.io/yaml v1.3.0
sigs.k8s.io/yaml v1.4.0
)

require (
Expand Down Expand Up @@ -85,14 +85,14 @@ require (
github.com/alexkohler/prealloc v1.0.0 // indirect
github.com/alingse/asasalint v0.0.11 // indirect
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
github.com/arran4/golang-ical v0.1.0
github.com/arran4/golang-ical v0.3.1
github.com/ashanbrown/forbidigo v1.6.0 // indirect
github.com/ashanbrown/makezero v1.1.1 // indirect
github.com/aws/aws-sdk-go v1.44.284 // indirect
github.com/aws/aws-sdk-go-v2 v1.21.0
github.com/aws/aws-sdk-go-v2 v1.32.2
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.13 // indirect
github.com/aws/aws-sdk-go-v2/config v1.18.27
github.com/aws/aws-sdk-go-v2/credentials v1.13.26
github.com/aws/aws-sdk-go-v2/config v1.27.43
github.com/aws/aws-sdk-go-v2/credentials v1.17.41
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.4 // indirect
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.70 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.41 // indirect
Expand All @@ -103,7 +103,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.36 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.35 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.4 // indirect
github.com/aws/aws-sdk-go-v2/service/s3 v1.40.0
github.com/aws/aws-sdk-go-v2/service/s3 v1.65.3
github.com/aws/aws-sdk-go-v2/service/sso v1.12.12 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.12 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.19.2 // indirect
Expand Down Expand Up @@ -316,8 +316,8 @@ require (
github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
github.com/ultraware/funlen v0.1.0 // indirect
github.com/ultraware/whitespace v0.0.5 // indirect
github.com/uptrace/opentelemetry-go-extra/otellogrus v0.2.1
github.com/uptrace/opentelemetry-go-extra/otelsql v0.2.1
github.com/uptrace/opentelemetry-go-extra/otellogrus v0.3.2
github.com/uptrace/opentelemetry-go-extra/otelsql v0.3.2
github.com/uptrace/opentelemetry-go-extra/otelutil v0.2.1 // indirect
github.com/uudashr/gocognit v1.0.7 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
Expand All @@ -337,8 +337,8 @@ require (
gitlab.com/nyarla/go-crypt v0.0.0-20160106005555-d9a5dc2b789b // indirect
go.mitsakis.org/workerpool v0.0.0-20221016122625-07d45f730b5b
go.mongodb.org/mongo-driver v1.11.7 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0
go.opentelemetry.io/otel/metric v1.19.0 // indirect
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
Expand Down Expand Up @@ -387,12 +387,12 @@ require (
)

require (
github.com/deepmap/oapi-codegen/v2 v2.0.0
github.com/deepmap/oapi-codegen/v2 v2.4.1
github.com/gphotosuploader/google-photos-api-client-go v1.1.6
github.com/oapi-codegen/runtime v1.1.0
github.com/oapi-codegen/testutil v1.1.0
github.com/volatiletech/null/v8 v8.1.2
go.opentelemetry.io/otel/exporters/zipkin v1.19.0
go.opentelemetry.io/otel/exporters/zipkin v1.31.0
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
google.golang.org/grpc v1.58.2
)
Expand Down
Loading

0 comments on commit d0aa5b3

Please sign in to comment.