- #2005: Support user defined global functions Added support for user defined functions
- #1982: Remove require leading slash A leading slash is no longer required when creating a page from a template
- #1988: Auto update when settings created and removed The styling in a page will update automatically when the settings.scss file is created or removed
- #1974: Make sure install, upgrade and uninstall complete successfully.
- #2021: Fixing errors about session file store
- #1915: Move Task list template to Task list plugin The Task list template has been moved to the new Task list plugin
- #1923: Move Common templates to Common templates plugin The Common templates have been moved to the new Common templates plugin
- #1962: Make GOV.UK Notify client available as a plugin
- #1860: Create a git repository for new prototypes (when git is present) When creating a prototype, the kit now makes an initial Git commit for you. That saves you time, and makes a separation between the initial prototype files and any changes you make yourself. If you do not want the kit to do this, you can add --no-version-control to the create command.
- #1824: Add feature to manage plugins without using the command line You can now install, update and uninstall plugins in the Manage your prototype section, without having to use the terminal.
- #1876: Speed up performance by removing data encryption
- #1859: Allow sass to live update when there are square brackets in the path
- #1857: Migration will now report head and script failures
- #1849: Update dependencies
- #1847: Stop user's home path from being printed in migration script log
- #1846: Stop showing messages from session-file-store about deleting expired sessions
- #1841: Fix crashes when path to prototype contains spaces
- #1848: Improve path validation of template created pages
- #1836: Update broken link to layouts guidance
- #1833: Update content of backup homepage
- #1821: Always delete IE8 Sass files when migrating existing prototype
- #1818: Fix heading sizes in templates
- #1814: Stop express complaining if error occurs after res has been sent
- #1804: Fix previewing templates with JavaScript in management pages
- #1803: Stop installing dev dependencies when creating prototype
- #1796: Fix link to docs in routes.js
- #1791: Keep existing package name when migrating
In this release we’ve made some significant changes to how the GOV.UK Prototype Kit works.
These changes make the kit:
- more secure
- easier to use
- easier to update in the future
If you have an existing prototype and want to make the changes in this release, we recommend using the migration script to help with any breaking changes.
Migrate an existing prototype to version 13
If you need help with the Prototype Kit, contact the GOV.UK Prototype team.
The 2 biggest breaking changes to the Prototype Kit are you can now create a prototype:
- without downloading a zip file
- by using an npm command in the terminal
To run the kit, use npm run dev
(not npm start
).
- #1638: Make serve default command
To make the kit easier to update in the future, we have moved essential Prototype Kit files out of the users prototype folder and into the npm package.
- #1617: Making most files optional
This is alongside other work we've been doing that allows users to delete files they're not using.
The Prototype Kit no longer supports versions 12 or 14 of Node.js. We recommend you update to the latest LTS version Node.js 18
- #1753: Drop support for Node.js 12 and 14
How you create routes, filters and templates has changed. There is also a new approach to layouts.
The default user template for a new prototype has moved to app/views/layouts/main.html
.
- #1752
To help make these changes to an existing prototype, we have a migration script
How to migrate an existing prototype to version 13
You can no longer use the Prototype Kit with Internet Explorer 8
- #1394: Remove Internet Explorer 8 support
The Prototype Kit no longer includes the step by step pattern by default
- #1471: Update step by step and install it as an extension
The Prototype Kit no longer includes jQuery by default
- #1478: Remove jQuery from default installation
You can no longer use v6 compatibility mode
- #1432: Remove v6 backwards compatibility support
There is a new Manage your Prototype page in the kit. From this page you can:
-
add and change your service name
-
create new pages using templates
-
find and install plugins that work with the Prototype Kit
-
#1589: Create management pages
When creating a new prototype, you will always have the latest version of GOV.UK Frontend.
The latest version of GOV.UK Frontend is version 4.4.0.
Read the release notes
-
Guidance and documentation for the Prototype Kit is now at prototype-kit.service.gov.uk
-
There are 2 sets of guidance to support users:
- Using version 13: prototype-kit.service.gov.uk/docs/
- Using version 12 or before: prototype-kit.service.gov.uk/v12/docs/
-
You can no longer see the docs folder in your prototype
- #866: Remove docs from the Prototype Kit
If you need help with the Prototype Kit, contact the GOV.UK Prototype team.
- #1753: Drop support for Node.js 12, 14
- #1752: Move default user template to app/views/layouts/main.html
- #1640: Fixing govuk frontend until they release update We have made the plugin framework powerful enough to handle everything govuk-frontend needs but they haven't yet implemented their side of this, this change allows current and previous versions of govuk-frontend to work with the kit. You'll need to import components before you can use them until govuk-frontend release a version which imports them automatically.
- #1658: Use file store for session data
- When running locally the kit will now preserve user session data between restarts
- Option
useCookieSessionStore
is no longer supported
- #1638: Make serve default command
- Running
npm start
after creating starter prototype will now run 'production' command - Users now need to run
npm run dev
when they want to start their prototype on their local machine - We try and warn users in some circumstances where we think they may have run
npm start
accidentally
- Running
- #1617: Making most files optional This alongside other work we've been doing allows users of the kit to delete files they're not using.
- #1589: Create management pages Providing pages for the user to manage their prototype.
- #1615: Removing GOVUK Frontend specific integration GOV.UK Frontend now integrates in the same way as any other plugin can. We're allowing SASS settings to be set before the plugins run if they're put in app/assets/sass/settings.scss.
- #1572: Set up router Providing a way for users who want to set up routers now that the kit is a package.
- #1550: Allow extensions to add filters Adding the ability for extensions to add filters, providing an API for filters.
- #1522: Create home-office-branded.html template This changes the way layouts are used, it also means you'll need to import nunjucks macros before using them (code snippets from the design system have the import in them).
- #1533: Generate Starter Files This is a major change to the way the kit is used including:
- The kit is used as an NPM Module
- The public folder is no longer generated
- Assets and Javascript are served from their location in the app folder rather than being copied to a public folder
- Generated assets are all inside .tmp
- The core prototype-kit files have been moved into the package
- The start script uses the new govuk-prototype-kit cli
- To start a new kit the user will need to either run
npx govuk-prototype-kit create
or be provided the results of running this command in a zip format
- #1478: Remove jQuery from default installation
- A new prototype will no longer include jQuery
- If you need jQuery you can use it with
npm install jquery
- The kit will automatically add the jQuery script to all pages if it is installed as an npm package
- #1471: Update step by step and install it as an extension
- #1394: Remove Internet Explorer 8 support
- #1432: Remove v6 backwards compatibility support
- #1637: Add serve and dev scripts
- Add
govuk-prototype-kit dev
andgovuk-prototype-kit serve
commands - After creating prototype with starter files user can run
npm run dev
ornpm run serve
- Add
- #1476: Update to GOV.UK Frontend 4.2.0
- #1624: V13 pre refactor
- Add support for globals
- #1693: Add stylesheets block
- You can now add stylesheets to your layout or page by using the new
stylesheets
block - You can now add meta elements to your layout or page by using the new
meta
block - You can still use the
head
block, but we recommend you use one of the new blocks mentioned above to keep your layouts simpler
- You can now add stylesheets to your layout or page by using the new
The GOV.UK Prototype Kit now supports Node 18 LTS (long term support).
How to update to the latest version
This change was added in #1700: Allow Node 18 to be used.
This release updates the step by step pattern and ensures the GOV.UK Prototype Kit reflects the latest release of the GOV.UK Frontend, v4.3.1.
The step by step navigation pattern presents an end to end journey in logical steps, with links to content that helps users complete each step.
The changes to step by step bring the pattern in line with what is currently used on GOV.UK and make it into an extension.
If you are working on an old prototype and want to update the step by step pattern, update app/assets/sass/application.scss
to remove the old step by step pattern imports.
How to update to the latest version
It can be hard to update step by step if you currently use an older version of the pattern in your prototype.
You can keep the older version by installing the step by step extension version 1. In terminal type:
npm install @govuk-prototype-kit/[email protected]
This change was added in #1471: Update step by step and install it as an extension.
The new release of the GOV.UK Frontend contains:
- a new Pagination component, which can help users to navigate backwards and forwards through a series of pages
- pass HTML directly into compatible components
- improvements to the ‘Checkboxes’, ‘Radios’ and ‘Select’ components to let services select answers when the page loads by using the ‘values’ option.
- several fixes: some of these are to address issues with the component ES module JavaScript (introduced in v4.3.0)
If you want to use the new Pagination component, you will also need to update the layout.html
file in your prototype.
Check the GOV.UK Frontend release notes for changes you may need to make to ensure your prototype works.
These changes was added in:
- #2222: Update the Design System to use GOV.UK Frontend v4.2.0
- #2271 Update the Design System to use GOV.UK Frontend v4.3.0
- #2309: Update the Design System to use GOV.UK Front end v4.3.1
- Pull request #1269: Replace node-sass with Dart Sass. This should allow the kit to work on M1 Macs.
The Design System team has made some changes to GOV.UK Frontend. While these are not breaking changes, implementing them will mean your prototype uses the latest components.
Read the release notes for GOV.UK Frontend v4.0.1.
If you're not using Nunjucks macros, remove the tabindex
attribute from the error summary's HTML. The component JavaScript now adds and removes this attribute.
This change was introduced in pull request #2491: Prevent error summary from being refocused after it has been initially focused on page load.
If you need help with the Prototype Kit, contact the GOV.UK Prototype team.
This release ensures the GOV.UK Prototype Kit reflects the latest release of the GOV.UK Frontend, v4.0.0.
The new release of GOV.UK Frontend contains:
- an iteration to the accordion component
- other ‘breaking’ changes you should make to improve your service
Check the GOV.UK Frontend release notes for changes you may need to make to ensure your prototype works.
This change was added in #1195: Update the GOV.UK Prototype Kit to use GOV.UK Frontend v4.0.0.
The GOV.UK Prototype Kit now preserves URL query strings when redirecting POST requests to GET requests.
This means if you have a query like /link/to/something?query=true&hello=world
on your POST form action, and you submit the form, the URL query string will be present in the redirected URL.
This feature is useful when you:
- use the query string to set flash messages or return paths
- want to use the values in the query string for a specific page, rather than saved data
Thanks to @edwardhorsford for contributing this issue and its solution.
This was added in #1120: Preserve query string when redirecting POSTs to GETs.
If you need help with the Prototype Kit, contact the GOV.UK Prototype team.
We’ve recently experienced 2 security incidents involving common NPM packages used by the Prototype Kit. We’re sorry for the inconvenience this has caused.
We’ve added new measures (a package-lock.json file) to help prevent this in the future.
To protect your service from any similar threats in future, please upgrade to this new version of the Kit.
For any existing prototypes, follow the guide to update the kit.
Pull request #1143: Add a package-lock.json file.
You must make the following changes if you’re running Node.js 10 and you update to this release, or your prototype may break.
You can no longer run the GOV.UK Prototype Kit on Node.js 10.
If you currently run Node.js 10, you'll need to upgrade to a newer version.
We recommend using version 16. You can find more information on the Prototype Kit requirements page.
We have updated the Notify client library to version 5.1.0. This may break existing prototypes that are using the Notify client. Big thanks to David McDonald.
- Pull request #925: Upgrade Notify client library from 4.7.2 to 5.1.0. This may break existing prototypes which are using the Notify client. If you have any issues, please contact the GOV.UK Prototype Kit team.
- Pull request #1127: Update to Node 16 and drop support for Node 10
Added in Pull request #1108: Update to GOV.UK Frontend v3.14.0
This release contains:
- new override classes for text alignment
- changes to the
govuk-spacing
function to allow negative spacing - a fix for an accessibility issue with the panel component
We've added JavaScript to make the back link component take users to the previous page by default, rather than you having to update placeholder text.
If you want to use JavaScript in production, you must also use a non-JavaScript alternative, so you do not exclude any users. If you cannot use a non-JavaScript alternative, you should hide the back link when JavaScript is not available.
You can still override the href
attribute if you need to provide a solution that works when JavaScript is disabled.
This was added in Pull request #1103: Replace back link placeholder URLs with JavaScript
If you use the GOV.UK Prototype Kit, we recommend you update to use the latest version of Node.js 14 Long Term Support (LTS). This is to make sure you're protected from a recent security vulnerability in the npm (Node Package Manager).
To make sure you're using Node.js version 14.17.6 or later, follow the install instructions on the Prototype Kit website.
If you're using Node Version Manager (nvm), you can instead run nvm install
to install v14.17.6.
- Pull request #1036: Update to GOV.UK Frontend v3.13.1
- Pull request #1050: Do not swallow errors from
session-data-defaults.js
Previously, it was not obvious to users if Sass had stopped updating because of an error. An error would be printed to the command line, but nothing would happen in the browser. We know that this error was easy to miss, which could cause confusion.
Now, when there's a Sass error, the GOV.UK Prototype Kit creates a blank application.css
file to make the site look broken to users.
If you fix the Sass error, the site will automatically reload.
We have also changed the Gulp log level to be less detailed, so that errors stand out.
This was added in Pull request #990: Make Sass errors clearer to the user.
Links now have underlines that are consistently thinner and a bit further away from the link text.
Links also have a clearer hover state, where the underline gets thicker to make the link stand out to users.
The new link styles are opt-in because Chromium browsers have an issue with links inside a multi-column layout.
Read more about the new link styles in the GOV.UK Frontend release notes.
This was added in Pull request #1012: Implement the new link and hover styles in the Prototype Kit.
This was added in Pull request #1025: Update to GOV.UK Frontend v3.12.0
- Pull request #938: Update Marked module to fix security issue
- Pull request #944: Disable Browsersync ghostMode to stop interactions being mirrored across tabs and devices
- Pull request #948: Fix Sass files being copied to public directory
The task list pattern has been updated to make incomplete tasks clearer to users. This change has also been made to the pattern in the Design System.
If you're updating from an older version, in your app/assets/sass/patterns/task-list.scss
file add the line .app-task-list__tag,
before .app-task-list__task-completed {
:
.app-task-list__tag,
.app-task-list__task-completed {
This was added in pull request #907: Update Task List template
- Pull request #884: Bump nunjucks from v3.1.3 to v3.2.1
- Pull request #885: Update various dependencies and fix linting offences
You can now use patterns like step by step navigation and task lists in the unbranded template.
You do not need to do anything if you're installing this version for the first time.
If you're upgrading from an older version, make the following changes.
- In the
app/assets/sass/unbranded.scss
file, change@import "node_modules/govuk-frontend/govuk/all";
to@import "application";
. - In the
app/views/layout_unbranded.html
file, change{% extends "govuk/template.njk" %}
to{% extends "layout.html" %}
.
#842: Allow Kit specific patterns to be used with the unbranded template.
- Pull request #840: Update Kit to use latest active LTS Node.js version 12.x.
- Pull request #847: Update step by step patterns to latest.
This release updates GOV.UK Prototype Kit to v3.0.0 of GOV.UK Frontend.
In v3.0.0 of GOV.UK Frontend, we’ve made some important changes to improve the accessibility of pages. This includes making sure that the styles, components and patterns in GOV.UK Frontend meet WCAG 2.1 level AA.
You must follow our guidance on updating your version of the Prototype Kit.
If you need help updating or installing the Prototype Kit, you can:
- contact the GOV.UK Design System team
- talk to a developer on your team
You must make the following changes when you migrate to this release, or your prototype may break.
- Update files in the
/app
folder - unless you updated via the command line. - Update HTML in GOV.UK Frontend components.
If you’ve created custom code or components, read the release notes for GOV.UK Frontend v3.0.0 for more changes you may need to make.
To make sure GOV.UK Frontend's files do not conflict with your code, we've moved our package files into a directory called govuk
.
If you downloaded this version of the Prototype Kit as a zip file, you must:
- add an assets path in the Sass file
- replace old colours
- update asset paths
- update the layout file
- update the layout_unbranded file
Pull requests:
In the app/assets/sass/application.scss
file, add $govuk-assets-path: '/govuk/assets/';
at the top.
In the app/assets/sass/patterns/_step-by-step-navigation.scss
file, replace:
“grey-4”
with"light-grey", $legacy: "grey-4"
“grey-3”
with"light-grey", $legacy: "grey-3"
You must make this change even if you are not using the step by step navigation pattern in your prototype.
Read our blog post about why we changed the colour palette.
In the app/assets/sass/unbranded.scss
file, add govuk/
after govuk-frontend/
in the 3 @import
paths. For example:
@import "node_modules/govuk-frontend/govuk/settings/colours-palette";
- Go to the
app/views/layout.html
file. - Add
{%- set assetPath = '/govuk/assets' -%}
at the top. - Replace
{% extends "template.njk" %}
with{% extends "govuk/template.njk" %}
. - In each import line that starts
{% from
, addgovuk/components/
to the start of the file path. For example:
{% from "govuk/components/accordion/macro.njk" import govukAccordion %}
- Add
{% set mainClasses = mainClasses | default("govuk-main-wrapper--auto-spacing") %}
before{% if useAutoStoreData %}
In the app/views/layout_unbranded.html
file:
- Add
{%- set assetPath = '/govuk/assets' -%}
at the top. - Replace
{% extends "template.njk" %}
with{% extends "govuk/template.njk" %}
.
Pull request #769: Update to GOV.UK Frontend 3.0.0.
If you’re using HTML versions of GOV.UK Frontend components, add a govuk-
prefix to data-module
attribute values. For example:
<div class="govuk-accordion" data-module="govuk-accordion">
...
</div>
If you’re using HTML versions of the button or details component, add:
data-module="govuk-button"
to each<button>
HTML tagdata-module="govuk-details"
to each<details>
HTML tag
Pull request #1443: Ensure GOV.UK Frontend component selectors cannot conflict when initialised.
If you're using the HTML version of the character count component, change js-character-count
to govuk-js-character-count
.
Pull request #1444: Renames js-
css prefix to govuk-js-
.
If you've linked from an error summary component to the first input in a radios or checkboxes component, the link will no longer work.
This is because the id
of the first input no longer has the suffix -1
.
If there are links back to radios or checkboxes components in your error summary component, remove -1
from the end of the href
attribute.
Pull request #1426: Make radios and checkboxes components easier to link to from error summary.
If you’re using the HTML version of the tabs component, remove the govuk-tabs__tab--selected
class from the first tab's link, then add the govuk-tabs__list-item--selected
class to the link's parent list item.
For example:
<li class="govuk-tabs__list-item govuk-tabs__list-item--selected">
<a class="govuk-tabs__tab" href="#tab1">
Tab 1
</a>
</li>
Pull request #1496: Update the focus state for tabs.
Update every item in your task list, removing the app-task-list__task-name
class from the link and wrapping the link in a new <span class="app-task-list__task-name">
.
For example:
<li class="app-task-list__item">
<span class="app-task-list__task-name">
<a href="#" aria-describedby="eligibility-completed">
Check eligibility
</a>
</span>
</li>
Pull request #770: Update the task list focus state.
Start buttons have a new icon. Your start buttons will lose their current icons unless you replace the old icon with the new one.
If you're using Nunjucks:
- set the
isStartButton
option totrue
- remove the
.govuk-button--start
class
For example:
govukButton({
text: "Start now",
href: "#",
isStartButton: true
})
If you're using HTML, add the SVG code from the start button example in the Design System.
Pull request #1341: Add new start button icon.
The <main>
element in layouts now has a .govuk-main-wrapper--auto-spacing
class by default.
This will add the correct amount of padding above the content, depending on whether there are elements above the <main>
element inside the govuk-width-container
wrapper. Elements above the <main>
element could include a back link or breadcrumb component.
If govuk-main-wrapper--auto-spacing
does not work for your service, you can set the correct amount of padding by adding the .govuk-main-wrapper--l
class to your page or layout by using:
{% set mainClasses = "govuk-main-wrapper--l" %}
You can also turn off the .govuk-main-wrapper--auto-spacing
class by using:
{% set mainClasses = "" %}
If you want to continue using old colours in your prototype, you can turn on compatibility mode.
- #763 Fix a Sass compilation error in the unbranded stylesheet, which was introduced in 8.12.0.
- #760 Update to GOV.UK Frontend version 2.12.0 (See GOV.UK Frontend 2.12.0 release notes)
- #741 Update to GOV.UK Frontend version 2.11.0 (See GOV.UK Frontend 2.11.0 release notes)
- #722 Update to GOV.UK Frontend version 2.10.0 (See GOV.UK Frontend 2.10.0 release notes)
- #697 Only ask for usage permission if TTY. Thanks zuzak for this contribution.
- #712 Turn off npm default auditing.
- #701 Update to GOV.UK Frontend version 2.8.0 (See GOV.UK Frontend 2.8.0 release notes).
-
#613 Update to GOV.UK Frontend version 2.7.0 and adds experimental extensions feature (See GOV.UK Frontend 2.7.0 release notes). Big thanks @matcarey (https://github.com/matcarey) As this is an experimental feature it should be used at your own risk, and is likely to change. Please contact us if you're interested in trying it out.
- #680 Update to GOV.UK Frontend version 2.6.0 (See GOV.UK Frontend 2.6.0 release notes)
- #672 Replace ‘check answers’ pattern with updated code
- #671 Update to GOV.UK Frontend version 2.5.0 Allows use of new components Accordion and Summary List
- #663 update Standard to 12.0.1
- #640 Replace Mocha with Jest
- #659 Upgrade kit to use Gulp 4
- #664 Remove deprecated gulp-util
Also includes a new character-count component
- Add config to allow permanent session in cookie
- Allow nested field values in session
- Restart the app if environment variables change
- Make it more difficult to accidentally clear the session data
- Update GOV.UK Frontend to v1.3.0
- Rename and reorganise template pages to be easier to use
- Add kit version and link to footer
- Fix loading variables from .env
- Update link from question page template to design system
- Changed block name to bodyEnd to fix scripts in unbranded template
This release adds backwards compatibility, so you can use old prototypes made in v6 of the Prototype Kit in v7.
Read the guidance on using backwards compatibility
- #568 Update GOV.UK Frontend to 1.2.0
- #563 Add Nunjucks macro example to 'passing data' guidance
- #553 Add backwards compatibility - support for prototypes made in Version 6 of the Prototype Kit
- #557 Bump outdated dependencies:
- Update standard from 10.0.2 to 11.0.1 and fix violations
- Update run-sequence from 1.2.2 to 2.2.1
- Update require-dir from 0.3.2 to 1.0.0
- Update notifications-node-client from 3.0.0 to 4.1.0
- Update marked from 0.3.6 to 0.4.0
- Update gulp-sass from 3.1.0 to 4.0.1
- Update gulp-mocha from v4.3.1 to v6.0.0
- Update gulp-clean from 0.3.2 to 0.4.0
- Update express from 4.15.2 to 4.16.3
- Update dotenv from 4.0.0 to 6.0.0
- Update cross-spawn from 5.0.0 to 6.0.5
- Update basic-auth from 1.0.3 to 2.0.0
- #557 Remove unused readdir dependency
- #557 Fix a broken link in an error message
- #566 Improve error handling
- #556 Update branching example
- #536 Import missing component macros
- #532 Update repo links from govuk_prototype_kit to govuk-prototype-kit
- #540 Fix grid css classes on check-your-answers page
- #562 Change the syntax used to specify node engine versions to fix a bug that prevented prototypes from being deployed to a CloudFoundry instance, by
You will need to:
- update
app/views/includes/scripts.html
file and add the following line to include the JavaScript file
<script src="/node_modules/govuk-frontend/all.js"></script>
- modify
app/assets/javascripts/application.js
file to initialise the JavaScript
$(document).ready(function () {
window.GOVUKFrontend.initAll()
})
- #501 Add default session data
- #502 Add Cookies and Privacy policy text
- #521 Do not track users who have enabled 'DoNotTrack'
- #522 Add inline-code block styles
- #523 Track app usage
- #525 Add design system message to home page
- #530 Update elements class to frontend on examples page
- #491 Remove redundant Google Analytics
- #524 Make "Prototype Kit" casing consistent
- #527 Update docs/index page to include same information as private beta
To see the previous private beta releases see the archived private beta repository.
- #430 Recommend Atom over Sublime text
- #415 Update to govuk-elements-sass v3.1.1
- #422 fix(package): update govuk_template_jinja to version 0.22.3
- #401 Update govuk_template_jinja to 0.22.2
- #409 Update govuk_frontend_toolkit to 7.0.0
- #406 Add documentation for creating a release
- #410 Copyright should be Crown Copyright
- #407 Support deprecated check-your-answers table styles
- #386 Add GOV.UK Notify client library to kit
- #383 Add .env file to support storing private data
- #347 Add ie8 elements support
- #349 Add IE 8 bind polyfill
- #373 add page_scripts block
- #371 Update README
- #369 Add template pages for content and questions
- #340 Auto data session 4
- #367 Added config to turn off browser sync
- #368 Update Travis deployment to be consistent with other govuk frontend repos
- #361 Add an example of the task list pattern
- #364 Use GOV.UK elements v3.0.1
- #360 Bump govuk_frontend_toolkit to 5.1.1
- #352 bump gulp-sass to increase node-sass dependency
- #350 Prevent asking users to authenticate twice
- #344 Removing links to route.js / updating example in branching.html
- #343 Remove the title attribute from the cookie message
- #341 fix css sourcemaps
- #337 Add Git step to Heroku guide
- #336 Use app.locals instead of app.use
- #330 Update GOV.UK toolkit and StandardJS to latest
- #328 Update GOV.UK template to latest
- #324 Fix the example question page’s back link
Use Gulp.js rather than Grunt as a build tool. It is recommended to install Gulp globally, do so using:
npm install --global gulp-cli
The short version:
- #311 Update govuk-elements-sass to 2.2.0
- #308 Change node version from 4 to 6
- #299 Basic sanity check test suite
- #296 Keep the latest release branch up-to-date
- Fix broken links for the documentation app
The extended version:
This release includes custom radio buttons and checkbox styles from govuk-elements-sass v2.2.0. The version of Node that the prototype kit uses has been updated, we recommend using LTS (version 6 or above). Travis will now run tests against each pull request to ensure that the app runs (by checking the server and build tasks). The latest-release branch can be used to update the prototype kit. Instructions for updating your version of the prototype kit via the latest-release branch can be found here.
- #244 Migrate documentation into a separate application
- Bump all GOV.UK assets to their latest versions
- Remove duplicate GOV.UK assets copied to the app
- #241 Warn against using the prototype kit to build production services
- #268 Automatically keep the latest release branch up to date. This can be used to update the kit
- #270 Add a new stylesheet for the unbranded layout to fix font issues
- #257 Make CSS output easier to debug (with sourcemaps)
- #237 Make links with role="button" behave like buttons
- #224 Lint the prototype kit’s codebase using Standard. This only applies to the kit’s codebase - there’s no requirement for your app to meet this
- #197 Add the ability to store user data per session
BrowserSync support, so you don't need to refresh the browser to see your changes. Nunjucks filters file has been added, so you can add your own filters to your project, check the examples page in the kit for more details.
- #188 Force SSL on production
- #213 Remove references to "latest version" of Node
- #212 Remove the mustache version of govuk template
- #211 Remove govuk_template.html copied in build task from the repository
- #209 Use release 1.2.0 of the govuk-elements-sass package
- #208 Remove govuk elements sass from the app folder
- #207 Bump the govuk frontend toolkit to 4.12.0
- #206 Bump the govuk template to 0.17.3
- #200 Adds custom 'filters' to the nunjucks templating engine
- #194 Windows heroku login instructions
- #193 Adding browser-sync to the prototyping kit.
- #192 Security guidance
- #191 Edit sass docs for clarity
- #188 Force SSL on production
- #186 add guidance page for using verify prototype
- #181 Add link to styleguide on writing commit messages
- #180 Change smart quotes to straight quotes
- #177 Add a link to install Git
- #176 Bump govuk template to 0.17.0
- #175 Bump govuk frontend toolkit to 4.10.0
- #172 Fix closing element
- #169 Fix broken url and typo
- #166 Stop prototypes being indexed by search engines.
- #165 Redirect .html and .htm if in url path
- #164 Fix link to developer install instructions
- #162 Have kit self-identify as being the GOV.UK Prototype kit
- #161 always convert port to Number
- #160 Minor documentation update
- #159 Remove invalid ARIA role
- #156 fix port restart issue
- #155 Update the GOV.UK template and remove napa as a dependency
- #154 Use TRAVIS_BRANCH when running in travis-ci
- #152 Amend travis yml
New documentation to make it easier to install and run from scratch - tested with users and everything! The kit will now copy new files from assets to public (previously only updates to existing files were copied). It's easier to run multiple prototypes at once - the kit will automatically find a free port to run on.
- Add default cookie message (#150)
- New documentation (#145)
- Add example pages for branching (#143)
- Use grunt-sync for assets (#141)
- Fix warning for npm engine (#140)
- Add tmuxp config files to gitignore (#132)
- Improve 'port in use' errors, find a new port (#130)
This release switches templating language from Mustache to Nunjucks.
To convert your old prototype pages for use with this version, follow this guide.
- Bump the govuk frontend toolkit to 4.6.0 (#127)
- Update govuk elements sass (#124)
- Update the prototype kit to use Nunjucks for templating (#123)
- Create config file that stores prototype configuration (#120)
- Add phase banner includes (#118)
- Use npm start as the standard way to run the app (#111)
- Add warning if folder missing or module missing (#100)
- Improve error handling around port in use, find new port (#95)
- Add body-parser for parsing POSTs (#86)
- Add question page (#72)
- Add js for toggled content (#70)
- Add Start Page (#45)
- Add Check Your Answers page (#36)
- Add confirmation page (#35)
- Upgraded to Express 4 (#32)
- Add jQuery to the kit, so it's available on all pages by default (#18)
- Add page without header and footer (#12)
Initial release of prototype kit