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 all non-major dependencies #1626

Merged
merged 4 commits into from
Apr 27, 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: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ node_modules
@generated
collection
.next
.eslintrc.js
*.config.js
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
project: true,
emitDecoratorMetadata: true,
ecmaFeatures: {
jsx: true
Expand Down
2 changes: 0 additions & 2 deletions .github/actions/setup-pnpm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ runs:
using: 'composite'
steps:
- uses: pnpm/action-setup@v3
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
auto-install-peers=true
package-import-method=clone-or-copy
package-manager-strict=false
4 changes: 2 additions & 2 deletions apps/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
### BUILDER ###
ARG target=client

FROM node:20-alpine AS builder
FROM node:20.12.2-alpine AS builder
ARG target

COPY . /build
Expand All @@ -18,7 +18,7 @@ RUN npx prisma generate
RUN npm run build ${target}

### PRODUCTION ###
FROM node:20-alpine
FROM node:20.12.2-alpine
ARG target

ENV NODE_ENV=production
Expand Down
56 changes: 28 additions & 28 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,39 +18,39 @@
"studio:test": "cross-env DATABASE_URL=$TEST_DATABASE_URL npx prisma studio"
},
"dependencies": {
"@apollo/server": "^4.10.2",
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/client-ses": "^3.540.0",
"@aws-sdk/credential-provider-node": "^3.540.0",
"@golevelup/nestjs-rabbitmq": "^5.1.0",
"@apollo/server": "^4.10.4",
"@aws-sdk/client-s3": "^3.556.0",
"@aws-sdk/client-ses": "^3.556.0",
"@aws-sdk/credential-provider-node": "^3.556.0",
"@golevelup/nestjs-rabbitmq": "^5.3.0",
"@nestjs-modules/mailer": "^1.11.2",
"@nestjs/apollo": "^12.1.0",
"@nestjs/axios": "^3.0.2",
"@nestjs/cache-manager": "^2.2.2",
"@nestjs/common": "^10.3.5",
"@nestjs/config": "^3.2.1",
"@nestjs/core": "^10.3.5",
"@nestjs/common": "^10.3.8",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.8",
"@nestjs/graphql": "^12.1.1",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.5",
"@nestjs/swagger": "^7.3.0",
"@nestjs/platform-express": "^10.3.8",
"@nestjs/swagger": "^7.3.1",
"@opentelemetry/api": "~1.8.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.49.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.49.1",
"@opentelemetry/exporter-metrics-otlp-http": "^0.50.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.50.0",
"@opentelemetry/host-metrics": "^0.35.0",
"@opentelemetry/instrumentation-express": "^0.36.1",
"@opentelemetry/instrumentation-http": "^0.49.1",
"@opentelemetry/resources": "^1.22.0",
"@opentelemetry/sdk-metrics": "^1.22.0",
"@opentelemetry/sdk-node": "^0.49.1",
"@opentelemetry/sdk-trace-node": "^1.22.0",
"@opentelemetry/semantic-conventions": "^1.22.0",
"@prisma/client": "^5.11.0",
"@prisma/instrumentation": "~5.11.0",
"@opentelemetry/instrumentation-express": "^0.37.0",
"@opentelemetry/instrumentation-http": "^0.50.0",
"@opentelemetry/resources": "^1.23.0",
"@opentelemetry/sdk-metrics": "^1.23.0",
"@opentelemetry/sdk-node": "^0.50.0",
"@opentelemetry/sdk-trace-node": "^1.23.0",
"@opentelemetry/semantic-conventions": "^1.23.0",
"@prisma/client": "^5.12.1",
"@prisma/instrumentation": "~5.12.1",
"argon2": "^0.40.1",
"axios": "^1.6.8",
"cache-manager": "^5.4.0",
"cache-manager": "^5.5.1",
"cache-manager-redis-yet": "^4.2.0",
"chai-exclude": "^2.1.0",
"class-transformer": "^0.5.1",
Expand All @@ -76,38 +76,38 @@
"pino-pretty": "^11.0.0",
"reflect-metadata": "^0.2.1",
"sql-formatter": "^15.3.0",
"zod": "^3.22.4"
"zod": "^3.23.3"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.5",
"@nestjs/testing": "^10.3.8",
"@types/cache-manager": "^4.0.6",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/express": "^4.17.21",
"@types/graphql-upload": "8.0.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/node": "^20.12.7",
"@types/nodemailer": "^6.4.14",
"@types/passport-jwt": "^4.0.1",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.3",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"mocha": "^10.3.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"prisma": "^5.11.0",
"prisma": "^5.12.1",
"prisma-nestjs-graphql": "^20.0.2",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3"
"typescript": "^5.4.5"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
Expand Down
54 changes: 27 additions & 27 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
"compile": "graphql-codegen --require dotenv/config"
},
"dependencies": {
"@apollo/client": "^3.9.9",
"@apollo/client": "^3.9.11",
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-python": "^6.1.5",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.3",
"@headlessui/react": "^1.7.18",
"@headlessui/react": "^1.7.19",
"@hookform/resolvers": "^3.3.4",
"@lezer/highlight": "^1.2.0",
"@matejmazur/react-katex": "^3.1.3",
"@monaco-editor/react": "^4.6.0",
"@next/bundle-analyzer": "^14.1.4",
"@next/bundle-analyzer": "^14.2.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
Expand All @@ -39,10 +39,10 @@
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/nextjs": "^7.108.0",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/react-query": "^5.28.8",
"@tanstack/react-table": "^8.15.0",
"@sentry/nextjs": "^7.111.0",
"@tailwindcss/typography": "^0.5.12",
"@tanstack/react-query": "^5.31.0",
"@tanstack/react-table": "^8.16.0",
"@tiptap/core": "^2.2.4",
"@tiptap/extension-link": "^2.2.4",
"@tiptap/extension-placeholder": "^2.2.4",
Expand All @@ -57,50 +57,50 @@
"date-fns": "^3.6.0",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"embla-carousel-react": "8.0.0",
"framer-motion": "^11.0.20",
"embla-carousel-react": "8.0.2",
"framer-motion": "^11.1.7",
"graphql": "^16.8.1",
"isomorphic-dompurify": "^2.6.0",
"isomorphic-dompurify": "^2.7.0",
"js-confetti": "^0.12.0",
"katex": "^0.16.10",
"ky": "^1.2.3",
"next": "14.1.4",
"ky": "^1.2.4",
"next": "14.2.2",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-day-picker": "^8.10.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.1",
"react-icons": "^5.0.1",
"react-intersection-observer": "^9.8.1",
"react-resizable-panels": "^2.0.16",
"react-hook-form": "^7.51.3",
"react-icons": "^5.1.0",
"react-intersection-observer": "^9.8.2",
"react-resizable-panels": "^2.0.18",
"react-use": "^17.5.0",
"sharp": "^0.33.3",
"sonner": "^1.4.41",
"zod": "^3.22.4",
"zod": "^3.23.3",
"zustand": "^4.5.2"
},
"devDependencies": {
"@codemirror/language": "^6.10.1",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.4",
"@graphql-codegen/client-preset": "^4.2.5",
"@graphql-typed-document-node/core": "^3.2.0",
"@types/apollo-upload-client": "^18.0.0",
"@types/katex": "^0.16.7",
"@types/node": "^20.11.30",
"@types/react": "^18.2.70",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.22",
"@types/react-dom": "^18.2.25",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"eslint-config-next": "^14.1.4",
"lucide-react": "^0.363.0",
"eslint-config-next": "^14.2.2",
"lucide-react": "^0.372.0",
"postcss": "^8.4.38",
"tailwind-merge": "^2.2.2",
"tailwind-merge": "^2.3.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^3.4.1",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.3"
"typescript": "^5.4.5"
}
}
60 changes: 30 additions & 30 deletions apps/infra/deploy/.terraform.lock.hcl

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

2 changes: 1 addition & 1 deletion apps/infra/deploy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.42.0"
version = "5.46.0"
}
}

Expand Down
Loading
Loading