NHSLeadership / nightingale-2-0

A WordPress theme for the NHS using the NHS.UK frontend library
Other
28 stars 15 forks source link

Bump nhsuk-frontend from 7.0.0 to 7.1.0 #591

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 1 year ago

Bumps nhsuk-frontend from 7.0.0 to 7.1.0.

Release notes

Sourced from nhsuk-frontend's releases.

v7.1.0

7.1.0 - 21 August 2023

:new: New features

  • Added three new card variants, primary card(with chevron), secondary card and top task (PR 878)

:wrench: Fixes

We removed the need to add the last breadcrumb outside of the 'Items' list, now simply include it in the list of items. This also fixes the issue (Issue 471 in the nhsuk Service Manual) with not being able to add attributes to the last breadcrumb. Instead of having this:

  {{ breadcrumb({
    items: [
      {
        href: "/level-one",
        text: "Level one"
      },
      {
        href: "/level-one/level-two",
        text: "Level two"
      }
    ],
    href: "/level-one/level-two/level-three",
    text: "Level three"
  }) }}

You will now only need this:

  {{ breadcrumb({
    items: [
      {
        href: "/level-one",
        text: "Level one",
      },
      {
        href: "/level-one/level-two",
        text: "Level two"
      },
      {
        href: "/level-one/level-two/level-three",
        text: "Level three"
      }
    ]
  }) }}

... (truncated)

Changelog

Sourced from nhsuk-frontend's changelog.

7.1.0 - 21 August 2023

:new: New features 🆕 New features

  • Added three new card variants, primary card(with chevron), secondary card and top task (PR 878)

:wrench: Fixes

We removed the need to add the last breadcrumb outside of the 'Items' list, now simply include it in the list of items. This also fixes the issue (Issue 471 in the nhsuk Service Manual) with not being able to add attributes to the last breadcrumb. Instead of having this:

  {{ breadcrumb({
    items: [
      {
        href: "/level-one",
        text: "Level one"
      },
      {
        href: "/level-one/level-two",
        text: "Level two"
      }
    ],
    href: "/level-one/level-two/level-three",
    text: "Level three"
  }) }}

You will now only need this:

  {{ breadcrumb({
    items: [
      {
        href: "/level-one",
        text: "Level one",
      },
      {
        href: "/level-one/level-two",
        text: "Level two"
      },
      {
        href: "/level-one/level-two/level-three",
        text: "Level three"
      }
    ]
  }) }}

... (truncated)

Commits
  • 630540f Merge pull request #883 from nhsuk/update-package
  • 04627bf Update package.json
  • b6c3f82 Card component (#878)
  • 6bd72dc Merge pull request #882 from nhsuk/fix-action-link-example
  • 3c9969a remove dead link
  • 9b851f8 Merge pull request #872 from nhsuk/fix/remove-current-page-breadcrumb
  • d15fd50 Fix typo
  • e261a61 Update CHANGELOG and README
  • db0cc9c Add backwards compatibility so old way of adding last breadcrumb still works
  • 2895103 Update CHANGELOG entry with Service Manual issue link and PR link
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 11 months ago

Superseded by #598.