Skip to content

Commit

Permalink
Update all dependencies (#193)
Browse files Browse the repository at this point in the history
* Update frontend dependencies

* Update frontend dependencies with a major version bump

* Update backend dependencies

* Update postgres version to 15

* Delete jsLibraryMappings.xml

* Update test.yaml

* Update idea remote targets
  • Loading branch information
th0th committed Aug 11, 2023
1 parent 928c033 commit d39f515
Show file tree
Hide file tree
Showing 12 changed files with 1,592 additions and 1,968 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
FRONTEND_BASE_URL: ${{ vars.FRONTEND_BASE_URL }}
MAILPIT_BASE_URL: ${{ vars.MAILPIT_BASE_URL }}
name: Run Playwright tests
run: pnpm exec -- playwright test --project="Google Chrome"
run: pnpm exec -- playwright test --project="Google Chrome" --workers 1
working-directory: frontend

- if: always()
Expand Down
6 changes: 0 additions & 6 deletions .idea/jsLibraryMappings.xml

This file was deleted.

27 changes: 0 additions & 27 deletions .idea/remote-targets.xml

This file was deleted.

1 change: 0 additions & 1 deletion .idea/runConfigurations/_template__of_Go_Test.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM golang:1.20.3
FROM golang:1.21.0

WORKDIR /usr/src/poeticmetric

RUN CGO_ENABLED=0 go install -tags 'clickhouse,postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@v4.15.2
RUN CGO_ENABLED=0 go install -tags 'clickhouse,postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@v4.16.2

COPY go.mod go.sum ./
RUN go mod download
Expand Down
4 changes: 2 additions & 2 deletions backend/development.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM golang:1.20.3
FROM golang:1.21.0

RUN apt update && apt install -y postgresql-client

WORKDIR /poeticmetric

RUN CGO_ENABLED=0 go install -tags 'clickhouse,postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@v4.15.2
RUN CGO_ENABLED=0 go install -tags 'clickhouse,postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@v4.16.2

RUN go install github.com/cespare/reflex@latest
RUN go install github.com/go-delve/delve/cmd/dlv@latest
Expand Down
61 changes: 29 additions & 32 deletions backend/go.mod
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
module github.com/th0th/poeticmetric/backend

go 1.20
go 1.21

require (
github.com/RussellLuo/validating/v3 v3.0.0-beta.1
github.com/brianvoe/gofakeit/v6 v6.21.0
github.com/bsm/redislock v0.9.3
github.com/brianvoe/gofakeit/v6 v6.23.1
github.com/bsm/redislock v0.9.4
github.com/dchest/uniuri v1.2.0
github.com/getsentry/sentry-go v0.21.0
github.com/getsentry/sentry-go v0.23.0
github.com/go-errors/errors v1.4.2
github.com/gocarina/gocsv v0.0.0-20230513223533-9ddd7fd60602
github.com/gofiber/contrib/fibersentry v1.0.2
github.com/gofiber/fiber/v2 v2.46.0
github.com/golang-migrate/migrate/v4 v4.16.0
github.com/gocarina/gocsv v0.0.0-20230616125104-99d496ca653d
github.com/gofiber/contrib/fibersentry v1.0.3
github.com/gofiber/fiber/v2 v2.48.0
github.com/golang-migrate/migrate/v4 v4.16.2
github.com/google/uuid v1.3.0
github.com/lib/pq v1.10.9
github.com/mileusna/useragent v1.3.2
github.com/mileusna/useragent v1.3.3
github.com/rabbitmq/amqp091-go v1.8.1
github.com/redis/go-redis/v9 v9.0.5
github.com/robfig/cron/v3 v3.0.1
github.com/stretchr/testify v1.8.4
github.com/stripe/stripe-go/v74 v74.20.0
github.com/tdewolff/minify/v2 v2.12.6
golang.org/x/crypto v0.9.0
golang.org/x/oauth2 v0.8.0
golang.org/x/sync v0.2.0
google.golang.org/api v0.125.0
github.com/stripe/stripe-go/v74 v74.30.0
github.com/tdewolff/minify/v2 v2.12.8
golang.org/x/crypto v0.12.0
golang.org/x/oauth2 v0.11.0
golang.org/x/sync v0.3.0
google.golang.org/api v0.136.0
gorm.io/driver/clickhouse v0.5.1
gorm.io/driver/postgres v1.5.2
gorm.io/gorm v1.25.1
gorm.io/gorm v1.25.3
)

require (
cloud.google.com/go/compute v1.19.3 // indirect
cloud.google.com/go/compute v1.23.0 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/ClickHouse/ch-go v0.53.0 // indirect
github.com/ClickHouse/clickhouse-go/v2 v2.8.3 // indirect
Expand All @@ -45,8 +45,8 @@ require (
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/s2a-go v0.1.4 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
github.com/googleapis/gax-go/v2 v2.10.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
Expand All @@ -57,34 +57,31 @@ require (
github.com/jinzhu/now v1.1.5 // indirect
github.com/klauspost/compress v1.16.3 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/paulmach/orb v0.9.0 // indirect
github.com/philhofer/fwd v1.1.2 // indirect
github.com/pierrec/lz4/v4 v4.1.17 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.3 // indirect
github.com/savsgio/dictpool v0.0.0-20221023140959-7bf2e61cea94 // indirect
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/segmentio/asm v1.2.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/tdewolff/parse/v2 v2.6.6 // indirect
github.com/tinylib/msgp v1.1.8 // indirect
github.com/tdewolff/parse/v2 v2.6.7 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.47.0 // indirect
github.com/valyala/fasthttp v1.48.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/otel v1.14.0 // indirect
go.opentelemetry.io/otel/trace v1.14.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect
google.golang.org/grpc v1.55.0 // indirect
google.golang.org/protobuf v1.30.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
google.golang.org/grpc v1.57.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit d39f515

Please sign in to comment.