Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

fix(deps): update dependency @edx/paragon to v21 - autoclosed #270

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 15, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@edx/paragon ^20.46.2 -> ^21.0.0 age adoption passing confidence

Release Notes

openedx/paragon (@​edx/paragon)

v21.5.0

Compare Source

Features

v21.4.0

Compare Source

Features

v21.3.1

Compare Source

Bug Fixes

v21.3.0

Compare Source

Features
  • added new icon in es5 and jsx (5ef216f)

v21.2.0

Compare Source

Features

v21.1.10

Compare Source

Bug Fixes

v21.1.9

Compare Source

Bug Fixes
  • add ability to truncate text without spaces in Truncate component (#​2584) (3db63e7)

v21.1.8

Compare Source

Bug Fixes
  • update Card's border-radius and color in focused state (#​2607) (5eb4c8e)

v21.1.7

Compare Source

Bug Fixes

v21.1.6

Compare Source

Bug Fixes

v21.1.5

Compare Source

Bug Fixes

v21.1.4

Compare Source

Bug Fixes
  • use Form.Checkbox instead of default checkboxes in DataTable filters (#​2555) (d07827d)

v21.1.3

Compare Source

Bug Fixes
  • disable browser autocomplete and edit dropdown items elements (93bf239)

v21.1.2

Compare Source

Reverts

v21.1.1

Compare Source

Bug Fixes

v21.1.0

Compare Source

Bug Fixes
  • filtered dropdown items by display value instead of event target (#​2547) (cac6984)
Features

v21.0.1

Compare Source

Bug Fixes

v21.0.0

Compare Source

BREAKING CHANGES
  • aria-label is required when not using aria-labelledby
    in the SelectableBoxSet component. An associated label for the component is a WCAG requirement.
For Consumers

In order to associate a label with the SelectableBoxSet component, developers can use the aria-labelledby attribute. The value of this attribute should match the id of the element that is to be referenced as a label, whether visible or not. If no visible or invisible label is provided in the markup, developers can either make an invisible one (e.g. <h3 className="sr-only">Hello, World</h3>) that only assistive technologies would pick up on, or they can opt to use an aria-label instead.

See the doc site page for SelectableBox to view a live example of using aria-labelledby.

Examples

Using aria-labelledby with the SelectableBoxSet component:

<div className="bg-light-200 p-3">
  {/** `id` provided to the `h3` is the same value as the `aria-labelledby` in `SelectableBox.Set` **/}
  <h3 id="cheese selection" className="mb-4">
    Select your favorite cheese
  </h3>
  <SelectableBox.Set
    value={checkedCheeses}
    type={type}
    onChange={handleChange}
    name="cheeses"
    columns={isExtraSmall ? 1 : 3}
    ariaLabelledby="cheese selection"
  >
    <SelectableBox value="swiss" inputHidden={false} type={type} aria-label="swiss checkbox">
      <h3>
        Swiss
      </h3>
    </SelectableBox>
    <SelectableBox value="cheddar" inputHidden={false} type={type} aria-label="cheddar checkbox">
      <h3>
        Cheddar
      </h3>
    </SelectableBox>
    <SelectableBox value="pepperjack" inputHidden={false} type={type} aria-label="pepperjack checkbox">
      <h3>
        Pepperjack
      </h3>
    </SelectableBox>
  </SelectableBox.Set>
</div>

If not using aria-labelledby, developers must provide an aria-label to the component:

<SelectableBox.Set
  value={checkedCheeses}
  type={type}
  onChange={handleChange}
  name="cheeses"
  columns={isExtraSmall ? 1 : 3}
  ariaLabel="cheese selection"
>
  <SelectableBox value="swiss" inputHidden={false} type={type} aria-label="swiss checkbox">
    <h3>
      Swiss
    </h3>
  </SelectableBox>
  <SelectableBox value="cheddar" inputHidden={false} type={type} aria-label="cheddar checkbox">
    <h3>
      Cheddar
    </h3>
  </SelectableBox>
  <SelectableBox value="pepperjack" inputHidden={false} type={type} aria-label="pepperjack checkbox">
    <h3>
      Pepperjack
    </h3>
  </SelectableBox>
</SelectableBox.Set>

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner August 15, 2023 22:22
@renovate
Copy link
Contributor Author

renovate bot commented Aug 15, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: @edx/[email protected]
npm ERR! Found: @edx/[email protected]
npm ERR! node_modules/@edx/paragon
npm ERR!   @edx/paragon@"^21.0.0" from the root project
npm ERR!   peer @edx/paragon@">= 10.0.0 < 22.0.0" from @edx/[email protected]
npm ERR!   node_modules/@edx/frontend-platform
npm ERR!     @edx/frontend-platform@"5.6.1" from the root project
npm ERR!     peer @edx/frontend-platform@"^4.0.0 || ^5.0.0 || ^6.0.0" from @edx/[email protected]
npm ERR!     node_modules/@edx/frontend-component-footer
npm ERR!       @edx/frontend-component-footer@"^12.3.0" from the root project
npm ERR!     2 more (@edx/frontend-component-header, @edx/frontend-lib-content-components)
npm ERR!   1 more (@edx/frontend-component-footer)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @edx/paragon@"^20.27.0" from @edx/[email protected]
npm ERR! node_modules/@edx/frontend-lib-content-components
npm ERR!   @edx/frontend-lib-content-components@"^1.174.0" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: @edx/[email protected]
npm ERR! node_modules/@edx/paragon
npm ERR!   peer @edx/paragon@"^20.27.0" from @edx/[email protected]
npm ERR!   node_modules/@edx/frontend-lib-content-components
npm ERR!     @edx/frontend-lib-content-components@"^1.174.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! 
npm ERR! For a full report see:
npm ERR! /tmp/worker/90ea83/a11292/cache/others/npm/_logs/2023-10-31T16_13_09_263Z-eresolve-report.txt

npm ERR! A complete log of this run can be found in: /tmp/worker/90ea83/a11292/cache/others/npm/_logs/2023-10-31T16_13_09_263Z-debug-0.log

@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 17 times, most recently from f71d575 to aff360c Compare August 22, 2023 04:13
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 4 times, most recently from 87cd579 to f9f1483 Compare August 28, 2023 20:23
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 7 times, most recently from 9d39779 to 528d4cd Compare September 6, 2023 23:44
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 5 times, most recently from 2d23d92 to 3daa818 Compare October 5, 2023 16:03
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 12 times, most recently from 45fd1a5 to e5d8e73 Compare October 16, 2023 19:57
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 4 times, most recently from 2f5f338 to 83b8868 Compare October 20, 2023 21:29
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 4 times, most recently from 91188ae to 687d9d9 Compare October 31, 2023 15:21
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch from 687d9d9 to 14fef6a Compare October 31, 2023 16:13
@renovate renovate bot changed the title fix(deps): update dependency @edx/paragon to v21 fix(deps): update dependency @edx/paragon to v21 - autoclosed Oct 31, 2023
@renovate renovate bot closed this Oct 31, 2023
@renovate renovate bot deleted the renovate/edx-paragon-21.x branch October 31, 2023 16:28
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants