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

Bump view_component, pagy, govuk-components, dfe-autocomplete and govuk_design_system_formbuilder #904

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 14, 2023

Bumps view_component, pagy, govuk-components, dfe-autocomplete and govuk_design_system_formbuilder. These dependencies needed to be updated together.
Updates view_component from 2.74.1 to 3.5.0

Release notes

Sourced from view_component's releases.

v3.4.0

  • Avoid including Rails url_helpers into Preview class when they're not defined.

    Richard Macklin

  • Allow instrumentation to be automatically included in Server-Timing headers generated by Rails. To enable this set the config config.use_deprecated_instrumentation_name = false. The old key !render.view_component is deprecated: update ActiveSupport::Notification subscriptions to render.view_component.

    Travis Gaff

v3.3.0

  • Include InlineTemplate by default in Base. Note: It's no longer necessary to include ViewComponent::InlineTemplate to use inline templates.

    Joel Hawksley

  • Allow Setting host when using the with_request_url test helper.

    Daniel Alfaro

  • Resolve ambiguous preview paths when using components without the Component suffix.

    Reed Law

v3.2.0

  • Fix viewcomponent.org Axe violations.

    Joel Hawksley

  • Fix example of RSpec configuration in docs

    Pasha Kalashnikov

  • Add URL helpers to previews

    Reegan Viljoen

v3.1.0

  • Check defined?(Rails) && Rails.application before using ViewComponent::Base.config.view_component_path.

    Donapieppo

  • Allow customization of polymorphic slot setters.

    Cameron Dutro

  • Fix duplication in configuration docs.

    Tom Chen

  • Fix helpers not reloading in development.

... (truncated)

Changelog

Sourced from view_component's changelog.

3.5.0

  • Add Skroutz to users list.

    Chris Nitsas

  • Improve implementation of #render_parent so it respects variants and deep inheritance hierarchies.

    Cameron Dutro

  • Add CharlieHR to users list.

    Alex Balhatchet

3.4.0

  • Avoid including Rails url_helpers into Preview class when they're not defined.

    Richard Macklin

  • Allow instrumentation to be automatically included in Server-Timing headers generated by Rails. To enable this set the config config.use_deprecated_instrumentation_name = false. The old key !render.view_component is deprecated: update ActiveSupport::Notification subscriptions to render.view_component.

    Travis Gaff

3.3.0

  • Include InlineTemplate by default in Base. Note: It's no longer necessary to include ViewComponent::InlineTemplate to use inline templates.

    Joel Hawksley

  • Allow Setting host when using the with_request_url test helper.

    Daniel Alfaro

  • Resolve ambiguous preview paths when using components without the Component suffix.

    Reed Law

3.2.0

  • Fix viewcomponent.org Axe violations.

    Joel Hawksley

  • Fix example of RSpec configuration in docs

    Pasha Kalashnikov

  • Add URL helpers to previews

... (truncated)

Commits

Updates pagy from 5.10.1 to 6.0.4

Changelog

Sourced from pagy's changelog.

Version 6.0.4

  • Updated gems and npm modules
  • fix: Extras::Trim - fix trimming first page (#516)
  • Fix for new rubocop

Version 6.0.3

  • Updated Gemfile and npm modules
  • Improved Danish translation (#502)

Version 6.0.2

  • Fix: foundation combo helper (#469)

Version 6.0.1

  • Fix for pagy_bootstrap_combo_nav_js disabled input in certain bootstrap versions
  • Fix for wrong module in standalone extra
  • Fix for broken links in code comments and docs

Version 6.0.0

Breaking changes

Removed support for the deprecation of 5.0:

  • The pagy_massage_params method: use the :params variable set to a lambda Proc that does the same (but per instance). See How to customize the params.
  • The activesupport core dependency is now an optional requirement if you use the calendar: you must add gem 'activesuport' to your Gemfile if your app doesn't use rails.
  • The plain Time objects in the :period variable: use only ActiveSupport::TimeWithZone objects.
  • The :offset variable used by the Pagy::Calendar::Week: set the Date.beginning_of_week variable to the symbol of the first day of the week (e.g. Date.beginning_of_week = :sunday). Notice the default is :monday consistently with the ISO-8601 standard (and Rails).
  • The Pagy::DEFAULT[:elasticsearch_rails_search_method]: use Pagy::DEFAULT[:elasticsearch_rails_pagy_search] instead.
  • The Pagy::DEFAULT[:searchkick_search_method]: use Pagy::DEFAULT[:searchkick_pagy_search] instead.
  • The Pagy::DEFAULT[:meilisearch_search_method]: use Pagy::DEFAULT[:meilisearch_pagy_search] instead.

Suggestions for a smooth removal of deprecations from pagy 5

  • Upgrade to the latest version of pagy 5 (5.10.1)
  • Run your tests or app
  • Check the log for any deprecations message starting with '[PAGY WARNING]'
  • Update your code as indicated by the messages
  • Ensure that the log is now free from warnings
  • If you are overriding the pagy_url_for method ensure you add the extra parameters required..
  • Upgrade to pagy 6

Changes

  • Added new doc changes
  • Replaced the gitter support with the Q&A discussion links
  • reorganized cypress tests

... (truncated)

Commits
  • 7c6c573 Merge branch 'dev'
  • 7a60b0f Version 6.0.4
  • 5870392 Updated gems and npm modules
  • 14e7e51 fix: Extras::Trim - fix trimming first page (#516)
  • cf0dae2 Chore: bump cypress-io/github-action from 5.6.1 to 5.6.2 (#515)
  • fca810b Chore: bump codecov/codecov-action from 3.1.2 to 3.1.3 (#513)
  • 4875da6 Chore: bump codecov/codecov-action from 3.1.1 to 3.1.2 (#512)
  • b6283bf Docs: remove pics in lieu of shorter statements (#511)
  • 5470bab Docs: Screencasts repositioning
  • 9ad93da Docs: add tooltips (#509)
  • Additional commits viewable in compare view

Updates govuk-components from 3.3.0 to 4.1.1

Release notes

Sourced from govuk-components's releases.

v4.1.1

Version 4.1.0

Version 4.0.0

  • Upgrade to ViewComponent 3.0.0

  • Upgrade to govuk-frontend 4.6.0

  • Improve the table component

    • Add support for table header scopes #382

      Table header scopes are used to identify cells that are covered by a header cell. They can be manually added using the scope parameter but will default to col for table headings in the <thead> and to row for table headings in the <tbody>.

    • Add support for table footers #387

      Table footers allow us to summarise a table's contents. Often they are used to show numeric totals.

    • Add support for <colgroup> and <col> elements #393

      Column groups define groups of columns within a table. They are useful when single categories of data need to span multiple columns

    There are examples on the new functionality on the table page of the guide

  • Move the space between the visible and visually hidden text in summary list actions inside the visually hidden span. #408

    The markup will change in the following manner:

          <a class="govuk-link" href="#">
    -       Change <span class="govuk-visually-hidden">age</span>
    +       Change<span class="govuk-visually-hidden"> age</span>
          </a>

... (truncated)

Commits
  • 6655342 Release version 4.1.1
  • d69f0b4 Merge pull request #444 from x-govuk/dependabot/bundler/rubocop-govuk-eq-4.12.0
  • f59a997 Update rubocop-govuk requirement from = 4.11.0 to = 4.12.0
  • 46836e6 Merge pull request #447 from x-govuk/add-title-with-error-prefix
  • cda2dc2 Code style fix
  • 290893c Add documentation
  • 574de50 Allow error_prefix to be overriden
  • c61c599 Update default_error_prefix name and docs
  • abca223 Add helper: title_with_error_prefix
  • b77b124 Merge pull request #446 from x-govuk/add-example-of-summary-list-with-missing...
  • Additional commits viewable in compare view

Updates dfe-autocomplete from 36d80e6 to 0.1.0

Commits
  • 92f4e04 Build the dfe autocomplete css too
  • e6ffe1a Remove not needed js package
  • 28abebb Load all the helpers into action controller base
  • 53c2f2e Make the library to be imported and setup in the mounted app
  • 92327d9 Add dfe autocomplete options
  • 0063786 Change the generation of the data module to be dfe-autocomplete
  • b1addd5 Ignore some files in spec dummy
  • 01c0c46 Start to make library options
  • ff7b50c Create library options
  • 3199117 Add autocomplete dist
  • Additional commits viewable in compare view

Updates govuk_design_system_formbuilder from 3.3.0 to 4.1.1

Release notes

Sourced from govuk_design_system_formbuilder's releases.

Version 4.1.1

  • Allow merging data-aria-controls in addition to aria-controls. Thank you @​sobakasu #440

Version 4.1.0

Version 4.0.0

  • Upgrade to govuk-frontend 4.6.0
  • Remove classes argument from the few places it remained, custom classes can be set directly using class: thanks to html-attributes-utils' clever merging #409
  • Add support for extra_letter_spacing to text inputs which is useful when asking for long complex codes or IDs #424

Upgrade guide

  • Replace any classes: ... parameters with class: ...

Version 4.0.0rc1

No release notes provided.

Version 4.0.0a1

Preparing for the upcoming version 4.5.0 of GOV.UK frontend

Commits
  • 68c1f54 Release version 4.1.1
  • 00af169 Merge pull request #440 from sobakasu/feature/multiple-aria-controls
  • 6b3a508 Update FieldsetItem to allow merging data-aria-controls
  • c99fa99 Update Ruby/Rails versions in README
  • ca9a45c Release version 4.1.0
  • 941152a Merge pull request #439 from x-govuk/versions-bumps
  • 3b310f0 Upgrade to latest versions of Ruby and Rails
  • 1662e5e Merge pull request #436 from x-govuk/dependabot/npm_and_yarn/guide/sass-1.63.6
  • 6119089 Bump sass from 1.58.3 to 1.63.6 in /guide
  • 4ebe7c7 Merge pull request #437 from x-govuk/dependabot/bundler/rubocop-govuk-tw-4.11.0
  • Additional commits viewable in compare view

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 <dependency name> 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)

…uk_design_system_formbuilder

Bumps [view_component](https://github.com/viewcomponent/view_component), [pagy](https://github.com/ddnexus/pagy), [govuk-components](https://github.com/x-govuk/govuk-components), [dfe-autocomplete](https://github.com/DFE-Digital/dfe-autocomplete) and [govuk_design_system_formbuilder](https://github.com/x-govuk/govuk-form-builder). These dependencies needed to be updated together.

Updates `view_component` from 2.74.1 to 3.5.0
- [Release notes](https://github.com/viewcomponent/view_component/releases)
- [Changelog](https://github.com/ViewComponent/view_component/blob/main/docs/CHANGELOG.md)
- [Commits](ViewComponent/view_component@v2.74.1...v3.5.0)

Updates `pagy` from 5.10.1 to 6.0.4
- [Changelog](https://github.com/ddnexus/pagy/blob/master/CHANGELOG.md)
- [Commits](ddnexus/pagy@5.10.1...6.0.4)

Updates `govuk-components` from 3.3.0 to 4.1.1
- [Release notes](https://github.com/x-govuk/govuk-components/releases)
- [Commits](x-govuk/govuk-components@v3.3.0...v4.1.1)

Updates `dfe-autocomplete` from `36d80e6` to 0.1.0
- [Commits](DFE-Digital/dfe-autocomplete@36d80e6...v0.1.0)

Updates `govuk_design_system_formbuilder` from 3.3.0 to 4.1.1
- [Release notes](https://github.com/x-govuk/govuk-form-builder/releases)
- [Commits](x-govuk/govuk-form-builder@v3.3.0...v4.1.1)

---
updated-dependencies:
- dependency-name: view_component
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: pagy
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: govuk-components
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: dfe-autocomplete
  dependency-type: direct:production
- dependency-name: govuk_design_system_formbuilder
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner September 14, 2023 22:13
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Sep 14, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 5, 2023

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Oct 5, 2023
@dependabot dependabot bot deleted the dependabot/bundler/view_component-and-pagy-and-govuk-components-and-dfe-autocomplete-and-govuk_design_system_formbuilder-3.5.0 branch October 5, 2023 10:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants