Skip to content

Commit e30f9b2

Browse files
authored
Merge pull request #2737 from line/dev
release: 8.2617.111
2 parents 8f95c48 + 66f6dc7 commit e30f9b2

9 files changed

Lines changed: 381 additions & 335 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.14.0
1+
24.14.1

apps/api/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
},
2727
"prettier": "@ufb/prettier-config",
2828
"dependencies": {
29-
"@aws-sdk/client-s3": "^3.1014.0",
30-
"@aws-sdk/s3-request-presigner": "^3.1014.0",
29+
"@aws-sdk/client-s3": "^3.1015.0",
30+
"@aws-sdk/s3-request-presigner": "^3.1015.0",
3131
"@fastify/multipart": "^9.4.0",
3232
"@fastify/static": "^9.0.0",
3333
"@nestjs-modules/mailer": "^2.0.2",
@@ -62,7 +62,7 @@
6262
"exceljs": "^4.4.0",
6363
"fast-csv": "^5.0.5",
6464
"fastify": "^5.8.4",
65-
"joi": "^18.0.2",
65+
"joi": "^18.1.1",
6666
"luxon": "^3.7.2",
6767
"magic-bytes.js": "^1.13.0",
6868
"mysql2": "^3.20.0",
@@ -87,7 +87,7 @@
8787
"uuid": "^13.0.0"
8888
},
8989
"devDependencies": {
90-
"@faker-js/faker": "^10.3.0",
90+
"@faker-js/faker": "^10.4.0",
9191
"@nestjs/cli": "^11.0.16",
9292
"@nestjs/schematics": "^11.0.9",
9393
"@nestjs/testing": "^11.1.17",

apps/web/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
"@dnd-kit/modifiers": "^9.0.0",
2424
"@dnd-kit/sortable": "^10.0.0",
2525
"@dnd-kit/utilities": "^3.2.2",
26-
"@faker-js/faker": "^10.3.0",
26+
"@faker-js/faker": "^10.4.0",
2727
"@hookform/resolvers": "^5.2.2",
2828
"@number-flow/react": "^0.6.0",
2929
"@radix-ui/react-slider": "^1.3.6",
3030
"@t3-oss/env-nextjs": "^0.13.11",
31-
"@tanstack/react-query": "^5.95.0",
32-
"@tanstack/react-query-devtools": "^5.95.0",
31+
"@tanstack/react-query": "^5.95.2",
32+
"@tanstack/react-query-devtools": "^5.95.2",
3333
"@tanstack/react-table": "^8.21.3",
3434
"@toss/use-overlay": "^1.4.2",
3535
"@ufb/react": "workspace:*",

apps/web/src/pages/main/project/[projectId]/feedback.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ const FeedbackManagementPage: NextPageWithLayout<IProps> = (props) => {
4848
useCheckAIUsageLimit(projectId);
4949

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

5555
if (isLoading) {
5656
return (

docker/api.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The web Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker.
22
# Make sure you update this Dockerfile, the Dockerfile in the web workspace and copy that over to Dockerfile in the docs.
3-
FROM node:24.14.0-alpine AS base
3+
FROM node:24.14.1-alpine AS base
44

55
FROM base AS builder
66
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.

docker/docs.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM node:24.14.0-alpine AS base
2+
FROM node:24.14.1-alpine AS base
33

44
# ---- Builder Stage ----
55
FROM base AS builder

docker/web.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker.
22
# Make sure you update both files!
3-
FROM node:24.14.0-alpine AS base
3+
FROM node:24.14.1-alpine AS base
44

55
FROM base AS builder
66
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"packageManager": "pnpm@10.32.1",
55
"engines": {
6-
"node": ">=24.14.0",
6+
"node": ">=24.14.1",
77
"pnpm": "^10.32.1"
88
},
99
"scripts": {

pnpm-lock.yaml

Lines changed: 367 additions & 321 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)