You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+19-11
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,17 @@ For advice on how to use these release notes see [our guidance on staying up to
4
4
5
5
## Unreleased
6
6
7
-
### New features
7
+
## v5.7.0 (Feature release)
8
8
9
-
#### New brand colours.
9
+
To install this version with npm, run `npm install [email protected]`. 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.
10
10
11
-
We've added a brand colour for the Serious Fraud Office in [pull request #5389](https://github.com/alphagov/govuk-frontend/pull/5389).
11
+
### New features
12
12
13
13
#### The Royal Arms has been updated
14
14
15
15
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.
16
16
17
-
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`.
17
+
If your service does not use the image directly from the Frontend package, you should ensure the new image is being copied to your service’s image assets folder. By default this folder is located at `/assets/images`.
18
18
19
19
If you’re using Nunjucks, the asset path may have been changed by the `assetPath` global variable or `assetsPath` parameter on the header component.
20
20
@@ -24,7 +24,7 @@ You can safely delete the old image files, named `govuk-crest.png` and `govuk-cr
24
24
25
25
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).
26
26
27
-
#### Components can no longer be initialised twice on the same element
27
+
#### Components will not longer initialise twice on the same element
28
28
29
29
GOV.UK Frontend components now throw an error if they've already been initialised on the DOM Element they're receiving for initialisation.
30
30
This prevents components from being initialised more than once and therefore not working properly.
@@ -35,7 +35,7 @@ We introduced this change in [pull request #5272: Prevent multiple initialisatio
35
35
36
36
We've added a new `onError` option for `createAll` and `initAll` that lets you respond to initialisation errors.
37
37
The functions will continue catching errors and initialising components further down the page if one component fails to initialise,
38
-
but this option will let you react to a component failing to initialise (for example, reporting to an error monitoring service).
38
+
but this option will let you react to a component failing to initialise. For example, to allow reporting to an error monitoring service.
39
39
40
40
We introduced this change in:
41
41
@@ -44,19 +44,27 @@ We introduced this change in:
44
44
45
45
#### Check if GOV.UK Frontend is supported
46
46
47
-
We've added the `isSupported` function to let you check if GOV.UK Frontend is supported in the browser where your script is running.
48
-
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.
47
+
We've added the `isSupported` function to let you check if GOV.UK Frontend is supported in the browser running your script.
48
+
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.
49
49
50
50
We introduced this change in [pull request #5250: Add `isSupported` to `all.mjs`](https://github.com/alphagov/govuk-frontend/pull/5250)
51
51
52
52
#### Use our base component to build your own components
53
53
54
54
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:
55
55
56
-
- Checking that GOV.UK Frontend is supported
57
-
- Checking that the component is not already initialised on its root element
56
+
- checking that GOV.UK Frontend is supported
57
+
- checking that the component is not already initialised on its root element
58
+
- checking the type of the root element and storing it for access within the component as `this.$root`
59
+
60
+
We introduced this change in:
61
+
62
+
- [pull request #5350: Export a base `Component` class](https://github.com/alphagov/govuk-frontend/pull/5350).
63
+
- [pull request #5354: Refactor the root type check in `GOVUKFrontendComponent`](https://github.com/alphagov/govuk-frontend/pull/5354)
58
64
59
-
We introduced this change in [pull request #5350: Export a base `Component` class](https://github.com/alphagov/govuk-frontend/pull/5350).
65
+
#### New brand colour
66
+
67
+
We've added a brand colour for the Serious Fraud Office in [pull request #5389](https://github.com/alphagov/govuk-frontend/pull/5389).
0 commit comments