Skip to content

Commit ccc4283

Browse files
authored
build: release v6.266.1 (#8866)
* fix: singpass myinfo box texts (#8865) updated myinfo fields infobox text to be independent of form being public * chore: bump version to 6.266.1
2 parents 8238d5f + 23f808d commit ccc4283

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [v6.266.1](https://github.com/opengovsg/FormSG/compare/v6.266.0...v6.266.1)
8+
9+
- chore: bump version to 6.266.1[`bc833275`](https://github.com/opengovsg/FormSG/commit/bc833275eb192ee9a5819689c57bfb08af092d00)
10+
- fix: singpass myinfo box texts [`#8865`](https://github.com/opengovsg/FormSG/pull/8865)
11+
- build: release v6.266.0 [`#8862`](https://github.com/opengovsg/FormSG/pull/8862)
12+
713
#### [v6.266.0](https://github.com/opengovsg/FormSG/compare/v6.265.0...v6.266.0)
814

15+
> 4 November 2025
16+
917
- feat: singpass with mrf first step [`#8729`](https://github.com/opengovsg/FormSG/pull/8729)
1018
- build: merge v6.265.0 back to develop [`#8861`](https://github.com/opengovsg/FormSG/pull/8861)
1119
- build: release v6.265.0 [`#8859`](https://github.com/opengovsg/FormSG/pull/8859)
1220
- build(deps): bump tar-fs from 2.1.3 to 2.1.4 in /frontend [`#8860`](https://github.com/opengovsg/FormSG/pull/8860)
21+
- chore: bump version to v6.266.0 [`c163fd9`](https://github.com/opengovsg/FormSG/commit/c163fd9cb060527e6976f33fc3746f82b708a395)
1322

1423
#### [v6.265.0](https://github.com/opengovsg/FormSG/compare/v6.264.0...v6.265.0)
1524

frontend/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "form-frontend",
3-
"version": "6.266.0",
3+
"version": "6.266.1",
44
"homepage": ".",
55
"type": "module",
66
"private": true,

frontend/src/features/admin-form/settings/components/AuthSettingsSection/AuthSettingsDisabledExplanationText.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ interface AuthSettingsDisabledExplanationTextProps {
1111
formResponseMode?: string
1212
}
1313

14-
const CONTAINS_MYINFO_FIELDS_DISABLED_EXPLANATION_TEXT =
15-
'To change any Singpass setting, close your form to new responses. For changes to your Singpass authentication mode, remove all existing Myinfo fields.'
1614
const FORM_IS_PUBLIC_DISABLED_EXPLANATION_TEXT =
1715
'To change Singpass settings, close your form to new responses.'
1816
const FORM_HAS_MYINFO_FIELDS =
@@ -34,9 +32,10 @@ export const AuthSettingsDisabledExplanationText = ({
3432

3533
if (isFormPublic) {
3634
infoboxTextArray.push(FORM_IS_PUBLIC_DISABLED_EXPLANATION_TEXT)
37-
if (containsMyInfoFields) {
38-
infoboxTextArray.push(FORM_HAS_MYINFO_FIELDS)
39-
}
35+
}
36+
37+
if (containsMyInfoFields) {
38+
infoboxTextArray.push(FORM_HAS_MYINFO_FIELDS)
4039
}
4140

4241
const infoboxTextComponent = infoboxTextArray.length ? (

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "FormSG",
33
"description": "Form Manager for Government",
4-
"version": "6.266.0",
4+
"version": "6.266.1",
55
"homepage": "https://form.gov.sg",
66
"authors": [
77
"FormSG <[email protected]>"

0 commit comments

Comments
 (0)