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 the all group with 30 updates #1870

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 17, 2023

Bumps the all group with 30 updates:

Package From To
mediasoup 3.12.16 3.13.2
mediasoup-client 3.6.103 3.7.0
react-router-dom 6.17.0 6.19.0
react-select 5.7.7 5.8.0
slate-react 0.100.0 0.101.0
styled-components 6.1.0 6.1.1
@testing-library/react 14.0.0 14.1.1
@types/chai 4.3.9 4.3.10
@types/chai-as-promised 7.1.7 7.1.8
@types/dompurify 3.0.4 3.0.5
@types/element-resize-detector 1.1.5 1.1.6
@types/express 4.17.20 4.17.21
@types/http-proxy 1.17.13 1.17.14
@types/jsbn 1.2.32 1.2.33
@types/logfmt 1.2.5 1.2.6
@types/meteor 2.9.5 2.9.6
@types/mime-types 2.1.3 2.1.4
@types/mocha 10.0.3 10.0.4
@types/mustache 4.2.4 4.2.5
@types/portscanner 2.1.3 2.1.4
@types/react 18.2.33 18.2.37
@types/react-copy-to-clipboard 5.0.6 5.0.7
@types/react-dom 18.2.14 18.2.15
@types/react-router-bootstrap 0.26.5 0.26.6
@types/react-sparklines 1.7.4 1.7.5
@types/use-persisted-state 0.3.3 0.3.4
@types/ws 8.5.8 8.5.9
eslint 8.52.0 8.53.0
eslint-plugin-jsx-a11y 6.7.1 6.8.0
stylelint-scss 5.3.0 5.3.1

Updates mediasoup from 3.12.16 to 3.13.2

Release notes

Sourced from mediasoup's releases.

3.13.2

3.13.1

3.13.0

Changelog

Sourced from mediasoup's changelog.

3.13.2

3.13.1

3.13.0

Commits

Updates mediasoup-client from 3.6.103 to 3.7.0

Commits

Updates react-router-dom from 6.17.0 to 6.19.0

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9

react-router-dom-v5-compat@6.4.0-pre.8

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.8
    • react-router-dom@6.4.0-pre.8

react-router-dom-v5-compat@6.4.0-pre.7

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.7
    • react-router-dom@6.4.0-pre.7

react-router-dom-v5-compat@6.4.0-pre.6

Patch Changes

  • 44bce3c6: Fix react-router-dom peer dependency version
    • react-router@6.4.0-pre.6
    • react-router-dom@6.4.0-pre.6

react-router-dom-v5-compat@6.4.0-pre.5

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.19.0

Minor Changes

  • Add unstable_flushSync option to useNavigate/useSumbit/fetcher.load/fetcher.submit to opt-out of React.startTransition and into ReactDOM.flushSync for state updates (#11005)
  • Allow unstable_usePrompt to accept a BlockerFunction in addition to a boolean (#10991)

Patch Changes

  • Fix issue where a changing fetcher key in a useFetcher that remains mounted wasn't getting picked up (#11009)
  • Fix useFormAction which was incorrectly inheriting the ?index query param from child route action submissions (#11025)
  • Fix NavLink active logic when to location has a trailing slash (#10734)
  • Updated dependencies:
    • react-router@6.19.0
    • @remix-run/router@1.12.0

6.18.0

Minor Changes

  • Add support for manual fetcher key specification via useFetcher({ key: string }) so you can access the same fetcher instance from different components in your application without prop-drilling (RFC) (#10960)

    • Fetcher keys are now also exposed on the fetchers returned from useFetchers so that they can be looked up by key
  • Add navigate/fetcherKey params/props to useSumbit/Form to support kicking off a fetcher submission under the hood with an optionally user-specified key (#10960)

    • Invoking a fetcher in this way is ephemeral and stateless
    • If you need to access the state of one of these fetchers, you will need to leverage useFetcher({ key }) to look it up elsewhere

Patch Changes

  • Adds a fetcher context to RouterProvider that holds completed fetcher data, in preparation for the upcoming future flag that will change the fetcher persistence/cleanup behavior (#10961)
  • Fix the future prop on BrowserRouter, HashRouter and MemoryRouter so that it accepts a Partial<FutureConfig> instead of requiring all flags to be included. (#10962)
  • Updated dependencies:
    • @remix-run/router@1.11.0
    • react-router@6.18.0
Commits
  • dcf0c2a chore: Update version for release (#11035)
  • 7b1bd10 chore: Update version for release (pre) (#11026)
  • d5b9128 fix lint issues
  • 5563672 Fix useFormAction inheriting ?index param from child route action submission ...
  • 39854ce Fix useAcrtionData so it only returns the contextual route action data (#11023)
  • 811e9aa Fix bug with changing fetcher key in a mounted component (#11009)
  • 1193ae5 Add unstable_flushSync option (#11005)
  • fe066bd Fix issues with useFormAction/useResolvedPath for dot paths in param/splat ro...
  • 4f6c454 Stabilize and document useBlocker (#10991)
  • e6ac5f0 Fixed NavLink Issue (#10734)
  • Additional commits viewable in compare view

Updates react-select from 5.7.7 to 5.8.0

Release notes

Sourced from react-select's releases.

react-select@5.8.0

Minor Changes

  • 884f1c42 #5758 Thanks @​Ke1sy! - 1. Added 'aria-activedescendant' for input and functionality to calculate it;

    1. Added role 'option' and 'aria-selected' for option;
    2. Added role 'listbox' for menu;
    3. Added tests for 'aria-activedescendant';
    4. Changes in aria-live region:
    • the instructions how to use select will be announced only one time when user focuses the input for the first time.
    • instructions for menu or selected value will be announced only once after focusing them.
    • removed aria-live for focused option because currently with correct aria-attributes it will be announced by screenreader natively as well as the status of this option (active or disabled).
    • separated ariaContext into ariaFocused, ariaResults, ariaGuidance to avoid announcing redundant information and higlight only current change.
Commits

Updates slate-react from 0.100.0 to 0.101.0

Release notes

Sourced from slate-react's releases.

slate-react@0.101.0

Minor Changes

  • #5527 fc081816 Thanks @​skogsmaskin! - Fixes a bug with ReactEditor.focus where it would throw an error if the editor was in the middle of applying pending operations. With this change, setting focus will be retried until the editor no longer has any pending operations. Calling ReactEditor.focus on a editor without a current selection, will now make a selection in the top of the document.

Patch Changes

slate-react@0.100.1

Patch Changes

Commits

Updates styled-components from 6.1.0 to 6.1.1

Release notes

Sourced from styled-components's releases.

v6.1.1

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.0...v6.1.1

Commits

Updates @testing-library/react from 14.0.0 to 14.1.1

Release notes

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

v14.1.1

14.1.1 (2023-11-17)

Bug Fixes

v14.1.0

14.1.0 (2023-11-08)

Features

Commits

Updates @types/chai from 4.3.9 to 4.3.10

Commits

Updates @types/chai-as-promised from 7.1.7 to 7.1.8

Commits

Updates @types/dompurify from 3.0.4 to 3.0.5

Commits

Updates @types/element-resize-detector from 1.1.5 to 1.1.6

Commits

Updates @types/express from 4.17.20 to 4.17.21

Commits

Updates @types/http-proxy from 1.17.13 to 1.17.14

Commits

Updates @types/jsbn from 1.2.32 to 1.2.33

Commits

Updates @types/logfmt from 1.2.5 to 1.2.6

Commits

Updates @types/meteor from 2.9.5 to 2.9.6

Commits

Updates @types/mime-types from 2.1.3 to 2.1.4

Commits

Updates @types/mocha from 10.0.3 to 10.0.4

Commits

Updates @types/mustache from 4.2.4 to 4.2.5

Commits

Updates @types/portscanner from 2.1.3 to 2.1.4

Commits

Updates @types/react from 18.2.33 to 18.2.37

Commits

Updates @types/react-copy-to-clipboard from 5.0.6 to 5.0.7

Commits

Updates @types/react-dom from 18.2.14 to 18.2.15

Commits

Updates @types/react-router-bootstrap from 0.26.5 to 0.26.6

Commits

Updates @types/react-sparklines from 1.7.4 to 1.7.5

Commits

Updates @types/use-persisted-state from 0.3.3 to 0.3.4

Commits

Updates @types/ws from 8.5.8 to 8.5.9

Commits

Updates eslint from 8.52.0 to 8.53.0

Release notes

Sourced from eslint's releases.

v8.53.0

Features

  • 528e1c0 feat: Deprecate formatting rules (#17696) (Nicholas C. Zakas)
  • c0b11dd feat: Add suggestions for no-prototype-builtins (#17677) (Yonathan Randolph)

Bug Fixes

  • 1ad6257 fix: ensure that exit code for fatal errors is not overwritten (#17683) (Milos Djermanovic)
  • b329ea7 fix: add ; after JSX nodes in no-object-constructor autofix (#17672) (Francesco Trotta)

Documentation

  • ab8c60d docs: change position of return to top button (#17688) (Tanuj Kanti)
  • 4fc44c0 docs: update twitter icon to new X icon (#17687) (Tanuj Kanti)
  • 4164b2c docs: Update README (GitHub Actions Bot)
  • 8651895 docs: Fix tabs in rule examples (#17653) (Francesco Trotta)
  • 3aec1c5 docs: explained rule fixers and suggestions (#17657) (Josh Goldberg ✨)

Chores

  • ba4d4d5 chore: remove metascraper (#17707) (Milos Djermanovic)
  • 0d07338 chore: Update dependencies (#17706) (Milos Djermanovic)
  • 93256a3 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 485ec7d test: fix ESLint tests for caching (#17699) (Milos Djermanovic)
  • db06a7f ci: bump actions/setup-node from 3 to 4 (#17676) (dependabot[bot])
  • 994596b ci: run tests in Node.js 21 (#17673) (Francesco Trotta)
Changelog

Sourced from eslint's changelog.

v8.53.0 - November 3, 2023

  • ba4d4d5 chore: remove metascraper (#17707) (Milos Djermanovic)
  • 0d07338 chore: Update dependencies (#17706) (Milos Djermanovic)
  • 93256a3 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • ab8c60d docs: change position of return to top button (#17688) (Tanuj Kanti)
  • 528e1c0 feat: Deprecate formatting rules (#17696) (Nicholas C. Zakas)
  • 485ec7d test: fix ESLint tests for caching (#17699) (Milos Djermanovic)
  • c0b11dd feat: Add suggestions for no-prototype-builtins (#17677) (Yonathan Randolph)
  • 4fc44c0 docs: update twitter icon to new X icon (#17687) (Tanuj Kanti)
  • 1ad6257 fix: ensure that exit code for fatal errors is not overwritten (#17683) (Milos Djermanovic)
  • 4164b2c docs: Update README (GitHub Actions Bot)
  • 8651895 docs: Fix tabs in rule examples (#17653) (Francesco Trotta)
  • 3aec1c5 docs: explained rule fixers and suggestions (#17657) (Josh Goldberg ✨)
  • db06a7f ci: bump actions/setup-node from 3 to 4 (#17676) (dependabot[bot])
  • b329ea7 fix: add ; after JSX nodes in no-object-constructor autofix (#17672) (Francesco Trotta)
  • 994596b ci: run tests in Node.js 21 (#17673) (Francesco Trotta)
Commits

Updates eslint-plugin-jsx-a11y from 6.7.1 to 6.8.0

Changelog

Sourced from eslint-plugin-jsx-a11y's changelog.

v6.8.0 - 2023-11-01

Merged

Fixed

Commits

  • [Tests] migrate helper parsers function from eslint-plugin-react ce4d57f
  • [Refactor] use es-iterator-helpers 52de824
  • [New] mouse-events-have-key-events: add hoverInHandlers/hoverOutHandlers config db64898
  • [New] add polymorphicPropName setting for polymorphic components fffb05b
  • [Fix] isNonInteractiveElement: Upgrade aria-query to 5.3.0 and axobject-query to 3.2.1 64bfea6
  • [Refactor] use hasown instead of has 9a8edde
  • [actions] update used actions 10c061a
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, aud, eslint-doc-generator, eslint-plugin-import, minimist 6d5022d
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/register, eslint-doc-generator, eslint-plugin-import 4dc7f1e
  • [New] anchor-has-content: Allow title attribute OR aria-label attribute e6bfd5c
  • [patch] mouse-events-have-key-events: rport the attribute, not the node eadd70c
  • [Deps] update @babel/runtime, array-includes, array.prototype.flatmap, object.entries, object.fromentries 46ffbc3
  • [Deps] update @babel/runtime, axobject-query, jsx-ast-utils, semver 5999555
  • [Fix] pin aria-query and axe-core to fix failing tests on main 8d8f016
  • [patch] move semver from Deps to Dev Deps 4da13e7
  • [Deps] update ast-types-flow b755318
  • [Dev Deps] update eslint-plugin-import f1c976b
  • [Deps] unpin language-tags 3d1d26d
  • [Docs] no-static-element-interactions: tabIndex is written tabindex 1271153
  • [Deps] Upgrade ast-types-flow to mitigate Docker user namespacing problems f0d2ddb
  • [Dev Deps] pin jackspeak since 2.1.2+ depends on npm aliases, which kill the install process in npm < 6 0c278f4
Commits
  • 9742753 v6.8.0
  • b755318 [Deps] update ast-types-flow
  • f1c976b [Dev Deps] update eslint-plugin-import
  • 52de824 [Refactor] use es-iterator-helpers
  • 9a8edde [Refactor] use hasown instead of has
  • 46ffbc3 [Deps] update @babel/runtime, array-includes, array.prototype.flatmap, ...
  • 4dc7f1e [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, `@babe...
  • fffb05b [New] add polymorphicPropName setting for polymorphic components
  • 3d1d26d [Deps] unpin language-tags
  • 10c061a [actions] update used actions
  • Additional commits viewable in compare view

Updates stylelint-scss from 5.3.0 to 5.3.1

Release notes

Sourced from stylelint-scss's releases.

5.3.1

  • Fixed: improve block-no-redundant-nesting autofix (#883).

Full Changelog: stylelint-scss/stylelint-scss@v5.3.0...v5.3.1

Changelog

Sourced from stylelint-scss's changelog.

5.3.1

  • Fixed: improve block-no-redundant-nesting autofix (#883).

Full Changelog: stylelint-scss/stylelint-scss@v5.3.0...v5.3.1

Commits
  • 62ed2dc 5.3.1
  • fdc98ac Prepare version 5.3.1
  • 347c6d2 Improve block-no-redundant-nesting autofix (#883)
  • cee57ec build(deps-dev): bump jest from 29.6.2 to 29.7.0 (#880)
  • b323471 build(deps-dev): bump eslint from 8.50.0 to 8.52.0 (#881)
  • 26b0746 build(deps-dev): bump jest-preset-stylelint from 6.1.1 to 6.3.2 (#879)
  • a71ccb2 build(deps): bump known-css-properties from 0.28.0 to 0.29.0 (#877)
  • ab8c1c8 build(deps): bump actions/setup-node from 3 to 4 (#876)
  • See full diff in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
styled-components [< 6.1, > 6.0.7]

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 30 updates:

| Package | From | To |
| --- | --- | --- |
| [mediasoup](https://github.com/versatica/mediasoup) | `3.12.16` | `3.13.2` |
| [mediasoup-client](https://github.com/versatica/mediasoup-client) | `3.6.103` | `3.7.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.17.0` | `6.19.0` |
| [react-select](https://github.com/JedWatson/react-select) | `5.7.7` | `5.8.0` |
| [slate-react](https://github.com/ianstormtaylor/slate) | `0.100.0` | `0.101.0` |
| [styled-components](https://github.com/styled-components/styled-components) | `6.1.0` | `6.1.1` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `14.0.0` | `14.1.1` |
| [@types/chai](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chai) | `4.3.9` | `4.3.10` |
| [@types/chai-as-promised](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chai-as-promised) | `7.1.7` | `7.1.8` |
| [@types/dompurify](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dompurify) | `3.0.4` | `3.0.5` |
| [@types/element-resize-detector](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/element-resize-detector) | `1.1.5` | `1.1.6` |
| [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express) | `4.17.20` | `4.17.21` |
| [@types/http-proxy](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/http-proxy) | `1.17.13` | `1.17.14` |
| [@types/jsbn](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsbn) | `1.2.32` | `1.2.33` |
| [@types/logfmt](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/logfmt) | `1.2.5` | `1.2.6` |
| [@types/meteor](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/meteor) | `2.9.5` | `2.9.6` |
| [@types/mime-types](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mime-types) | `2.1.3` | `2.1.4` |
| [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha) | `10.0.3` | `10.0.4` |
| [@types/mustache](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mustache) | `4.2.4` | `4.2.5` |
| [@types/portscanner](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/portscanner) | `2.1.3` | `2.1.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.33` | `18.2.37` |
| [@types/react-copy-to-clipboard](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-copy-to-clipboard) | `5.0.6` | `5.0.7` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.14` | `18.2.15` |
| [@types/react-router-bootstrap](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-router-bootstrap) | `0.26.5` | `0.26.6` |
| [@types/react-sparklines](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-sparklines) | `1.7.4` | `1.7.5` |
| [@types/use-persisted-state](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/use-persisted-state) | `0.3.3` | `0.3.4` |
| [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.8` | `8.5.9` |
| [eslint](https://github.com/eslint/eslint) | `8.52.0` | `8.53.0` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.7.1` | `6.8.0` |
| [stylelint-scss](https://github.com/stylelint-scss/stylelint-scss) | `5.3.0` | `5.3.1` |


Updates `mediasoup` from 3.12.16 to 3.13.2
- [Release notes](https://github.com/versatica/mediasoup/releases)
- [Changelog](https://github.com/versatica/mediasoup/blob/v3/CHANGELOG.md)
- [Commits](versatica/mediasoup@3.12.16...3.13.2)

Updates `mediasoup-client` from 3.6.103 to 3.7.0
- [Commits](versatica/mediasoup-client@3.6.103...3.7.0)

Updates `react-router-dom` from 6.17.0 to 6.19.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.19.0/packages/react-router-dom)

Updates `react-select` from 5.7.7 to 5.8.0
- [Release notes](https://github.com/JedWatson/react-select/releases)
- [Changelog](https://github.com/JedWatson/react-select/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/JedWatson/react-select/compare/react-select@5.7.7...react-select@5.8.0)

Updates `slate-react` from 0.100.0 to 0.101.0
- [Release notes](https://github.com/ianstormtaylor/slate/releases)
- [Commits](https://github.com/ianstormtaylor/slate/compare/slate-react@0.100.0...slate-react@0.101.0)

Updates `styled-components` from 6.1.0 to 6.1.1
- [Release notes](https://github.com/styled-components/styled-components/releases)
- [Commits](styled-components/styled-components@v6.1.0...v6.1.1)

Updates `@testing-library/react` from 14.0.0 to 14.1.1
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v14.0.0...v14.1.1)

Updates `@types/chai` from 4.3.9 to 4.3.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chai)

Updates `@types/chai-as-promised` from 7.1.7 to 7.1.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chai-as-promised)

Updates `@types/dompurify` from 3.0.4 to 3.0.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/dompurify)

Updates `@types/element-resize-detector` from 1.1.5 to 1.1.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/element-resize-detector)

Updates `@types/express` from 4.17.20 to 4.17.21
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express)

Updates `@types/http-proxy` from 1.17.13 to 1.17.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/http-proxy)

Updates `@types/jsbn` from 1.2.32 to 1.2.33
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsbn)

Updates `@types/logfmt` from 1.2.5 to 1.2.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/logfmt)

Updates `@types/meteor` from 2.9.5 to 2.9.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/meteor)

Updates `@types/mime-types` from 2.1.3 to 2.1.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mime-types)

Updates `@types/mocha` from 10.0.3 to 10.0.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mocha)

Updates `@types/mustache` from 4.2.4 to 4.2.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mustache)

Updates `@types/portscanner` from 2.1.3 to 2.1.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/portscanner)

Updates `@types/react` from 18.2.33 to 18.2.37
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-copy-to-clipboard` from 5.0.6 to 5.0.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-copy-to-clipboard)

Updates `@types/react-dom` from 18.2.14 to 18.2.15
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@types/react-router-bootstrap` from 0.26.5 to 0.26.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-router-bootstrap)

Updates `@types/react-sparklines` from 1.7.4 to 1.7.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-sparklines)

Updates `@types/use-persisted-state` from 0.3.3 to 0.3.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/use-persisted-state)

Updates `@types/ws` from 8.5.8 to 8.5.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws)

Updates `eslint` from 8.52.0 to 8.53.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.52.0...v8.53.0)

Updates `eslint-plugin-jsx-a11y` from 6.7.1 to 6.8.0
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.7.1...v6.8.0)

Updates `stylelint-scss` from 5.3.0 to 5.3.1
- [Release notes](https://github.com/stylelint-scss/stylelint-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-scss/blob/master/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-scss@v5.3.0...v5.3.1)

---
updated-dependencies:
- dependency-name: mediasoup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: mediasoup-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: react-select
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: slate-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: styled-components
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@types/chai"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/chai-as-promised"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/dompurify"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/element-resize-detector"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/express"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/http-proxy"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/jsbn"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/logfmt"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/meteor"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/mime-types"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/mocha"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/mustache"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/portscanner"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/react-copy-to-clipboard"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/react-router-bootstrap"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/react-sparklines"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/use-persisted-state"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/ws"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: stylelint-scss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 17, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 22, 2023

The group that created this PR has been removed from your configuration.

@dependabot dependabot bot closed this Nov 22, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-df3c3f52bd branch November 22, 2023 22:31
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 javascript Pull requests that update Javascript code
Development

Successfully merging this pull request may close these issues.

0 participants