From cbb4dc8f07f7add04dd7e6fb7ce8185b05806d51 Mon Sep 17 00:00:00 2001 From: Kevin Foong <55353265+kevin9foong@users.noreply.github.com> Date: Tue, 2 Dec 2025 16:53:34 +0800 Subject: [PATCH 1/7] feat: reserve cpu for formsg app (#8933) --- .github/workflows/deploy-ecs-prod.yml | 1 + .github/workflows/deploy-ecs-stg-alt.yml | 1 + .github/workflows/deploy-ecs-stg-alt2.yml | 1 + .github/workflows/deploy-ecs-stg-alt3.yml | 1 + .github/workflows/deploy-ecs-stg.yml | 1 + .github/workflows/deploy-ecs-uat.yml | 1 + .github/workflows/deploy-ecs.yml | 5 +++++ deploy/ecs-task-definition.json | 1 + 8 files changed, 12 insertions(+) diff --git a/.github/workflows/deploy-ecs-prod.yml b/.github/workflows/deploy-ecs-prod.yml index 2fe41ecc16..f5ed79df3e 100644 --- a/.github/workflows/deploy-ecs-prod.yml +++ b/.github/workflows/deploy-ecs-prod.yml @@ -26,6 +26,7 @@ jobs: ecr-repository: 'formsg' # ECS configuration ecs-cpu: 1024 + formsg-app-reserved-cpu: 896 ecs-memory: 4096 ecs-cluster-name: 'formsg-prod-ecs' ecs-service-name: 'formsg-prod-ecs-service' diff --git a/.github/workflows/deploy-ecs-stg-alt.yml b/.github/workflows/deploy-ecs-stg-alt.yml index bf9c82172e..67873b74e6 100644 --- a/.github/workflows/deploy-ecs-stg-alt.yml +++ b/.github/workflows/deploy-ecs-stg-alt.yml @@ -26,6 +26,7 @@ jobs: ecr-repository: 'formsg' # ECS configuration ecs-cpu: 1024 + formsg-app-reserved-cpu: 896 ecs-memory: 2048 ecs-cluster-name: 'formsg-stg-alt-ecs' ecs-service-name: 'formsg-stg-alt-ecs-service' diff --git a/.github/workflows/deploy-ecs-stg-alt2.yml b/.github/workflows/deploy-ecs-stg-alt2.yml index 9faaec9860..4453df99f9 100644 --- a/.github/workflows/deploy-ecs-stg-alt2.yml +++ b/.github/workflows/deploy-ecs-stg-alt2.yml @@ -26,6 +26,7 @@ jobs: ecr-repository: 'formsg' # ECS configuration ecs-cpu: 1024 + formsg-app-reserved-cpu: 896 ecs-memory: 2048 ecs-cluster-name: 'formsg-stg-alt2-ecs' ecs-service-name: 'formsg-stg-alt2-ecs-service' diff --git a/.github/workflows/deploy-ecs-stg-alt3.yml b/.github/workflows/deploy-ecs-stg-alt3.yml index 6833941323..8e195029db 100644 --- a/.github/workflows/deploy-ecs-stg-alt3.yml +++ b/.github/workflows/deploy-ecs-stg-alt3.yml @@ -26,6 +26,7 @@ jobs: ecr-repository: 'formsg' # ECS configuration ecs-cpu: 1024 + formsg-app-reserved-cpu: 896 ecs-memory: 2048 ecs-cluster-name: 'formsg-stg-alt3-ecs' ecs-service-name: 'formsg-stg-alt3-ecs-service' diff --git a/.github/workflows/deploy-ecs-stg.yml b/.github/workflows/deploy-ecs-stg.yml index 700973159b..995ee212f3 100644 --- a/.github/workflows/deploy-ecs-stg.yml +++ b/.github/workflows/deploy-ecs-stg.yml @@ -26,6 +26,7 @@ jobs: ecr-repository: 'formsg' # ECS configuration ecs-cpu: 1024 + formsg-app-reserved-cpu: 896 ecs-memory: 2048 ecs-cluster-name: 'formsg-stg-ecs' ecs-service-name: 'formsg-stg-ecs-service' diff --git a/.github/workflows/deploy-ecs-uat.yml b/.github/workflows/deploy-ecs-uat.yml index a0c71c7830..50e584bcbe 100644 --- a/.github/workflows/deploy-ecs-uat.yml +++ b/.github/workflows/deploy-ecs-uat.yml @@ -26,6 +26,7 @@ jobs: ecr-repository: 'formsg' # ECS configuration ecs-cpu: 1024 + formsg-app-reserved-cpu: 896 ecs-memory: 2048 ecs-cluster-name: 'formsg-uat-ecs' ecs-service-name: 'formsg-uat-ecs-service' diff --git a/.github/workflows/deploy-ecs.yml b/.github/workflows/deploy-ecs.yml index 139da5098a..a212782071 100644 --- a/.github/workflows/deploy-ecs.yml +++ b/.github/workflows/deploy-ecs.yml @@ -71,6 +71,10 @@ on: description: 'FormSG SDK mode' required: true type: string + formsg-app-reserved-cpu: + description: 'FormSG app reserved CPU units' + required: true + type: number dd-env: description: 'Datadog environment' required: true @@ -184,6 +188,7 @@ jobs: run: | sed -i "s//${{ secrets.aws-account-id }}/g" ${{ inputs.ecs-task-definition-path }} sed -i 's//${{ inputs.dd-env }}/g' ${{ inputs.ecs-task-definition-path }} + sed -i 's//${{ inputs.formsg-app-reserved-cpu }}/g' ${{ inputs.ecs-task-definition-path }} sed -i 's//${{ inputs.ecs-cpu }}/g' ${{ inputs.ecs-task-definition-path }} sed -i 's//${{ inputs.ecs-memory }}/g' ${{ inputs.ecs-task-definition-path }} sed -i 's//${{ inputs.environment-site-name }}/g' ${{ inputs.ecs-task-definition-path }} diff --git a/deploy/ecs-task-definition.json b/deploy/ecs-task-definition.json index cf4e037f40..aba2508834 100644 --- a/deploy/ecs-task-definition.json +++ b/deploy/ecs-task-definition.json @@ -6,6 +6,7 @@ "portMappings": [ { "containerPort": 4545, "hostPort": 4545, "protocol": "tcp" } ], + "cpu": "", "environment": [ { "name": "DD_SERVICE", "value": "formsg" }, { "name": "DD_ENV", "value": "" } From 06b5de1d47a40eebf6f94946d2aa79093502aad6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Dec 2025 17:03:14 +0800 Subject: [PATCH 2/7] build(deps): bump mdast-util-to-hast from 13.1.0 to 13.2.1 in /frontend (#8934) Bumps [mdast-util-to-hast](https://github.com/syntax-tree/mdast-util-to-hast) from 13.1.0 to 13.2.1. - [Release notes](https://github.com/syntax-tree/mdast-util-to-hast/releases) - [Commits](https://github.com/syntax-tree/mdast-util-to-hast/compare/13.1.0...13.2.1) --- updated-dependencies: - dependency-name: mdast-util-to-hast dependency-version: 13.2.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend/package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 5f13c6152c..ab5539b189 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -13132,9 +13132,9 @@ } }, "node_modules/mdast-util-to-hast": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.1.0.tgz", - "integrity": "sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==", + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", "dependencies": { "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", @@ -28872,9 +28872,9 @@ } }, "mdast-util-to-hast": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.1.0.tgz", - "integrity": "sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==", + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", "requires": { "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", From dfce2200a679ca0e3ddef3496979857b8f70633a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Dec 2025 09:07:19 +0800 Subject: [PATCH 3/7] fix(deps): bump validator from 13.15.20 to 13.15.23 (#8937) Bumps [validator](https://github.com/validatorjs/validator.js) from 13.15.20 to 13.15.23. - [Release notes](https://github.com/validatorjs/validator.js/releases) - [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/validatorjs/validator.js/compare/13.15.20...13.15.23) --- updated-dependencies: - dependency-name: validator dependency-version: 13.15.23 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index d6adb76b76..17304e6dbc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -106,7 +106,7 @@ "ulid": "^2.3.0", "uuid": "^11.1.0", "uuid-by-string": "^4.0.0", - "validator": "^13.15.20", + "validator": "^13.15.23", "winston": "^3.13.0", "winston-cloudwatch": "^6.3.0", "zod": "^3.24.3" @@ -23645,9 +23645,9 @@ } }, "node_modules/validator": { - "version": "13.15.20", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.15.20.tgz", - "integrity": "sha512-KxPOq3V2LmfQPP4eqf3Mq/zrT0Dqp2Vmx2Bn285LwVahLc+CsxOM0crBHczm8ijlcjZ0Q5Xd6LW3z3odTPnlrw==", + "version": "13.15.23", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.15.23.tgz", + "integrity": "sha512-4yoz1kEWqUjzi5zsPbAS/903QXSYp0UOtHsPpp7p9rHAw/W+dkInskAE386Fat3oKRROwO98d9ZB0G4cObgUyw==", "license": "MIT", "engines": { "node": ">= 0.10" diff --git a/package.json b/package.json index 57576acf38..f61d06a550 100644 --- a/package.json +++ b/package.json @@ -153,7 +153,7 @@ "ulid": "^2.3.0", "uuid": "^11.1.0", "uuid-by-string": "^4.0.0", - "validator": "^13.15.20", + "validator": "^13.15.23", "winston": "^3.13.0", "winston-cloudwatch": "^6.3.0", "zod": "^3.24.3" From 7a6296ac67da46bbfb47840774cdd3d7d2008df5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Dec 2025 09:07:39 +0800 Subject: [PATCH 4/7] build(deps): bump validator from 13.15.20 to 13.15.22 in /frontend (#8936) Bumps [validator](https://github.com/validatorjs/validator.js) from 13.15.20 to 13.15.22. - [Release notes](https://github.com/validatorjs/validator.js/releases) - [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/validatorjs/validator.js/compare/13.15.20...13.15.22) --- updated-dependencies: - dependency-name: validator dependency-version: 13.15.22 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend/package-lock.json | 14 +++++++------- frontend/package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index ab5539b189..5c2d8718cb 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -95,7 +95,7 @@ "type-fest": "^4.17.0", "typescript": "^5.4.5", "use-draggable-scroll": "^0.1.0", - "validator": "^13.15.20", + "validator": "^13.15.22", "vite-plugin-node-stdlib-browser": "^0.2.1", "zustand": "^4.1.1" }, @@ -18743,9 +18743,9 @@ "integrity": "sha512-OZeJfZP+R0z9D6TmBgLq2LHzSSptGMGDGigGiEe0pr8UBe/7fdflgHlHBNDASTXB5jnFuxHpNaJywSg8YFeGng==" }, "node_modules/validator": { - "version": "13.15.20", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.15.20.tgz", - "integrity": "sha512-KxPOq3V2LmfQPP4eqf3Mq/zrT0Dqp2Vmx2Bn285LwVahLc+CsxOM0crBHczm8ijlcjZ0Q5Xd6LW3z3odTPnlrw==", + "version": "13.15.22", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.15.22.tgz", + "integrity": "sha512-uT/YQjiyLJP7HSrv/dPZqK9L28xf8hsNca01HSz1dfmI0DgMfjopp1rO/z13NeGF1tVystF0Ejx3y4rUKPw+bQ==", "engines": { "node": ">= 0.10" } @@ -32753,9 +32753,9 @@ "integrity": "sha512-OZeJfZP+R0z9D6TmBgLq2LHzSSptGMGDGigGiEe0pr8UBe/7fdflgHlHBNDASTXB5jnFuxHpNaJywSg8YFeGng==" }, "validator": { - "version": "13.15.20", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.15.20.tgz", - "integrity": "sha512-KxPOq3V2LmfQPP4eqf3Mq/zrT0Dqp2Vmx2Bn285LwVahLc+CsxOM0crBHczm8ijlcjZ0Q5Xd6LW3z3odTPnlrw==" + "version": "13.15.22", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.15.22.tgz", + "integrity": "sha512-uT/YQjiyLJP7HSrv/dPZqK9L28xf8hsNca01HSz1dfmI0DgMfjopp1rO/z13NeGF1tVystF0Ejx3y4rUKPw+bQ==" }, "vary": { "version": "1.1.2", diff --git a/frontend/package.json b/frontend/package.json index 24368160fa..6a58438fd3 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -91,7 +91,7 @@ "type-fest": "^4.17.0", "typescript": "^5.4.5", "use-draggable-scroll": "^0.1.0", - "validator": "^13.15.20", + "validator": "^13.15.22", "vite-plugin-node-stdlib-browser": "^0.2.1", "zustand": "^4.1.1" }, From 9724e53f6c8f722430da96a7bd68615d389d635d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Dec 2025 09:08:46 +0800 Subject: [PATCH 5/7] fix(deps): bump libphonenumber-js from 1.12.29 to 1.12.31 in /shared (#8935) Bumps [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) from 1.12.29 to 1.12.31. - [Changelog](https://gitlab.com/catamphetamine/libphonenumber-js/blob/master/CHANGELOG.md) - [Commits](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.12.29...v1.12.31) --- updated-dependencies: - dependency-name: libphonenumber-js dependency-version: 1.12.31 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- shared/package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shared/package-lock.json b/shared/package-lock.json index 529d798e9e..6db77c1d07 100644 --- a/shared/package-lock.json +++ b/shared/package-lock.json @@ -779,9 +779,9 @@ } }, "node_modules/libphonenumber-js": { - "version": "1.12.29", - "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.12.29.tgz", - "integrity": "sha512-P2aLrbeqHbmh8+9P35LXQfXOKc7XJ0ymUKl7tyeyQjdRNfzunXWxQXGc4yl3fUf28fqLRfPY+vIVvFXK7KEBTw==", + "version": "1.12.31", + "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.12.31.tgz", + "integrity": "sha512-Z3IhgVgrqO1S5xPYM3K5XwbkDasU67/Vys4heW+lfSBALcUZjeIIzI8zCLifY+OCzSq+fpDdywMDa7z+4srJPQ==", "license": "MIT" }, "node_modules/lie": { From 0af9da8e44841a1440dcbc19f37f3ad20790fcb7 Mon Sep 17 00:00:00 2001 From: scottheng96 <44297674+scottheng96@users.noreply.github.com> Date: Wed, 3 Dec 2025 09:13:25 +0800 Subject: [PATCH 6/7] fix: replace id with _id for text and vision mfb prompts (#8530) replace id with _id for text and vision mfb prompts --- .../modules/form/admin-form/admin-form.assistance.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/modules/form/admin-form/admin-form.assistance.service.ts b/src/app/modules/form/admin-form/admin-form.assistance.service.ts index 6bc717dc3c..3aed2dbf81 100644 --- a/src/app/modules/form/admin-form/admin-form.assistance.service.ts +++ b/src/app/modules/form/admin-form/admin-form.assistance.service.ts @@ -311,7 +311,7 @@ export const createFormFieldsUsingTextPrompt = ({ > => { return generateAndsendTextPromptToModel({ userPrompt, - formId: form.id, + formId: form._id, }) .andThen((modelResponse) => { if (!modelResponse) { @@ -496,7 +496,7 @@ export const createFormFieldsUsingVisionPrompt = ({ | FieldNotFoundError > => { return generateAndSendVisionPromptToModel({ - formId: form.id, + formId: form._id, imageDataUrls, }) .andThen((modelResponse) => { From 676e2d2553894cb6f49a59b450692c1f69677a9f Mon Sep 17 00:00:00 2001 From: Kevin Foong <55353265+kevin9foong@users.noreply.github.com> Date: Wed, 3 Dec 2025 09:19:24 +0800 Subject: [PATCH 7/7] chore: bump version to v6.276.0 --- CHANGELOG.md | 40 +++++++++++++++++++++++++------------- frontend/package-lock.json | 4 ++-- frontend/package.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 32 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc19d94537..e52365fe23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,17 +4,25 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -#### [v6.275.0](https://github.com/opengovsg/FormSG/compare/v6.275.0...v6.275.0) +#### [v6.276.0](https://github.com/opengovsg/FormSG/compare/v6.275.0...v6.276.0) -- chore: remove clamav [`#8914`](https://github.com/opengovsg/FormSG/pull/8914) +- fix: replace id with _id for text and vision mfb prompts [`#8530`](https://github.com/opengovsg/FormSG/pull/8530) +- fix(deps): bump libphonenumber-js from 1.12.29 to 1.12.31 in /shared [`#8935`](https://github.com/opengovsg/FormSG/pull/8935) +- build(deps): bump validator from 13.15.20 to 13.15.22 in /frontend [`#8936`](https://github.com/opengovsg/FormSG/pull/8936) +- fix(deps): bump validator from 13.15.20 to 13.15.23 [`#8937`](https://github.com/opengovsg/FormSG/pull/8937) +- build(deps): bump mdast-util-to-hast from 13.1.0 to 13.2.1 in /frontend [`#8934`](https://github.com/opengovsg/FormSG/pull/8934) +- feat: reserve cpu for formsg app [`#8933`](https://github.com/opengovsg/FormSG/pull/8933) +- build: merge v6.275.0 back to develop [`#8927`](https://github.com/opengovsg/FormSG/pull/8927) +- build: release v6.275.0 [`#8926`](https://github.com/opengovsg/FormSG/pull/8926) #### [v6.275.0](https://github.com/opengovsg/FormSG/compare/v6.274.0...v6.275.0) > 27 November 2025 +- chore: remove clamav [`#8914`](https://github.com/opengovsg/FormSG/pull/8914) - build: merge v6.274.0 back to develop [`#8924`](https://github.com/opengovsg/FormSG/pull/8924) - build: release v6.274.0 [`#8923`](https://github.com/opengovsg/FormSG/pull/8923) -- chore: bump version to v6.275.0 [`589c458`](https://github.com/opengovsg/FormSG/commit/589c458848a15d4ba4426be63235319364b0fef0) +- chore: bump version to v6.275.0 [`6fb3fb2`](https://github.com/opengovsg/FormSG/commit/6fb3fb26605e231f51a8e67c4bf21636cc353676) #### [v6.274.0](https://github.com/opengovsg/FormSG/compare/v6.273.0...v6.274.0) @@ -386,6 +394,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - build(deps): bump next from 15.3.4 to 15.5.2 in /react-email-preview [`#8660`](https://github.com/opengovsg/FormSG/pull/8660) - fix(deps): bump next from 15.3.4 to 15.5.2 [`#8661`](https://github.com/opengovsg/FormSG/pull/8661) - build(deps-dev): bump vite from 5.4.19 to 5.4.20 in /frontend [`#8686`](https://github.com/opengovsg/FormSG/pull/8686) +- fix: home number fields are added to the draft despite not being modified [`#8704`](https://github.com/opengovsg/FormSG/pull/8704) - Revert "feat: save draft v1.0 (#8091)" [`ef00908`](https://github.com/opengovsg/FormSG/commit/ef00908c4fa711b8022f06a59595d13ec24d2963) - Revert "fix: home number fields are added to the draft despite not being modified (#8704)" [`8ceffce`](https://github.com/opengovsg/FormSG/commit/8ceffce1e0485fa4623cb941dd1042f73bedd5f6) - chore: bump version to v6.242.0 [`49cfc58`](https://github.com/opengovsg/FormSG/commit/49cfc582734a9110861ec37aa14932753639e334) @@ -394,11 +403,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 16 September 2025 -- fix: home number fields are added to the draft despite not being modified [`#8704`](https://github.com/opengovsg/FormSG/pull/8704) - feat: save draft v1.0 [`#8091`](https://github.com/opengovsg/FormSG/pull/8091) - build: merge release v6.240.0 to develop [`#8695`](https://github.com/opengovsg/FormSG/pull/8695) - build: release v6.240.0 [`#8693`](https://github.com/opengovsg/FormSG/pull/8693) -- chore: bump version to v6.241.0 [`13345f3`](https://github.com/opengovsg/FormSG/commit/13345f3eabe3c954d90b8ec10ca4e15c6b709b68) +- chore: bump version to v6.241.0 [`8572128`](https://github.com/opengovsg/FormSG/commit/8572128021278843f40d95dd30722a2f81370e5d) #### [v6.240.0](https://github.com/opengovsg/FormSG/compare/v6.239.0...v6.240.0) @@ -1224,6 +1232,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - build: merge release v6.178.2 to develop [`#8111`](https://github.com/opengovsg/FormSG/pull/8111) - build: release v6.178.2 [`#8110`](https://github.com/opengovsg/FormSG/pull/8110) - fix: also match amount paid [`#8109`](https://github.com/opengovsg/FormSG/pull/8109) +- fix: hawkeye v1.0 pending response at missing bug [`#8106`](https://github.com/opengovsg/FormSG/pull/8106) +- chore: remove coverage restriction, inspect through datadog instead [`#8100`](https://github.com/opengovsg/FormSG/pull/8100) - chore: bump version to v6.179.0 [`1247426`](https://github.com/opengovsg/FormSG/commit/1247426080ba2254a33c8efb3deb51c6cd9f7e9e) - chore: bump version to v6.178.2 [`618bdff`](https://github.com/opengovsg/FormSG/commit/618bdffa52a73fca82c53283ee7868390af42c91) - chore: bump version to v6.180.0 [`13b3fc4`](https://github.com/opengovsg/FormSG/commit/13b3fc4c696810eb1c58a54edf4d583894022b52) @@ -1232,15 +1242,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 13 February 2025 -- fix: hawkeye v1.0 pending response at missing bug [`#8106`](https://github.com/opengovsg/FormSG/pull/8106) -- chore: remove coverage restriction, inspect through datadog instead [`#8100`](https://github.com/opengovsg/FormSG/pull/8100) - feat: address field [`#7966`](https://github.com/opengovsg/FormSG/pull/7966) - feat(mrf-admin-view): hawkeye v1.0 [`#7965`](https://github.com/opengovsg/FormSG/pull/7965) - fix(deps): bump zod from 3.24.1 to 3.24.2 in /shared [`#8101`](https://github.com/opengovsg/FormSG/pull/8101) - fix: failing test for new joi validation [`#8098`](https://github.com/opengovsg/FormSG/pull/8098) - build: release v6.178.1 to develop [`#8096`](https://github.com/opengovsg/FormSG/pull/8096) - build: merge release v6.178.0 to develop [`#8093`](https://github.com/opengovsg/FormSG/pull/8093) -- chore: bump version to v6.179.0 [`9ace3f2`](https://github.com/opengovsg/FormSG/commit/9ace3f23a41f089356ba43013a71d5e996748777) +- chore: bump version to v6.179.0 [`affeb5f`](https://github.com/opengovsg/FormSG/commit/affeb5f3ed0c9add243c763ebf02905f35e91bca) #### [v6.178.2](https://github.com/opengovsg/FormSG/compare/v6.178.1...v6.178.2) @@ -1311,21 +1319,24 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - * fix(deps): bump libphonenumber-js from 1.11.16 to 1.11.17 in /shared (#8021) [`#8039`](https://github.com/opengovsg/FormSG/pull/8039) - fix(deps): bump zod from 3.23.8 to 3.24.1 in /shared [`#7996`](https://github.com/opengovsg/FormSG/pull/7996) - fix(deps): bump type-fest from 4.30.2 to 4.32.0 in /shared [`#8037`](https://github.com/opengovsg/FormSG/pull/8037) +- fix: set limit to 250kb for whitelist [`#8043`](https://github.com/opengovsg/FormSG/pull/8043) +- build: merge release v6.173.1 to develop [`#8044`](https://github.com/opengovsg/FormSG/pull/8044) +- build: release v6.173.1 [`#8042`](https://github.com/opengovsg/FormSG/pull/8042) +- fix: remove multer [`#8041`](https://github.com/opengovsg/FormSG/pull/8041) +- chore: bump version to v6.174.0 [`d3ee082`](https://github.com/opengovsg/FormSG/commit/d3ee082079a5a658aefb3821eb608b8497985bc5) +- chore: bump version to v6.173.1 [`70fd33a`](https://github.com/opengovsg/FormSG/commit/70fd33aa01b398f98f2b2dfee6880cd043889cc1) - chore: bump version to v6.175.0 [`d31bb97`](https://github.com/opengovsg/FormSG/commit/d31bb9717625d365d6798a51d8235b5acdab706c) #### [v6.174.0](https://github.com/opengovsg/FormSG/compare/v6.173.1...v6.174.0) > 13 January 2025 -- fix: set limit to 250kb for whitelist [`#8043`](https://github.com/opengovsg/FormSG/pull/8043) -- build: merge release v6.173.1 to develop [`#8044`](https://github.com/opengovsg/FormSG/pull/8044) -- build: release v6.173.1 [`#8042`](https://github.com/opengovsg/FormSG/pull/8042) - fix: only show fixed translations for supported forms [`#8038`](https://github.com/opengovsg/FormSG/pull/8038) - feat(iframe): add frame messaging for paysg [`#7979`](https://github.com/opengovsg/FormSG/pull/7979) - chore: mongoose, nanoid packages update [`#8000`](https://github.com/opengovsg/FormSG/pull/8000) - build: merge release v6.173.0 to develop [`#8034`](https://github.com/opengovsg/FormSG/pull/8034) - fix(deps): bump libphonenumber-js from 1.11.16 to 1.11.17 in /shared [`#8021`](https://github.com/opengovsg/FormSG/pull/8021) -- chore: bump version to v6.174.0 [`d3ee082`](https://github.com/opengovsg/FormSG/commit/d3ee082079a5a658aefb3821eb608b8497985bc5) +- chore: bump version to v6.174.0 [`22b1122`](https://github.com/opengovsg/FormSG/commit/22b1122e8e15dbb8ca4c69c1d6c026a865d3b67c) #### [v6.173.1](https://github.com/opengovsg/FormSG/compare/v6.173.0...v6.173.1) @@ -1333,18 +1344,19 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - fix: remove multer [`#8041`](https://github.com/opengovsg/FormSG/pull/8041) - * fix(deps): bump fp-ts from 2.16.8 to 2.16.9 (#8017) [`#8027`](https://github.com/opengovsg/FormSG/pull/8027) +- fix: update mongodb binary version to 6 [`#8032`](https://github.com/opengovsg/FormSG/pull/8032) - chore: bump version to v6.173.1 [`70fd33a`](https://github.com/opengovsg/FormSG/commit/70fd33aa01b398f98f2b2dfee6880cd043889cc1) +- chore: bump version to v6.173.0 [`54e544d`](https://github.com/opengovsg/FormSG/commit/54e544d9835af07fbcd2b0218ed522c26b18fa5e) #### [v6.173.0](https://github.com/opengovsg/FormSG/compare/v6.172.0...v6.173.0) > 7 January 2025 -- fix: update mongodb binary version to 6 [`#8032`](https://github.com/opengovsg/FormSG/pull/8032) - feat: multi lang feature [`#8022`](https://github.com/opengovsg/FormSG/pull/8022) - fix(deps): bump fp-ts from 2.16.8 to 2.16.9 [`#8017`](https://github.com/opengovsg/FormSG/pull/8017) - build: merge release v6.172.0 to develop [`#8016`](https://github.com/opengovsg/FormSG/pull/8016) - build: release v6.172.0 [`#8015`](https://github.com/opengovsg/FormSG/pull/8015) -- chore: bump version to v6.173.0 [`54e544d`](https://github.com/opengovsg/FormSG/commit/54e544d9835af07fbcd2b0218ed522c26b18fa5e) +- chore: bump version to v6.173.0 [`1cb7772`](https://github.com/opengovsg/FormSG/commit/1cb7772374249830091d1fb3278a035957d23bcb) #### [v6.172.0](https://github.com/opengovsg/FormSG/compare/v6.171.0...v6.172.0) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 5c2d8718cb..ebfc4e660f 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "form-frontend", - "version": "6.275.0", + "version": "6.276.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "form-frontend", - "version": "6.275.0", + "version": "6.276.0", "hasInstallScript": true, "dependencies": { "@chakra-ui/react": "^2.8.2", diff --git a/frontend/package.json b/frontend/package.json index 6a58438fd3..f314874633 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "form-frontend", - "version": "6.275.0", + "version": "6.276.0", "homepage": ".", "type": "module", "private": true, diff --git a/package-lock.json b/package-lock.json index 17304e6dbc..5446b631d5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "FormSG", - "version": "6.275.0", + "version": "6.276.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "FormSG", - "version": "6.275.0", + "version": "6.276.0", "hasInstallScript": true, "dependencies": { "@aws-sdk/client-cloudwatch-logs": "^3.758.0", diff --git a/package.json b/package.json index f61d06a550..1a55e42e2f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "FormSG", "description": "Form Manager for Government", - "version": "6.275.0", + "version": "6.276.0", "homepage": "https://form.gov.sg", "authors": [ "FormSG "