Skip to content

Commit 58e6986

Browse files
authored
Release v1.53.1 (#1219)
2 parents 5cb1e09 + de3ef61 commit 58e6986

File tree

28 files changed

+728
-213
lines changed

28 files changed

+728
-213
lines changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
]
2626
},
2727
"overrides": {
28-
"axios": "1.11.0",
28+
"axios": "1.12.1",
2929
"graphql-rate-limit": {
3030
"@graphql-tools/utils": {
3131
"graphql": "16.11.0"
@@ -53,4 +53,4 @@
5353
"vitest": "^3.2.1",
5454
"wait-on": "^7.2.0"
5555
}
56-
}
56+
}

packages/backend/docker-compose.dev.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ services:
4242
environment:
4343
- TUNNEL_TOKEN=${CLOUDFLARE_TOKEN}
4444
minio:
45-
image: 'bitnami/minio:latest'
45+
image: 'bitnami/minio:2025.7.23'
46+
user: '0:0'
4647
ports:
4748
- '9000:9000'
4849
- '9001:9001'
@@ -58,7 +59,7 @@ services:
5859
interval: 1s
5960
retries: 5
6061
create-minio-buckets:
61-
image: bitnami/minio-client:latest
62+
image: bitnami/minio-client:2025.7.21
6263
volumes:
6364
- ../frontend/src/assets/plumber-logo.jpg:/assets/plumber-logo.jpg
6465
depends_on:
@@ -68,7 +69,7 @@ services:
6869
condition: service_healthy
6970
entrypoint: >
7071
/bin/bash -c "
71-
mc config host add plumber-minio http://minio:9000 minio-username minio-password &&
72+
mc alias set plumber-minio http://minio:9000 minio-username minio-password &&
7273
mc alias set local http://minio:9000 minio-username minio-password &&
7374
mc mb --ignore-existing plumber-minio/plumber-development-common-bucket &&
7475
echo 'bucket created' &&

packages/backend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"@taskforcesh/bullmq-pro": "7.7.1",
4444
"ajv-formats": "^2.1.1",
4545
"async-mutex": "0.4.0",
46-
"axios": "1.11.0",
46+
"axios": "1.12.1",
4747
"big.js": "6.2.1",
4848
"cookie-parser": "1.4.7",
4949
"copyfiles": "^2.4.1",
@@ -111,5 +111,5 @@
111111
"tsconfig-paths": "^4.2.0",
112112
"type-fest": "4.10.3"
113113
},
114-
"version": "1.53.0"
114+
"version": "1.53.1"
115115
}

packages/backend/src/apps/formsg/common/process-table-field.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ type TableColumn = {
99
value: string
1010
}
1111

12-
const createColumn = (label: string): TableColumn => {
13-
const id = Buffer.from(label).toString('hex')
12+
const createColumn = (label: string, index: number): TableColumn => {
13+
const id = Buffer.from(`Col ${index + 1}`).toString('hex')
1414
return {
15+
// NOTE: we keep this ID so that it still works even if the user tested
16+
// the step with mock data previously
1517
id,
1618
label,
1719
name: label,
@@ -29,8 +31,10 @@ export default function convertTableAnswerArrayToTableObject(
2931
const columns =
3032
// make sure that column names do not contain commas
3133
columnNamesArray.length === answerArray[0].length
32-
? columnNamesArray.map(createColumn)
33-
: answerArray[0].map((_, index) => createColumn(`Col ${index + 1}`))
34+
? columnNamesArray.map((column, index) => createColumn(column, index))
35+
: answerArray[0].map((_, index) =>
36+
createColumn(`Col ${index + 1}`, index),
37+
)
3438

3539
/**
3640
* NOTE: we do not show table rows that do not have any data

packages/backend/src/apps/m365-excel/actions/get-table-rows/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { dataOutSchema, parametersSchema } from './schemas'
1717
type DataOut = z.infer<typeof dataOutSchema>
1818

1919
const action: IRawAction = {
20-
name: 'Find table rows',
20+
name: 'Find multiple table rows',
2121
key: 'getTableRows',
2222
description: 'Gets multiple rows of data from your Excel table',
2323
isNew: true,

0 commit comments

Comments
 (0)