Skip to content
Open
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: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.14.0
24.14.1
8 changes: 4 additions & 4 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
},
"prettier": "@ufb/prettier-config",
"dependencies": {
"@aws-sdk/client-s3": "^3.1014.0",
"@aws-sdk/s3-request-presigner": "^3.1014.0",
"@aws-sdk/client-s3": "^3.1015.0",
"@aws-sdk/s3-request-presigner": "^3.1015.0",
"@fastify/multipart": "^9.4.0",
"@fastify/static": "^9.0.0",
"@nestjs-modules/mailer": "^2.0.2",
Expand Down Expand Up @@ -62,7 +62,7 @@
"exceljs": "^4.4.0",
"fast-csv": "^5.0.5",
"fastify": "^5.8.4",
"joi": "^18.0.2",
"joi": "^18.1.1",
"luxon": "^3.7.2",
"magic-bytes.js": "^1.13.0",
"mysql2": "^3.20.0",
Expand All @@ -87,7 +87,7 @@
"uuid": "^13.0.0"
},
"devDependencies": {
"@faker-js/faker": "^10.3.0",
"@faker-js/faker": "^10.4.0",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.17",
Expand Down
6 changes: 3 additions & 3 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@faker-js/faker": "^10.3.0",
"@faker-js/faker": "^10.4.0",
"@hookform/resolvers": "^5.2.2",
"@number-flow/react": "^0.6.0",
"@radix-ui/react-slider": "^1.3.6",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-query": "^5.95.0",
"@tanstack/react-query-devtools": "^5.95.0",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-query-devtools": "^5.95.2",
"@tanstack/react-table": "^8.21.3",
"@toss/use-overlay": "^1.4.2",
"@ufb/react": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/pages/main/project/[projectId]/feedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ const FeedbackManagementPage: NextPageWithLayout<IProps> = (props) => {
useCheckAIUsageLimit(projectId);

useEffect(() => {
if (!channels) return;
if (!channels || currentChannelId !== -1) return;
void setCurrentChannelId(channels.items[0]?.id ?? null);
}, [channels]);
}, [channels, currentChannelId]);

if (isLoading) {
return (
Expand Down
2 changes: 1 addition & 1 deletion docker/api.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The web Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker.
# Make sure you update this Dockerfile, the Dockerfile in the web workspace and copy that over to Dockerfile in the docs.
FROM node:24.14.0-alpine AS base
FROM node:24.14.1-alpine AS base

FROM base AS builder
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
Expand Down
2 changes: 1 addition & 1 deletion docker/docs.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM node:24.14.0-alpine AS base
FROM node:24.14.1-alpine AS base

# ---- Builder Stage ----
FROM base AS builder
Expand Down
2 changes: 1 addition & 1 deletion docker/web.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker.
# Make sure you update both files!
FROM node:24.14.0-alpine AS base
FROM node:24.14.1-alpine AS base

FROM base AS builder
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24.14.0",
"node": ">=24.14.1",
"pnpm": "^10.32.1"
},
"scripts": {
Expand Down
688 changes: 367 additions & 321 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading