diff --git a/.github/workflows/build-email-function.yml b/.github/workflows/build-email-function.yml index 955f12944..e77f5d19c 100644 --- a/.github/workflows/build-email-function.yml +++ b/.github/workflows/build-email-function.yml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.7 with: ref: ${{ inputs.git_ref }} - - uses: oven-sh/setup-bun@v1.2.1 + - uses: oven-sh/setup-bun@v1.2.2 with: bun-version: 1.1.8 @@ -38,7 +38,7 @@ jobs: working-directory: bun-packages/packages/email-function - name: Store artifact - uses: actions/upload-artifact@v4.3.3 + uses: actions/upload-artifact@v4.3.4 with: name: email-function-dist path: bun-packages/packages/email-function/dist/ diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f62faa1b7..a4748e875 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4.1.3 + uses: actions/checkout@v4.1.7 - name: Initialize CodeQL uses: github/codeql-action/init@v3 diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 6c2d58ef4..78279968a 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -10,11 +10,11 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.7 with: fetch-depth: 0 - - uses: actions/setup-node@v4.0.2 + - uses: actions/setup-node@v4.0.3 with: node-version-file: "app/.nvmrc" diff --git a/.github/workflows/deploy-email-function.yml b/.github/workflows/deploy-email-function.yml index ae749aee5..dab1001ab 100644 --- a/.github/workflows/deploy-email-function.yml +++ b/.github/workflows/deploy-email-function.yml @@ -51,7 +51,7 @@ jobs: aws-region: eu-central-1 - name: Retrieve email-function artifact - uses: actions/download-artifact@v4.1.6 + uses: actions/download-artifact@v4.1.8 with: name: email-function-dist path: bun-packages/packages/email-function/dist diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 2f2f96914..9696ae91c 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.3 + uses: actions/checkout@v4.1.7 - name: Self-hosted Renovate - uses: renovatebot/github-action@v40.1.11 + uses: renovatebot/github-action@v40.2.2 with: configurationFile: .github/renovate-config.js token: ${{ secrets.RENOVATE_TOKEN }} diff --git a/.github/workflows/terraform-apply.yml b/.github/workflows/terraform-apply.yml index 9d54c6116..862edd669 100644 --- a/.github/workflows/terraform-apply.yml +++ b/.github/workflows/terraform-apply.yml @@ -34,14 +34,14 @@ jobs: environment: "terraform-${{ inputs.environment }}" steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.7 - name: Read .terraform-version id: terraform_version run: echo "value=$(cat .terraform-version)" >> $GITHUB_OUTPUT working-directory: terraform - - uses: hashicorp/setup-terraform@v3.0.0 + - uses: hashicorp/setup-terraform@v3.1.1 with: terraform_version: "${{ steps.terraform_version.outputs.value }}" @@ -52,7 +52,7 @@ jobs: aws-region: eu-central-1 - name: Retrieve tfplan artifact - uses: actions/download-artifact@v4.1.6 + uses: actions/download-artifact@v4.1.8 with: name: tfplan path: terraform/ diff --git a/.github/workflows/terraform-plan.yml b/.github/workflows/terraform-plan.yml index 1bf4d00a4..913d22c7a 100644 --- a/.github/workflows/terraform-plan.yml +++ b/.github/workflows/terraform-plan.yml @@ -43,14 +43,14 @@ jobs: environment: terraform-${{ inputs.environment || 'test' }} steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.7 - name: Read .terraform-version id: terraform_version run: echo "value=$(cat .terraform-version)" >> $GITHUB_OUTPUT working-directory: terraform - - uses: hashicorp/setup-terraform@v3.0.0 + - uses: hashicorp/setup-terraform@v3.1.1 with: terraform_version: "${{ steps.terraform_version.outputs.value }}" @@ -125,7 +125,7 @@ jobs: run: exit 1 - name: Store artifact - uses: actions/upload-artifact@v4.3.3 + uses: actions/upload-artifact@v4.3.4 if: inputs.store_plan || false with: name: tfplan diff --git a/.github/workflows/terraform-validate.yml b/.github/workflows/terraform-validate.yml index b5b90a148..2a1c90ced 100644 --- a/.github/workflows/terraform-validate.yml +++ b/.github/workflows/terraform-validate.yml @@ -14,14 +14,14 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.7 - name: Read .terraform-version id: terraform_version run: echo "value=$(cat .terraform-version)" >> $GITHUB_OUTPUT working-directory: terraform - - uses: hashicorp/setup-terraform@v3.0.0 + - uses: hashicorp/setup-terraform@v3.1.1 with: terraform_version: "${{ steps.terraform_version.outputs.value }}" diff --git a/.github/workflows/validate-app.yml b/.github/workflows/validate-app.yml index 2727852e7..87aeacac3 100644 --- a/.github/workflows/validate-app.yml +++ b/.github/workflows/validate-app.yml @@ -14,9 +14,9 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.7 - - uses: actions/setup-node@v4.0.2 + - uses: actions/setup-node@v4.0.3 with: node-version-file: "app/.nvmrc" @@ -58,9 +58,9 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.7 - - uses: actions/setup-node@v4.0.2 + - uses: actions/setup-node@v4.0.3 with: node-version-file: "app/.nvmrc" @@ -84,9 +84,9 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.7 - - uses: actions/setup-node@v4.0.2 + - uses: actions/setup-node@v4.0.3 with: node-version-file: "app/.nvmrc" diff --git a/.github/workflows/validate-email-function.yml b/.github/workflows/validate-email-function.yml index 5f8ffdab2..c903a81bf 100644 --- a/.github/workflows/validate-email-function.yml +++ b/.github/workflows/validate-email-function.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.7 - name: Set up Biome uses: biomejs/setup-biome@v2 diff --git a/app/package-lock.json b/app/package-lock.json index 91402c2af..d1600043e 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -22,11 +22,11 @@ "@t3-oss/env-nextjs": "0.10.1", "@tanstack/react-query": "5.51.1", "@tanstack/react-query-devtools": "5.51.1", - "@tanstack/react-table": "8.19.2", - "@trpc/client": "11.0.0-rc.456", - "@trpc/next": "11.0.0-rc.456", - "@trpc/react-query": "11.0.0-rc.456", - "@trpc/server": "11.0.0-rc.456", + "@tanstack/react-table": "8.19.3", + "@trpc/client": "11.0.0-rc.461", + "@trpc/next": "11.0.0-rc.461", + "@trpc/react-query": "11.0.0-rc.461", + "@trpc/server": "11.0.0-rc.461", "@uidotdev/usehooks": "2.4.1", "@unleash/nextjs": "1.4.4", "@vercel/analytics": "1.3.1", @@ -58,12 +58,12 @@ "devDependencies": { "@tailwindcss/typography": "0.5.13", "@types/eslint": "8.56.10", - "@types/lodash": "4.17.6", + "@types/lodash": "4.17.7", "@types/node": "20.14.10", "@types/react": "18.3.3", "@types/react-dom": "18.3.0", - "@typescript-eslint/eslint-plugin": "7.16.0", - "@typescript-eslint/parser": "7.16.0", + "@typescript-eslint/eslint-plugin": "7.16.1", + "@typescript-eslint/parser": "7.16.1", "@vitest/coverage-v8": "1.6.0", "autoprefixer": "10.4.19", "csv": "6.3.9", @@ -71,11 +71,11 @@ "eslint-config-next": "14.2.5", "eslint-plugin-react-compiler": "0.0.0", "postcss": "8.4.39", - "prettier": "3.3.2", + "prettier": "3.3.3", "prettier-plugin-organize-imports": "4.0.0", "prettier-plugin-tailwindcss": "0.6.5", "prisma": "5.16.2", - "tailwindcss": "3.4.4", + "tailwindcss": "3.4.5", "typescript": "5.5.3", "vercel": "35.1.0", "vitest": "1.6.0" @@ -5263,12 +5263,12 @@ } }, "node_modules/@tanstack/react-table": { - "version": "8.19.2", - "resolved": "https://registry.npmjs.org/@tanstack/react-table/-/react-table-8.19.2.tgz", - "integrity": "sha512-itoSIAkA/Vsg+bjY23FSemcTyPhc5/1YjYyaMsr9QSH/cdbZnQxHVWrpWn0Sp2BWN71qkzR7e5ye8WuMmwyOjg==", + "version": "8.19.3", + "resolved": "https://registry.npmjs.org/@tanstack/react-table/-/react-table-8.19.3.tgz", + "integrity": "sha512-MtgPZc4y+cCRtU16y1vh1myuyZ2OdkWgMEBzyjYsoMWMicKZGZvcDnub3Zwb6XF2pj9iRMvm1SO1n57lS0vXLw==", "license": "MIT", "dependencies": { - "@tanstack/table-core": "8.19.2" + "@tanstack/table-core": "8.19.3" }, "engines": { "node": ">=12" @@ -5283,9 +5283,9 @@ } }, "node_modules/@tanstack/table-core": { - "version": "8.19.2", - "resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.19.2.tgz", - "integrity": "sha512-KpRjhgehIhbfH78ARm/GJDXGnpdw4bCg3qas6yjWSi7czJhI/J6pWln7NHtmBkGE9ZbohiiNtLqwGzKmBfixig==", + "version": "8.19.3", + "resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.19.3.tgz", + "integrity": "sha512-IqREj9ADoml9zCAouIG/5kCGoyIxPFdqdyoxis9FisXFi5vT+iYfEfLosq4xkU/iDbMcEuAj+X8dWRLvKYDNoQ==", "license": "MIT", "engines": { "node": ">=12" @@ -5305,30 +5305,30 @@ } }, "node_modules/@trpc/client": { - "version": "11.0.0-rc.456", - "resolved": "https://registry.npmjs.org/@trpc/client/-/client-11.0.0-rc.456.tgz", - "integrity": "sha512-orLt5MbY1CiKPO9IYHbTJKvkQr24M7RhU9qXvCPmmRfAHGWXNxh3bN1vTgemaQy9UL+qVi8H6bPXuQnkp2b3Gw==", + "version": "11.0.0-rc.461", + "resolved": "https://registry.npmjs.org/@trpc/client/-/client-11.0.0-rc.461.tgz", + "integrity": "sha512-9Hfg3LfXi7Cw+oczcEQ7uAumlMX/bqS1RxJR+kOg7mhguvrzXq50U0QGqS4ENgrOBIaUzs8n60wMy+1MueydCg==", "funding": [ "https://trpc.io/sponsor" ], "license": "MIT", "peerDependencies": { - "@trpc/server": "11.0.0-rc.456+a9a2c25b1" + "@trpc/server": "11.0.0-rc.461+f178d3fed" } }, "node_modules/@trpc/next": { - "version": "11.0.0-rc.456", - "resolved": "https://registry.npmjs.org/@trpc/next/-/next-11.0.0-rc.456.tgz", - "integrity": "sha512-UtwpwutWCcYj8coJjKmpSsnWmxmTjl3EXW6LYa5shBSyCKm81fX1+QycX5GTDoKKqm4Lh/h1dgNomTh+Ku7MLQ==", + "version": "11.0.0-rc.461", + "resolved": "https://registry.npmjs.org/@trpc/next/-/next-11.0.0-rc.461.tgz", + "integrity": "sha512-Xu4x/aE43LA4YLAxoxA9zm4G7tMLidJnnSUMd2xniPAQ9AHHTXNincQCfVATc02/dzxGMXs6hhVIhxyxG6hojg==", "funding": [ "https://trpc.io/sponsor" ], "license": "MIT", "peerDependencies": { "@tanstack/react-query": "^5.49.2", - "@trpc/client": "11.0.0-rc.456+a9a2c25b1", - "@trpc/react-query": "11.0.0-rc.456+a9a2c25b1", - "@trpc/server": "11.0.0-rc.456+a9a2c25b1", + "@trpc/client": "11.0.0-rc.461+f178d3fed", + "@trpc/react-query": "11.0.0-rc.461+f178d3fed", + "@trpc/server": "11.0.0-rc.461+f178d3fed", "next": "*", "react": ">=16.8.0", "react-dom": ">=16.8.0" @@ -5343,25 +5343,25 @@ } }, "node_modules/@trpc/react-query": { - "version": "11.0.0-rc.456", - "resolved": "https://registry.npmjs.org/@trpc/react-query/-/react-query-11.0.0-rc.456.tgz", - "integrity": "sha512-2hmjYbcItb48fzsjlLJ1L0y34GEQvy9AmdKhQ6OjjEmINE270izUqCp0Kw+11alZVcjvINBifabicxSspzbsNA==", + "version": "11.0.0-rc.461", + "resolved": "https://registry.npmjs.org/@trpc/react-query/-/react-query-11.0.0-rc.461.tgz", + "integrity": "sha512-YHkvngwTx5FEcC2lLJQY4+lH62TPaHQzI7XPYMLjrRrPhN4TomMHDM3ASyYEHUBDAciXs2hGZ0h3FNMLSCa7+Q==", "funding": [ "https://trpc.io/sponsor" ], "license": "MIT", "peerDependencies": { "@tanstack/react-query": "^5.49.2", - "@trpc/client": "11.0.0-rc.456+a9a2c25b1", - "@trpc/server": "11.0.0-rc.456+a9a2c25b1", + "@trpc/client": "11.0.0-rc.461+f178d3fed", + "@trpc/server": "11.0.0-rc.461+f178d3fed", "react": ">=18.2.0", "react-dom": ">=18.2.0" } }, "node_modules/@trpc/server": { - "version": "11.0.0-rc.456", - "resolved": "https://registry.npmjs.org/@trpc/server/-/server-11.0.0-rc.456.tgz", - "integrity": "sha512-Ow2+m7myyMNqcFH4AHeIy0saaTDWmpj3QRekCbeZepbxmB8d3PLXESTSs3UJuORdT9+bDr9T08o5FkaP4ew2QQ==", + "version": "11.0.0-rc.461", + "resolved": "https://registry.npmjs.org/@trpc/server/-/server-11.0.0-rc.461.tgz", + "integrity": "sha512-hsO6yx3dwhZQ2Nnmr6yMmbykGZh5hgF+Lb7pnbdKI6nm53xFszz2MfTp3/XZAGeMkiX7I9WiXGquSbrIR/+SgQ==", "funding": [ "https://trpc.io/sponsor" ], @@ -5454,9 +5454,9 @@ "dev": true }, "node_modules/@types/lodash": { - "version": "4.17.6", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.6.tgz", - "integrity": "sha512-OpXEVoCKSS3lQqjx9GGGOapBeuW5eUboYHRlHP9urXPX25IKZ6AnP5ZRxtVf63iieUbsHxLn8NQ5Nlftc6yzAA==", + "version": "4.17.7", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.7.tgz", + "integrity": "sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==", "dev": true, "license": "MIT" }, @@ -5505,17 +5505,17 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.16.0.tgz", - "integrity": "sha512-py1miT6iQpJcs1BiJjm54AMzeuMPBSPuKPlnT8HlfudbcS5rYeX5jajpLf3mrdRh9dA/Ec2FVUY0ifeVNDIhZw==", + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.16.1.tgz", + "integrity": "sha512-SxdPak/5bO0EnGktV05+Hq8oatjAYVY3Zh2bye9pGZy6+jwyR3LG3YKkV4YatlsgqXP28BTeVm9pqwJM96vf2A==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.16.0", - "@typescript-eslint/type-utils": "7.16.0", - "@typescript-eslint/utils": "7.16.0", - "@typescript-eslint/visitor-keys": "7.16.0", + "@typescript-eslint/scope-manager": "7.16.1", + "@typescript-eslint/type-utils": "7.16.1", + "@typescript-eslint/utils": "7.16.1", + "@typescript-eslint/visitor-keys": "7.16.1", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -5539,16 +5539,16 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.16.0.tgz", - "integrity": "sha512-ar9E+k7CU8rWi2e5ErzQiC93KKEFAXA2Kky0scAlPcxYblLt8+XZuHUZwlyfXILyQa95P6lQg+eZgh/dDs3+Vw==", + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.16.1.tgz", + "integrity": "sha512-u+1Qx86jfGQ5i4JjK33/FnawZRpsLxRnKzGE6EABZ40KxVT/vWsiZFEBBHjFOljmmV3MBYOHEKi0Jm9hbAOClA==", "dev": true, "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/scope-manager": "7.16.0", - "@typescript-eslint/types": "7.16.0", - "@typescript-eslint/typescript-estree": "7.16.0", - "@typescript-eslint/visitor-keys": "7.16.0", + "@typescript-eslint/scope-manager": "7.16.1", + "@typescript-eslint/types": "7.16.1", + "@typescript-eslint/typescript-estree": "7.16.1", + "@typescript-eslint/visitor-keys": "7.16.1", "debug": "^4.3.4" }, "engines": { @@ -5568,14 +5568,14 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.16.0.tgz", - "integrity": "sha512-8gVv3kW6n01Q6TrI1cmTZ9YMFi3ucDT7i7aI5lEikk2ebk1AEjrwX8MDTdaX5D7fPXMBLvnsaa0IFTAu+jcfOw==", + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.16.1.tgz", + "integrity": "sha512-nYpyv6ALte18gbMz323RM+vpFpTjfNdyakbf3nsLvF43uF9KeNC289SUEW3QLZ1xPtyINJ1dIsZOuWuSRIWygw==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "7.16.0", - "@typescript-eslint/visitor-keys": "7.16.0" + "@typescript-eslint/types": "7.16.1", + "@typescript-eslint/visitor-keys": "7.16.1" }, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -5586,14 +5586,14 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.16.0.tgz", - "integrity": "sha512-j0fuUswUjDHfqV/UdW6mLtOQQseORqfdmoBNDFOqs9rvNVR2e+cmu6zJu/Ku4SDuqiJko6YnhwcL8x45r8Oqxg==", + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.16.1.tgz", + "integrity": "sha512-rbu/H2MWXN4SkjIIyWcmYBjlp55VT+1G3duFOIukTNFxr9PI35pLc2ydwAfejCEitCv4uztA07q0QWanOHC7dA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "7.16.0", - "@typescript-eslint/utils": "7.16.0", + "@typescript-eslint/typescript-estree": "7.16.1", + "@typescript-eslint/utils": "7.16.1", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, @@ -5614,9 +5614,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.16.0.tgz", - "integrity": "sha512-fecuH15Y+TzlUutvUl9Cc2XJxqdLr7+93SQIbcZfd4XRGGKoxyljK27b+kxKamjRkU7FYC6RrbSCg0ALcZn/xw==", + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.16.1.tgz", + "integrity": "sha512-AQn9XqCzUXd4bAVEsAXM/Izk11Wx2u4H3BAfQVhSfzfDOm/wAON9nP7J5rpkCxts7E5TELmN845xTUCQrD1xIQ==", "dev": true, "license": "MIT", "engines": { @@ -5628,14 +5628,14 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.16.0.tgz", - "integrity": "sha512-a5NTvk51ZndFuOLCh5OaJBELYc2O3Zqxfl3Js78VFE1zE46J2AaVuW+rEbVkQznjkmlzWsUI15BG5tQMixzZLw==", + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.16.1.tgz", + "integrity": "sha512-0vFPk8tMjj6apaAZ1HlwM8w7jbghC8jc1aRNJG5vN8Ym5miyhTQGMqU++kuBFDNKe9NcPeZ6x0zfSzV8xC1UlQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/types": "7.16.0", - "@typescript-eslint/visitor-keys": "7.16.0", + "@typescript-eslint/types": "7.16.1", + "@typescript-eslint/visitor-keys": "7.16.1", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -5673,16 +5673,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.16.0.tgz", - "integrity": "sha512-PqP4kP3hb4r7Jav+NiRCntlVzhxBNWq6ZQ+zQwII1y/G/1gdIPeYDCKr2+dH6049yJQsWZiHU6RlwvIFBXXGNA==", + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.16.1.tgz", + "integrity": "sha512-WrFM8nzCowV0he0RlkotGDujx78xudsxnGMBHI88l5J8wEhED6yBwaSLP99ygfrzAjsQvcYQ94quDwI0d7E1fA==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "7.16.0", - "@typescript-eslint/types": "7.16.0", - "@typescript-eslint/typescript-estree": "7.16.0" + "@typescript-eslint/scope-manager": "7.16.1", + "@typescript-eslint/types": "7.16.1", + "@typescript-eslint/typescript-estree": "7.16.1" }, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -5696,13 +5696,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.16.0.tgz", - "integrity": "sha512-rMo01uPy9C7XxG7AFsxa8zLnWXTF8N3PYclekWSrurvhwiw1eW88mrKiAYe6s53AUY57nTRz8dJsuuXdkAhzCg==", + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.16.1.tgz", + "integrity": "sha512-Qlzzx4sE4u3FsHTPQAAQFJFNOuqtuY0LFrZHwQ8IHK705XxBiWOFkfKRWu6niB7hwfgnwIpO4jTC75ozW1PHWg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "7.16.0", + "@typescript-eslint/types": "7.16.1", "eslint-visitor-keys": "^3.4.3" }, "engines": { @@ -12062,9 +12062,9 @@ } }, "node_modules/prettier": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz", - "integrity": "sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", "dev": true, "license": "MIT", "bin": { @@ -13481,9 +13481,9 @@ } }, "node_modules/tailwindcss": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.4.tgz", - "integrity": "sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==", + "version": "3.4.5", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.5.tgz", + "integrity": "sha512-DlTxttYcogpDfx3tf/8jfnma1nfAYi2cBUYV2YNoPPecwmO3YGiFlOX9D8tGAu+EDF38ryBzvrDKU/BLMsUwbw==", "dev": true, "license": "MIT", "dependencies": { @@ -13542,9 +13542,9 @@ } }, "node_modules/tailwindcss/node_modules/postcss-selector-parser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", - "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", + "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", "dev": true, "license": "MIT", "dependencies": { diff --git a/app/package.json b/app/package.json index 8e26274bc..30eb31c9b 100644 --- a/app/package.json +++ b/app/package.json @@ -24,11 +24,11 @@ "@t3-oss/env-nextjs": "0.10.1", "@tanstack/react-query": "5.51.1", "@tanstack/react-query-devtools": "5.51.1", - "@tanstack/react-table": "8.19.2", - "@trpc/client": "11.0.0-rc.456", - "@trpc/next": "11.0.0-rc.456", - "@trpc/react-query": "11.0.0-rc.456", - "@trpc/server": "11.0.0-rc.456", + "@tanstack/react-table": "8.19.3", + "@trpc/client": "11.0.0-rc.461", + "@trpc/next": "11.0.0-rc.461", + "@trpc/react-query": "11.0.0-rc.461", + "@trpc/server": "11.0.0-rc.461", "@uidotdev/usehooks": "2.4.1", "@unleash/nextjs": "1.4.4", "@vercel/analytics": "1.3.1", @@ -60,12 +60,12 @@ "devDependencies": { "@tailwindcss/typography": "0.5.13", "@types/eslint": "8.56.10", - "@types/lodash": "4.17.6", + "@types/lodash": "4.17.7", "@types/node": "20.14.10", "@types/react": "18.3.3", "@types/react-dom": "18.3.0", - "@typescript-eslint/eslint-plugin": "7.16.0", - "@typescript-eslint/parser": "7.16.0", + "@typescript-eslint/eslint-plugin": "7.16.1", + "@typescript-eslint/parser": "7.16.1", "@vitest/coverage-v8": "1.6.0", "autoprefixer": "10.4.19", "csv": "6.3.9", @@ -73,11 +73,11 @@ "eslint-config-next": "14.2.5", "eslint-plugin-react-compiler": "0.0.0", "postcss": "8.4.39", - "prettier": "3.3.2", + "prettier": "3.3.3", "prettier-plugin-organize-imports": "4.0.0", "prettier-plugin-tailwindcss": "0.6.5", "prisma": "5.16.2", - "tailwindcss": "3.4.4", + "tailwindcss": "3.4.5", "typescript": "5.5.3", "vercel": "35.1.0", "vitest": "1.6.0"