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

PLATUI-2908: Updated hmrc-frontend version to pull in HmrcAccountMenu… #291

Merged
merged 1 commit into from
Apr 3, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
For compatibility information see `govukFrontendVersion` and `hmrcFrontendVersion` in
[LibDependencies](project/LibDependencies.scala)

## [9.5.0] - 2024-04-3

### Changed

- Pulled in styling fix for `HmrcAccountMenu` accessibility for Windows High Contrast Mode for submenu items

### Compatible with

- [hmrc/hmrc-frontend v6.14.0](https://github.com/hmrc/hmrc-frontend/releases/tag/v6.14.0)
- [alphagov/govuk-frontend v5.2.0](https://github.com/alphagov/govuk-frontend/releases/tag/v5.2.0)

## [9.4.0] - 2024-03-27

### Changed
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<div class="govuk-character-count" data-module="govuk-character-count" data-maxlength="10">

<div class="govuk-character-count" data-module="govuk-character-count" data-maxlength="10">
<div class="govuk-form-group" some-data-attribute="true" some-other-data-attribute="eleven">
<label class="govuk-label" for="with-formgroup">
With formgroup
</label>
<textarea class="govuk-textarea govuk-js-character-count" id="with-formgroup" name="with-formgroup" rows="5" aria-describedby="with-formgroup-info"></textarea>
</div>
<label class="govuk-label" for="with-formgroup">
With formgroup
</label>
<textarea class="govuk-textarea govuk-js-character-count" id="with-formgroup" name="with-formgroup" rows="5" aria-describedby="with-formgroup-info"></textarea>
</div>

<div id="with-formgroup-info" class="govuk-hint govuk-character-count__message">
You can enter up to 10 characters
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.11.0
6.14.0
2 changes: 1 addition & 1 deletion project/LibDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt._

object LibDependencies {
val govukFrontendVersion: String = "5.2.0"
val hmrcFrontendVersion: String = "6.11.0"
val hmrcFrontendVersion: String = "6.14.0"
val playLanguageVersion: String = "7.0.0"

val play28Version = "2.8.20"
Expand Down