debezium-ui icon indicating copy to clipboard operation
debezium-ui copied to clipboard

Update Shared components packages (major)

Open renovate[bot] opened this issue 2 years ago • 27 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@testing-library/react 12.1.5 -> 13.4.0 age adoption passing confidence
@testing-library/user-event 13.5.0 -> 14.4.3 age adoption passing confidence
@types/jest (source) 27.5.2 -> 29.0.3 age adoption passing confidence
@types/react (source) 17.0.49 -> 18.0.21 age adoption passing confidence
@types/react-dom (source) 17.0.17 -> 18.0.6 age adoption passing confidence
copy-webpack-plugin 10.2.4 -> 11.0.0 age adoption passing confidence
css-minimizer-webpack-plugin 3.4.1 -> 4.1.0 age adoption passing confidence
cypress 9.7.0 -> 10.8.0 age adoption passing confidence
husky (source) 7.0.4 -> 8.0.1 age adoption passing confidence
i18next-parser 5.4.0 -> 6.5.0 age adoption passing confidence
jest (source) 27.5.1 -> 29.0.3 age adoption passing confidence
lerna (source) 4.0.0 -> 5.5.2 age adoption passing confidence
lint-staged 12.5.0 -> 13.0.3 age adoption passing confidence
postcss-loader 6.2.1 -> 7.0.1 age adoption passing confidence
react-ace 9.5.0 -> 10.1.0 age adoption passing confidence
react-router 5.3.3 -> 6.4.1 age adoption passing confidence
serve 13.0.4 -> 14.0.1 age adoption passing confidence
svg-url-loader 7.1.1 -> 8.0.0 age adoption passing confidence
ts-jest (source) 27.1.5 -> 29.0.2 age adoption passing confidence
tsconfig-paths-webpack-plugin 3.5.2 -> 4.0.0 age adoption passing confidence
typescript (source) 3.9.10 -> 4.8.3 age adoption passing confidence
yaml (source) 1.10.2 -> 2.1.1 age adoption passing confidence

Release Notes

testing-library/react-testing-library

v13.4.0

Compare Source

Features
  • renderHook: allow passing of all render options to renderHook (#​1118) (27a9584)

v13.3.0

Compare Source

Features

v13.2.0

Compare Source

Features

v13.1.1

Compare Source

Bug Fixes

v13.1.0

Compare Source

Features

v13.0.1

Compare Source

Bug Fixes

v13.0.0

Compare Source

Features
BREAKING CHANGES
testing-library/user-event

v14.4.3

Compare Source

Bug Fixes

v14.4.2

Compare Source

Bug Fixes

v14.4.1

Compare Source

Bug Fixes

v14.4.0

Compare Source

Features
Bug Fixes
  • event: be robust against incomplete event implementations (#​1009) (289828b)
  • upload: be robust against missing FileList implementation (#​1007) (a46b4d7)
  • keyboard: switch modifier state of lock keys on the correct event (#​1003) (2852509)
  • keyboard: remove platform-specific additional key events for Control on AltGraph (#​1003) (2852509)
  • pointer: dispatch contextmenu events with detail: 0 (#​1003) (2852509)
  • pointer: always set PointerEvent.isPrimary (#​1003) (2852509)
  • pointer: set button property on pointer events separately from legacy mouse events (#​1003) (2852509)
  • pointer: click closest common ancestor if mousedown and mouseup happen on different elements (#​1003) (2852509)
  • pointer: omit click event on release if another button is released first (#​1003) (2852509)
  • pointer: dispatch mouseover, mouseenter and mousemove on disabled elements (#​1003) (2852509)
  • pointer: prevent mouse* events per pointerdown event handler (#​1003) (2852509)
  • pointer: dispatch *out and *over events when moving into / out of nested elements (#​1003) (2852509)
  • pointer: dispatch *enter and *leave events on ancestors (#​1003) (2852509)

v14.3.0

Compare Source

Features

v14.2.6

Compare Source

Bug Fixes
  • document: reduce impact of React@17 workaround (#​992) (9816d38)
  • pointer: do not throw for pointer-events: none on previous target (#​991) (6e4058b)

v14.2.5

Compare Source

Bug Fixes
  • document: do not track value on HTMLSelectElement (#​989) (77a7fa8)

v14.2.4

Compare Source

Bug Fixes
  • use window.FileList instead of implicit global (c88865d)

v14.2.3

Compare Source

Bug Fixes
  • document: use setters/methods on element as default (#​987) (c40e614)

v14.2.2

Compare Source

Bug Fixes

v14.2.1

Compare Source

Performance Improvements
  • tab: avert visibility check on irrelevant elements (#​967) (d2d8a39)

v14.2.0

Compare Source

Features
  • report element with declaration in pointerEventsCheck (#​950) (31b7091)
Bug Fixes

v14.1.1

Compare Source

14.1.1 (2022-04-17)
Bug Fixes

v14.1.0

Compare Source

Features
Bug Fixes

v14.0.4

Compare Source

14.0.4 (2022-04-01)
Bug Fixes

v14.0.3

Compare Source

14.0.3 (2022-03-31)
Bug Fixes
  • pointer: change selection before dispatching focus (#​895) (06f12a6)

v14.0.2

Compare Source

14.0.2 (2022-03-31)
Bug Fixes

v14.0.1

Compare Source

14.0.1 (2022-03-31)
Bug Fixes

v14.0.0

Compare Source

⚠ BREAKING CHANGES
  • APIs always return a Promise.
  • pointer: skipPointerEvents has been removed. Use pointerEventsCheck: PointerEventsCheckLevel.Never instead.
  • upload: init parameter has been removed from userEvent.upload.
  • upload: applyAccept defaults to true.
  • The userEvent.paste API has new parameters.
  • {ctrl}, {del}, {esc} no longer describe a key. Use {Control}, {Delete}, {Escape} instead.
  • {alt}, {ctrl}, {meta}, {shift} no longer imply not releasing the key. Use {Alt>}, {Control>}, {Meta>}, {Shift>} instead.
  • init parameter has been removed from these APIs:
    • userEvent.click
    • userEvent.dblClick
    • userEvent.tripleClick
    • userEvent.hover
    • userEvent.unhover
    • userEvent.selectOptions
    • userEvent.deselectOptions
  • userEvent.upload no longer supports clickInit as part of its init parameter.
  • Behavior for special key descriptor {selectall} has been removed.
  • Support for keyCode property on keyboard events has been removed.
  • An error is thrown when calling userEvent.clear on an element which is not editable.
  • An error is thrown when event handlers prevent userEvent.clear from focussing/selecting content.
  • tab: The focusTrap option has been removed from userEvent.tab().
  • type: userEvent.type does no longer move the cursor if used with skipClick=false and without initialSelectionStart.
  • The implementation of pointer related APIs was replaced. This might break tests relying on unintended side-effects of the previous implementation.
  • Support for node 10 was removed as it reached its end-of-life.
Features
Bug Fixes
Miscellaneous Chores
webpack-contrib/copy-webpack-plugin

v11.0.0

Compare Source

⚠ BREAKING CHANGES
  • minimum supported Node.js version is 14.15.0
build
10.2.4 (2022-01-31)
Bug Fixes
10.2.3 (2022-01-29)
Bug Fixes
10.2.2 (2022-01-28)
Bug Fixes
10.2.1 (2022-01-20)
Bug Fixes
webpack-contrib/css-minimizer-webpack-plugin

v4.1.0

Compare Source

Features

v4.0.0

Compare Source

⚠ BREAKING CHANGES
  • minimum supported Node.js version is 14.15.0
3.4.1 (2022-01-18)
Bug Fixes
cypress-io/cypress

v10.8.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-8-0

v10.7.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-7-0

v10.6.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-6-0

v10.5.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-5-0

v10.4.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-4-0

v10.3.1

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-3-1

v10.3.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-3-0

v10.2.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-2-0

v10.1.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-1-0

v10.0.3

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-0-3

v10.0.2

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-0-2

v10.0.1

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-0-1

v10.0.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​10-0-0

typicode/husky

v8.0.1

Compare Source

  • fix: use POSIX equality operator

v8.0.0

Compare Source

What's Changed

Feats
Fixes
Docs
Chore
i18next/i18next-parser

v6.5.0

Compare Source

  • Fix: coverage testing #​586
  • Fix: reset nested keys if default value is changed #​582
  • Update dependencies

v6.4.0

Compare Source

  • Fix a bug that was resetting a namespace when given an empty key #​502

v6.3.0

Compare Source

v6.2.0

Compare Source

v6.0.1

Compare Source

  • BREAKING: Drop support for Node 12

v6.0.0

Compare Source

  • BREAKIN

Configuration

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

🚦 Automerge: Disabled due to failing status checks.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • [ ] If you want to rebase/retry this PR, click this checkbox.

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

renovate[bot] avatar Aug 30 '22 13:08 renovate[bot]

⚠ 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: ui/package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/react
npm ERR!   react@"17.0.2" from the root project
npm ERR!   react@"17.0.2" from @debezium/[email protected]
npm ERR!   packages/ui
npm ERR!     @debezium/[email protected]
npm ERR!     node_modules/@debezium/ui
npm ERR!       workspace packages/ui from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^18.0.0" from @testing-library/[email protected]
npm ERR! node_modules/@testing-library/react
npm ERR!   dev @testing-library/react@"14.0.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/f10056/d9e304/cache/others/npm/_logs/2023-06-08T00_00_33_556Z-eresolve-report.txt

npm ERR! A complete log of this run can be found in: /tmp/worker/f10056/d9e304/cache/others/npm/_logs/2023-06-08T00_00_33_556Z-debug-0.log

renovate[bot] avatar Aug 30 '22 13:08 renovate[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Aug 30 '22 13:08 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Aug 30 '22 17:08 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Aug 30 '22 21:08 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Aug 31 '22 00:08 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Aug 31 '22 20:08 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 01 '22 17:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 03 '22 16:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 04 '22 19:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 05 '22 21:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 06 '22 12:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 07 '22 12:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 08 '22 18:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 09 '22 11:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 09 '22 14:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 09 '22 21:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 10 '22 13:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 10 '22 16:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 11 '22 14:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 13 '22 19:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 14 '22 12:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 15 '22 11:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 15 '22 22:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 20 '22 20:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 21 '22 22:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 22 '22 19:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 24 '22 12:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 27 '22 18:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 27 '22 21:09 github-actions[bot]

Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.

github-actions[bot] avatar Sep 28 '22 10:09 github-actions[bot]