debezium-ui
debezium-ui copied to clipboard
Update all (major)
This PR contains the following updates:
Release Notes
testing-library/react-testing-library
v13.3.0
Features
v13.2.0
Features
v13.1.1
Bug Fixes
v13.1.0
Features
v13.0.1
Bug Fixes
- Specify a non-* version for @types/react-dom (#1040) (2a889e8)
v13.0.0
Features
BREAKING CHANGES
- Drop support for React 17 and earlier. We'll use the new
createRootAPI by default which comes with a set of changes while also enabling support for concurrent features. To opt-out of this change you can userender(ui, { legacyRoot: true } ). But be aware that the legacy root API is deprecated in React 18 and its usage will trigger console warnings.
testing-library/user-event
v14.4.3
Bug Fixes
- build: add
typesfield inexports(#1029) (5bed8c6) - remove circular dependencies (#1027) (1aa2027)
v14.4.2
Bug Fixes
v14.4.1
Bug Fixes
v14.4.0
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
ControlonAltGraph(#1003) (2852509) - pointer: dispatch
contextmenuevents withdetail: 0(#1003) (2852509) - pointer: always set
PointerEvent.isPrimary(#1003) (2852509) - pointer: set
buttonproperty on pointer events separately from legacy mouse events (#1003) (2852509) - pointer: click closest common ancestor if
mousedownandmouseuphappen on different elements (#1003) (2852509) - pointer: omit click event on release if another button is released first (#1003) (2852509)
- pointer: dispatch
mouseover,mouseenterandmousemoveon disabled elements (#1003) (2852509) - pointer: prevent
mouse*events perpointerdownevent handler (#1003) (2852509) - pointer: dispatch
*outand*overevents when moving into / out of nested elements (#1003) (2852509) - pointer: dispatch
*enterand*leaveevents on ancestors (#1003) (2852509)
v14.3.0
Features
v14.2.6
Bug Fixes
- document: reduce impact of React@17 workaround (#992) (9816d38)
- pointer: do not throw for
pointer-events: noneon previous target (#991) (6e4058b)
v14.2.5
Bug Fixes
v14.2.4
Bug Fixes
- use
window.FileListinstead of implicit global (c88865d)
v14.2.3
Bug Fixes
v14.2.2
Bug Fixes
v14.2.1
Performance Improvements
v14.2.0
Features
Bug Fixes
- guard against selection without range (#953) (ab78f3f)
- selectOptions: wait after each click (#951) (7ea7a77)
- wait after each method before leaving
asyncWrapper(#952) (6f55fee)
v14.1.1
14.1.1 (2022-04-17)
Bug Fixes
- remove implicit global references (#932) (9913798)
- use
globalThisinstead ofglobal(#928) (497c14d)
v14.1.0
Features
Bug Fixes
- delete chars from value at
maxlength(#909) (f5049c4) - reset UI selection after programmatic value change (#915) (8bc3310)
- set initial value when setting UI value (#918) (7b0643b)
v14.0.4
14.0.4 (2022-04-01)
Bug Fixes
v14.0.3
14.0.3 (2022-03-31)
Bug Fixes
v14.0.2
14.0.2 (2022-03-31)
Bug Fixes
v14.0.1
14.0.1 (2022-03-31)
Bug Fixes
- maintain UI value on controlled number input (#889) (a7f9906)
- pointer: support nested select (#888) (e23e559)
v14.0.0
⚠ BREAKING CHANGES
- APIs always return a Promise.
- pointer:
skipPointerEventshas been removed. UsepointerEventsCheck: PointerEventsCheckLevel.Neverinstead. - upload:
initparameter has been removed fromuserEvent.upload. - upload:
applyAcceptdefaults totrue. - The
userEvent.pasteAPI 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.initparameter has been removed from these APIs:userEvent.clickuserEvent.dblClickuserEvent.tripleClickuserEvent.hoveruserEvent.unhoveruserEvent.selectOptionsuserEvent.deselectOptions
userEvent.uploadno longer supportsclickInitas part of itsinitparameter.- Behavior for special key descriptor
{selectall}has been removed. - Support for
keyCodeproperty on keyboard events has been removed. - An error is thrown when calling
userEvent.clearon an element which is not editable. - An error is thrown when event handlers prevent
userEvent.clearfrom focussing/selecting content. - tab: The
focusTrapoption has been removed fromuserEvent.tab(). - type:
userEvent.typedoes no longer move the cursor if used withskipClick=falseand withoutinitialSelectionStart. - 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
- async APIs (#790) (86860cc)
- keep track of document state in UI (#747) (73e62d0)
- rewrite selection handling (#776) (968c2c4)
- event: support
beforeinput(#851) (8890bd6) - add
pointerAPI (#750) (c12ee44) - add
setupAPI (#746) (719ba03) - add
userEvent.copyanduserEvent.cut(#787) (8727a2d) - add
userEvent.tripleClickAPI (#773) (0badabd) - apply modifier keys in pointer events (#751) (e33eb86)
- keyboard: add
[Tab]support (#767) (87470ff) - keyboard: apply modifier state (#815) (e9635f6)
- keyboard: move cursor and delete content in contenteditable (#822) (b83b259)
- keyboard: select all per
{Control}+[KeyA](#774) (ea9b18a) - pointer: change selection per pointer (#763) (17fb8b1)
- pointer: introduce
pointerEventsCheckoption (#823) (e2a5f43) - remove support for user provided
MouseEventInit(#784) (56ebf7d) - paste: replace
userEvent.paste(#785) (f8fe217) - clear: rewrite
userEvent.clearAPI (#779) (1cda1b1) - upload: replace element properties (#794) (543eadb)
Bug Fixes
- check for inherited
:disabled(#872) (1a00fdf) - clipboard: prevent default behavior on
copy/cut(#866) (5423094) - clipboard: prevent default behavior on
paste(#862) (d3d71ac) - create MouseEvents per
createEvent(#781) (da5b5b7) - export bundled ESM (#816) (1a5e2a7)
- export types and commonjs bundle (#821) (4f56856)
- keyboard: parse escaped bracket followed by descriptor (#814) (684451f)
- keyboard: parse keyboard input without nesting (#793) (fafa677)
- keyboard: set
KeyboardEvent.charCodeonkeypress(#771) (55e194a) - keyboard: submit form with
<button/>on[Enter](#808) (eca157a) - log correct docs link for invalid key descriptors (#881) (28d6604)
- maintain cursor position on controlled component (#765) (8f203cc)
- pointer: blur
activeElementon click outside of focusable (#834) (d64167c) - pointer: consider click context (#850) (ca4482a)
- pointer: fire pointer events on disabled elements (#818) (ef2f4e5)
- pointer: honor click handler on
<label/>(#810) (2c5d9f1) - pointer: trigger
contextmenuonmousedown(#811) (e1c4cad) - prepare document in setup (#753) (65be675)
- remove deprecated keyboard features (#780) (45dc39a)
- remove legacy modifier implementations (#783) (caea162)
- replace pointer implementations (#754) (c04f79b)
- reset UI selection on setter (#770) (2733d10)
- tab: order
tabIndex>0beforetabIndex=0(#809) (1bc5945) - tab: remove
focusTrapoption (#772) (a0412c0) - tab: skip elements with
visibility:hidden(#799) (a747b0a) - upload: fix order of events (#847) (214fd03)
Miscellaneous Chores
webpack-contrib/copy-webpack-plugin
v11.0.0
⚠ BREAKING CHANGES
- minimum supported
Node.jsversion is14.15.0
build
10.2.4 (2022-01-31)
Bug Fixes
10.2.3 (2022-01-29)
Bug Fixes
- async
tosupport (fd095fb)
10.2.2 (2022-01-28)
Bug Fixes
10.2.1 (2022-01-20)
Bug Fixes
webpack-contrib/css-minimizer-webpack-plugin
v4.0.0
⚠ BREAKING CHANGES
- minimum supported
Node.jsversion is14.15.0
3.4.1 (2022-01-18)
Bug Fixes
- types (9c8b0f3)
cypress-io/cypress
v10.4.0
Changelog: https://docs.cypress.io/guides/references/changelog#10-4-0
v10.3.1
Changelog: https://docs.cypress.io/guides/references/changelog#10-3-1
v10.3.0
Changelog: https://docs.cypress.io/guides/references/changelog#10-3-0
v10.2.0
Changelog: https://docs.cypress.io/guides/references/changelog#10-2-0
v10.1.0
Changelog: https://docs.cypress.io/guides/references/changelog#10-1-0
v10.0.3
Changelog: https://docs.cypress.io/guides/references/changelog#10-0-3
v10.0.2
Changelog: https://docs.cypress.io/guides/references/changelog#10-0-2
v10.0.1
Changelog: https://docs.cypress.io/guides/references/changelog#10-0-1
v10.0.0
Changelog: https://docs.cypress.io/guides/references/changelog#10-0-0
typicode/husky
v8.0.1
- fix: use POSIX equality operator
v8.0.0
What's Changed
Feats
- feat: add
husky -prefix to logged global error messages by @joshbalfour in https://github.com/typicode/husky/pull/1092 - feat: show
PATHwhen command not found to improve debuggability - feat: drop Node 12 support
- feat: skip install if
$HUSKY=0
Fixes
- fix: hook script use
/usr/bin/env shinstead of direct path ofshby @skhaz in https://github.com/typicode/husky/pull/1051 - fix: actually set 'husky_skip_init' as readonly in
./husky.shby @hyperupcall in https://github.com/typicode/husky/pull/1104 - fix: force
basename/dirnameto treat$0as an argument by @mataha in https://github.com/typicode/husky/pull/1132 - fix: remove
git.iolinks by @renbaoshuo in https://github.com/typicode/husky/pull/1136
Docs
- docs: fix uninstall via npm by @pddpd in https://github.com/typicode/husky/pull/1033
- docs: add dog emoji as favicon by @jamiehaywood in https://github.com/typicode/husky/pull/1095
- docs: replace deprecated
npx --no-installoption withnpx --noby @sibiraj-s in https://github.com/typicode/husky/pull/1070 - docs: add
pnpminstallation by @MohamadKh75 in https://github.com/typicode/husky/pull/1139
Chore
- chore: update workflows by @tiziodcaio in https://github.com/typicode/husky/pull/1125
i18next/i18next-parser
v6.5.0
- Fix: coverage testing #586
- Fix: reset nested keys if default value is changed #582
- Update dependencies
v6.4.0
- Fix a bug that was resetting a namespace when given an empty key #502
v6.3.0
v6.2.0
v6.0.1
- BREAKING: Drop support for Node 12
v6.0.0
- BREAKING: Drop support for Node 13, 15. Add support for Node 18.
- BREAKING: This package is now pure ESM
- Update dependencies
okonet/lint-staged
v13.0.3
Bug Fixes
v13.0.2
Bug Fixes
- use new
--diffand--diff-filteroptions when checking task modifications (1a5a66a)
v13.0.1
Bug Fixes
- correct spelling of "0 files" (f27f1d4)
- suppress error from
process.killwhen killing tasks on failure (f2c6bdd) - deps: update pidtree@^0.6.0 to fix screen size error in WSL (1a77e42)
- ignore "No matching pid found" error (cb8a432)
- prevent possible race condition when killing tasks on failure (bc92aff)
Performance Improvements
- use
EventsEmitterinstead ofsetIntervalfor killing tasks on failure (c508b46)
v13.0.0
Bug Fixes
Features
- remove support for Node.js 12 (5fb6df9)
BREAKING CHANGES
lint-stagedwill no longer support Node.js 12, which is EOL since 30 April 2022
webpack-contrib/postcss-loader
v7.0.1
v7.0.0
⚠ BREAKING CHANGES
- minimum supported
Node.jsversion is14.15.0
6.2.1 (2021-11-26)
Bug Fixes
securingsincity/react-ace
v10.1.0
What's Changed
- ci(Mergify): configuration update by @securingsincity in https://github.com/securingsincity/react-ace/pull/1487
- Chore(deps-dev): Bump @types/lodash from 4.14.181 to 4.14.182 by @dependabot in https://github.com/securingsincity/react-ace/pull/1490
- Chore(deps-dev): Bump babel-loader from 8.2.4 to 8.2.5 by @dependabot in https://github.com/securingsincity/react-ace/pull/1492
- Chore(deps-dev): Bump @types/mocha from 9.1.0 to 9.1.1 by @dependabot in https://github.com/securingsincity/react-ace/pull/1495
- Chore(deps-dev): Bump @types/react from 18.0.5 to 18.0.6 by @dependabot in https://github.com/securingsincity/react-ace/pull/1494
- Chore(deps-dev): Bump @types/react-dom from 18.0.1 to 18.0.2 by @dependabot in https://github.com/securingsincity/react-ace/pull/1496
- Chore(deps-dev): Bump eslint from 8.13.0 to 8.14.0 by @dependabot in https://github.com/securingsincity/react-ace/pull/1498
- chore: add react 18 peer deps by @jean9696 in https://github.com/securingsincity/react-ace/pull/1491
- Chore(deps-dev): Bump @types/react from 18.0.6 to 18.0.7 by @dependabot in https://github.com/securingsincity/react-ace/pull/1501
New Contributors
- @jean9696 made their first contribution in https://github.com/securingsincity/react-ace/pull/1491
Full Changelog: https://github.c
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 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.
⚠ 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@"13.3.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! See /tmp/renovate-cache/others/npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /tmp/renovate-cache/others/npm/_logs/2022-08-25T23_18_13_735Z-debug-0.log
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.
Hi @renovate[bot], thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key.