Skip to content

Commit

Permalink
Merge pull request #5394 from alphagov/release-5.7.0
Browse files Browse the repository at this point in the history
Release v5.7.0
  • Loading branch information
owenatgov authored Oct 10, 2024
2 parents fe83aa4 + 9fb4b89 commit 663748a
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 20 deletions.
30 changes: 19 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ For advice on how to use these release notes see [our guidance on staying up to

## Unreleased

### New features
## v5.7.0 (Feature release)

#### New brand colours.
To install this version with npm, run `npm install govuk-frontend@5.7.0`. You can also find more information about [how to stay up to date](https://frontend.design-system.service.gov.uk/staying-up-to-date/#updating-to-the-latest-version) in our documentation.

We've added a brand colour for the Serious Fraud Office in [pull request #5389](https://github.com/alphagov/govuk-frontend/pull/5389).
### New features

#### The Royal Arms has been updated

The Royal Arms in the [GOV.UK footer](https://design-system.service.gov.uk/components/footer/) has been updated to reflect the version introduced by King Charles III.

You should ensure that the new image is being copied to your service's image assets folder if it's not being used directly from the Frontend package. By default this folder is located at `/assets/images`.
If your service does not use the image directly from the Frontend package, you should ensure the new image is being copied to your services image assets folder. By default this folder is located at `/assets/images`.

If you’re using Nunjucks, the asset path may have been changed by the `assetPath` global variable or `assetsPath` parameter on the header component.

Expand All @@ -24,7 +24,7 @@ You can safely delete the old image files, named `govuk-crest.png` and `govuk-cr

We introduced this change in [pull request #5376: Update the Royal Arms graphic in footer (v5.x)](https://github.com/alphagov/govuk-frontend/pull/5376).

#### Components can no longer be initialised twice on the same element
#### Components will not longer initialise twice on the same element

GOV.UK Frontend components now throw an error if they've already been initialised on the DOM Element they're receiving for initialisation.
This prevents components from being initialised more than once and therefore not working properly.
Expand All @@ -35,7 +35,7 @@ We introduced this change in [pull request #5272: Prevent multiple initialisatio

We've added a new `onError` option for `createAll` and `initAll` that lets you respond to initialisation errors.
The functions will continue catching errors and initialising components further down the page if one component fails to initialise,
but this option will let you react to a component failing to initialise (for example, reporting to an error monitoring service).
but this option will let you react to a component failing to initialise. For example, to allow reporting to an error monitoring service.

We introduced this change in:

Expand All @@ -44,19 +44,27 @@ We introduced this change in:

#### Check if GOV.UK Frontend is supported

We've added the `isSupported` function to let you check if GOV.UK Frontend is supported in the browser where your script is running.
GOV.UK Frontend components will check this automatically, but you may want to use the `isSupported` function to avoid running some code when GOV.UK Frontend is not supported.
We've added the `isSupported` function to let you check if GOV.UK Frontend is supported in the browser running your script.
GOV.UK Frontend components check this automatically, but you may want to use the `isSupported` function to avoid running some code when GOV.UK Frontend is not supported.

We introduced this change in [pull request #5250: Add `isSupported` to `all.mjs`](https://github.com/alphagov/govuk-frontend/pull/5250)

#### Use our base component to build your own components

We've added a `Component` class to help you build your own components. It allows you to focus on your components' specific features by handling these shared behaviours across components:

- Checking that GOV.UK Frontend is supported
- Checking that the component is not already initialised on its root element
- checking that GOV.UK Frontend is supported
- checking that the component is not already initialised on its root element
- checking the type of the root element and storing it for access within the component as `this.$root`

We introduced this change in:

- [pull request #5350: Export a base `Component` class](https://github.com/alphagov/govuk-frontend/pull/5350).
- [pull request #5354: Refactor the root type check in `GOVUKFrontendComponent`](https://github.com/alphagov/govuk-frontend/pull/5354)

We introduced this change in [pull request #5350: Export a base `Component` class](https://github.com/alphagov/govuk-frontend/pull/5350).
#### New brand colour

We've added a brand colour for the Serious Fraud Office in [pull request #5389](https://github.com/alphagov/govuk-frontend/pull/5389).

### Fixes

Expand Down
2 changes: 1 addition & 1 deletion dist/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.6.0
5.7.0
Binary file removed dist/assets/images/govuk-crest-2x.png
Binary file not shown.
Binary file removed dist/assets/images/govuk-crest.png
Binary file not shown.
1 change: 1 addition & 0 deletions dist/assets/images/govuk-crest.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions dist/govuk-frontend-5.6.0.min.css

This file was deleted.

1 change: 0 additions & 1 deletion dist/govuk-frontend-5.6.0.min.css.map

This file was deleted.

1 change: 0 additions & 1 deletion dist/govuk-frontend-5.6.0.min.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/govuk-frontend-5.6.0.min.js.map

This file was deleted.

3 changes: 3 additions & 0 deletions dist/govuk-frontend-5.7.0.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/govuk-frontend-5.7.0.min.css.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/govuk-frontend-5.7.0.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/govuk-frontend-5.7.0.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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 packages/govuk-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "govuk-frontend",
"description": "GOV.UK Frontend contains the code you need to start building a user interface for government platforms and services.",
"version": "5.6.0",
"version": "5.7.0",
"main": "dist/govuk/all.bundle.js",
"module": "dist/govuk/all.mjs",
"sass": "dist/govuk/all.scss",
Expand Down

0 comments on commit 663748a

Please sign in to comment.