Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: release v6.172.0 #8015

Merged
merged 6 commits into from
Dec 23, 2024
Merged
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,23 @@ 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.172.0](https://github.com/opengovsg/FormSG/compare/v6.171.0...v6.172.0)

- fix(deps): bump next and react-email [`#8012`](https://github.com/opengovsg/FormSG/pull/8012)
- fix(deps): bump type-fest from 4.26.1 to 4.30.2 in /shared [`#8009`](https://github.com/opengovsg/FormSG/pull/8009)
- build(deps): bump next and react-email in /react-email-preview [`#8011`](https://github.com/opengovsg/FormSG/pull/8011)
- fix(workflow): set approval toggle header size to h4 [`#8010`](https://github.com/opengovsg/FormSG/pull/8010)
- build: merge release v6.171.0 to develop [`#8006`](https://github.com/opengovsg/FormSG/pull/8006)
- build: release v6.171.0 [`#8003`](https://github.com/opengovsg/FormSG/pull/8003)

#### [v6.171.0](https://github.com/opengovsg/FormSG/compare/v6.170.0...v6.171.0)

> 17 December 2024

- feat(myinfo-children): enable myinfo child on storage admin create page [`#7988`](https://github.com/opengovsg/FormSG/pull/7988)
- build: merge release v6.170.0 to develop [`#8001`](https://github.com/opengovsg/FormSG/pull/8001)
- build: release v6.170.0 [`#7998`](https://github.com/opengovsg/FormSG/pull/7998)
- chore: bump version to v6.171.0 [`089a155`](https://github.com/opengovsg/FormSG/commit/089a155a51691f98f7c06ff218da3a263d22086c)

#### [v6.170.0](https://github.com/opengovsg/FormSG/compare/v6.169.1...v6.170.0)

Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "form-frontend",
"version": "6.171.0",
"version": "6.172.0",
"homepage": ".",
"type": "module",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { useCallback, useState } from 'react'
import { Controller, UseFormReturn } from 'react-hook-form'
import { FormControl } from '@chakra-ui/react'

import { textStyles } from '~theme/textStyles'
import { SingleSelect } from '~components/Dropdown'
import FormErrorMessage from '~components/FormControl/FormErrorMessage'
import FormLabel from '~components/FormControl/FormLabel'
Expand Down Expand Up @@ -89,6 +90,7 @@ export const ApprovalsBlock = ({
isLoading={isLoading}
onChange={onApprovalToggleChange}
isChecked={isApprovalToggleChecked}
labelStyles={textStyles.h4}
label="This respondent is an approver"
description="If they select Yes, the form continues to the next step. If they select No, it stops here."
tooltipText="Use this for steps that involve any type of decision, such as reviews or endorsements"
Expand Down
Loading
Loading