[PR #226] [CLOSED] Bump @testing-library/user-event from 13.1.9 to 14.0.0 in /ui #972

Closed
opened 2026-03-15 21:45:04 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hibiken/asynqmon/pull/226
Author: @dependabot[bot]
Created: 3/30/2022
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/ui/testing-library/user-event-14.0.0


📝 Commits (1)

  • a087c13 Bump @testing-library/user-event from 13.1.9 to 14.0.0 in /ui

📊 Changes

2 files changed (+5 additions, -7 deletions)

View changed files

📝 ui/package.json (+1 -1)
📝 ui/yarn.lock (+4 -6)

📄 Description

Bumps @testing-library/user-event from 13.1.9 to 14.0.0.

Release notes

Sourced from @​testing-library/user-event's releases.

v14.0.0

14.0.0 (2022-03-29)

⚠ 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.
  • 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

... (truncated)

Commits
  • f209a6f chore: update link to CONTRIBUTORS
  • fc15e25 chore: add codesandbox template without framework (#884)
  • 47de44c docs: add joshunger as a contributor for bug (#883)
  • 28d6604 fix: log correct docs link for invalid key descriptors (#881)
  • e971a34 chore: update dependencies (#882)
  • 7a36ca8 chore: fix typo in comment (#875)
  • 26dbc45 chore: fix CODE_OF_CONDUCT.md location (#879)
  • 0da81d2 docs: add markwoon as a contributor for bug (#873)
  • 1a00fdf fix: check for inherited :disabled (#872)
  • 75fdd44 docs: add lifeiscontent as a contributor for ideas (#870)
  • 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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hibiken/asynqmon/pull/226 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/30/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/ui/testing-library/user-event-14.0.0` --- ### 📝 Commits (1) - [`a087c13`](https://github.com/hibiken/asynqmon/commit/a087c13df8a5a5b0e79f567cd90bdbe57885f810) Bump @testing-library/user-event from 13.1.9 to 14.0.0 in /ui ### 📊 Changes **2 files changed** (+5 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `ui/package.json` (+1 -1) 📝 `ui/yarn.lock` (+4 -6) </details> ### 📄 Description Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 13.1.9 to 14.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/user-event/releases"><code>@​testing-library/user-event</code>'s releases</a>.</em></p> <blockquote> <h2>v14.0.0</h2> <h2><a href="https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.0">14.0.0</a> (2022-03-29)</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li><strong>APIs always return a Promise.</strong></li> <li><strong>pointer:</strong> <code>skipPointerEvents</code> has been removed. Use <code>pointerEventsCheck: PointerEventsCheckLevel.Never</code> instead.</li> <li><strong>upload:</strong> <code>init</code> parameter has been removed from <code>userEvent.upload</code>.</li> <li>The <code>userEvent.paste</code> API has new parameters.</li> <li><code>{ctrl}</code>, <code>{del}</code>, <code>{esc}</code> no longer describe a key. Use <code>{Control}</code>, <code>{Delete}</code>, <code>{Escape}</code> instead.</li> <li><code>{alt}</code>, <code>{ctrl}</code>, <code>{meta}</code>, <code>{shift}</code> no longer imply not releasing the key. Use <code>{Alt&gt;}</code>, <code>{Control&gt;}</code>, <code>{Meta&gt;}</code>, <code>{Shift&gt;}</code> instead.</li> <li><code>init</code> parameter has been removed from these APIs: <ul> <li><code>userEvent.click</code></li> <li><code>userEvent.dblClick</code></li> <li><code>userEvent.tripleClick</code></li> <li><code>userEvent.hover</code></li> <li><code>userEvent.unhover</code></li> <li><code>userEvent.selectOptions</code></li> <li><code>userEvent.deselectOptions</code></li> </ul> </li> <li><code>userEvent.upload</code> no longer supports <code>clickInit</code> as part of its <code>init</code> parameter.</li> <li>Behavior for special key descriptor <code>{selectall}</code> has been removed.</li> <li>Support for <code>keyCode</code> property on keyboard events has been removed.</li> <li>An error is thrown when calling <code>userEvent.clear</code> on an element which is not editable.</li> <li>An error is thrown when event handlers prevent <code>userEvent.clear</code> from focussing/selecting content.</li> <li><strong>tab:</strong> The <code>focusTrap</code> option has been removed from <code>userEvent.tab()</code>.</li> <li><strong>type:</strong> <code>userEvent.type</code> does no longer move the cursor if used with <code>skipClick=false</code> and without <code>initialSelectionStart</code>.</li> <li>The implementation of pointer related APIs was replaced. This might break tests relying on unintended side-effects of the previous implementation.</li> <li>Support for node 10 was removed as it reached its end-of-life.</li> </ul> <h3>Features</h3> <ul> <li>async APIs (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/790">#790</a>) (<a href="https://github.com/testing-library/user-event/commit/86860cc5fd1b59a6b34ffd00c96d22520f4aa56e">86860cc</a>)</li> <li>keep track of document state in UI (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/747">#747</a>) (<a href="https://github.com/testing-library/user-event/commit/73e62d03877c736e18bc9e394e4ed07333b99933">73e62d0</a>)</li> <li>rewrite selection handling (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/776">#776</a>) (<a href="https://github.com/testing-library/user-event/commit/968c2c429e8d67974b9a313d1efab7d78c35c207">968c2c4</a>)</li> <li><strong>event:</strong> support <code>beforeinput</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/851">#851</a>) (<a href="https://github.com/testing-library/user-event/commit/8890bd6d17376205f553620148852d63f84d5565">8890bd6</a>)</li> <li>add <code>pointer</code> API (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/750">#750</a>) (<a href="https://github.com/testing-library/user-event/commit/c12ee44dc2caa19c5df98442759fcc9ae4ba167f">c12ee44</a>)</li> <li>add <code>setup</code> API (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/746">#746</a>) (<a href="https://github.com/testing-library/user-event/commit/719ba03af5647e09cd734f419ce5f234af60328a">719ba03</a>)</li> <li>add <code>userEvent.copy</code> and <code>userEvent.cut</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/787">#787</a>) (<a href="https://github.com/testing-library/user-event/commit/8727a2d7b1723287923bf5e6ea1c33844d9cccf5">8727a2d</a>)</li> <li>add <code>userEvent.tripleClick</code> API (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/773">#773</a>) (<a href="https://github.com/testing-library/user-event/commit/0badabdd504b0c42ad9adca94edd96ddb53ae303">0badabd</a>)</li> <li>apply modifier keys in pointer events (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/751">#751</a>) (<a href="https://github.com/testing-library/user-event/commit/e33eb86194e08a0bc46285ca1acb57d6d533fbb7">e33eb86</a>)</li> <li><strong>keyboard:</strong> add <code>[Tab]</code> support (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/767">#767</a>) (<a href="https://github.com/testing-library/user-event/commit/87470ffe49c93c0b7a858d5c07d660fede90f881">87470ff</a>)</li> <li><strong>keyboard:</strong> apply modifier state (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/815">#815</a>) (<a href="https://github.com/testing-library/user-event/commit/e9635f656298ef1f96bd255b0d89031e04441537">e9635f6</a>)</li> <li><strong>keyboard:</strong> move cursor and delete content in contenteditable (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/822">#822</a>) (<a href="https://github.com/testing-library/user-event/commit/b83b25927a38de2477099ec2ad2ad074a5296ce6">b83b259</a>)</li> <li><strong>keyboard:</strong> select all per <code>{Control}+[KeyA]</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/774">#774</a>) (<a href="https://github.com/testing-library/user-event/commit/ea9b18a0e96142f7d4cd80009a53be06a1431c07">ea9b18a</a>)</li> <li><strong>pointer:</strong> change selection per pointer (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/763">#763</a>) (<a href="https://github.com/testing-library/user-event/commit/17fb8b14056bb68d1c2fd9e8796c09e00aacd844">17fb8b1</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/user-event/commit/f209a6f863c3a5a85388222ed0e52e3c65af6de8"><code>f209a6f</code></a> chore: update link to CONTRIBUTORS</li> <li><a href="https://github.com/testing-library/user-event/commit/fc15e2576833a5a755d2f837ef23c41ac581829e"><code>fc15e25</code></a> chore: add codesandbox template without framework (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/884">#884</a>)</li> <li><a href="https://github.com/testing-library/user-event/commit/47de44cd3af183ab6389ecbbd05677f748f594a0"><code>47de44c</code></a> docs: add joshunger as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/883">#883</a>)</li> <li><a href="https://github.com/testing-library/user-event/commit/28d66044e4bbd25b1422c1107db7a5b9a538a150"><code>28d6604</code></a> fix: log correct docs link for invalid key descriptors (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/881">#881</a>)</li> <li><a href="https://github.com/testing-library/user-event/commit/e971a340764a54b70aaa7edefec77f9b9e981d6f"><code>e971a34</code></a> chore: update dependencies (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/882">#882</a>)</li> <li><a href="https://github.com/testing-library/user-event/commit/7a36ca81c6fbf8c2091093e1098056f93601260d"><code>7a36ca8</code></a> chore: fix typo in comment (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/875">#875</a>)</li> <li><a href="https://github.com/testing-library/user-event/commit/26dbc45d93931c1bb34c31beee60654e740bc23c"><code>26dbc45</code></a> chore: fix CODE_OF_CONDUCT.md location (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/879">#879</a>)</li> <li><a href="https://github.com/testing-library/user-event/commit/0da81d2567b7ce319567e13338cea8b65dbfeff7"><code>0da81d2</code></a> docs: add markwoon as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/873">#873</a>)</li> <li><a href="https://github.com/testing-library/user-event/commit/1a00fdfc3085addc4792897aecda202e07c3f5d2"><code>1a00fdf</code></a> fix: check for inherited <code>:disabled</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/872">#872</a>)</li> <li><a href="https://github.com/testing-library/user-event/commit/75fdd44c54d0229f1ef1c032e7d670cb272a288e"><code>75fdd44</code></a> docs: add lifeiscontent as a contributor for ideas (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/870">#870</a>)</li> <li>Additional commits viewable in <a href="https://github.com/testing-library/user-event/compare/v13.1.9...v14.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@testing-library/user-event&package-manager=npm_and_yarn&previous-version=13.1.9&new-version=14.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 21:45:04 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/asynqmon#972
No description provided.