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 34 updates #1848

Merged
merged 1 commit into from
Oct 30, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 30, 2023

Bumps the all group with 34 updates:

Package From To
mediasoup 3.12.13 3.12.16
mediasoup-client 3.6.101 3.6.103
react-bootstrap 2.9.0 2.9.1
react-router-dom 6.16.0 6.17.0
slate 0.94.1 0.100.0
slate-history 0.93.0 0.100.0
slate-react 0.99.0 0.100.0
styled-components 6.0.7 6.1.0
winston-transport 4.5.0 4.6.0
@types/chai 4.3.8 4.3.9
@types/chai-as-promised 7.1.6 7.1.7
@types/dompurify 3.0.3 3.0.4
@types/element-resize-detector 1.1.4 1.1.5
@types/express 4.17.19 4.17.20
@types/http-proxy 1.17.12 1.17.13
@types/jsbn 1.2.31 1.2.32
@types/logfmt 1.2.4 1.2.5
@types/meteor 2.9.4 2.9.5
@types/mime-types 2.1.2 2.1.3
@types/mocha 10.0.2 10.0.3
@types/mustache 4.2.3 4.2.4
@types/portscanner 2.1.2 2.1.3
@types/react 18.2.28 18.2.33
@types/react-copy-to-clipboard 5.0.5 5.0.6
@types/react-dom 18.2.13 18.2.14
@types/react-router-bootstrap 0.26.3 0.26.5
@types/react-sparklines 1.7.3 1.7.4
@types/use-persisted-state 0.3.2 0.3.3
@types/ws 8.5.7 8.5.8
eslint 8.51.0 8.52.0
eslint-formatter-gha 1.4.2 1.4.3
eslint-plugin-import 2.28.1 2.29.0
stylelint 15.10.3 15.11.0
stylelint-scss 5.2.1 5.3.0

Updates mediasoup from 3.12.13 to 3.12.16

Release notes

Sourced from mediasoup's releases.

3.12.16

3.12.15

3.12.14

Changelog

Sourced from mediasoup's changelog.

3.12.16

3.12.15

3.12.14

Commits

Updates mediasoup-client from 3.6.101 to 3.6.103

Commits

Updates react-bootstrap from 2.9.0 to 2.9.1

Release notes

Sourced from react-bootstrap's releases.

v2.9.1

2.9.1 (2023-10-21)

Bug Fixes

Changelog

Sourced from react-bootstrap's changelog.

2.9.1 (2023-10-21)

Bug Fixes

Commits

Updates react-router-dom from 6.16.0 to 6.17.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.17.0

Minor Changes

  • Add experimental support for the View Transitions API via document.startViewTransition to enable CSS animated transitions on SPA navigations in your application. (#10916)

    The simplest approach to enabling a View Transition in your React Router app is via the new <Link unstable_viewTransition> prop. This will cause the navigation DOM update to be wrapped in document.startViewTransition which will enable transitions for the DOM update. Without any additional CSS styles, you'll get a basic cross-fade animation for your page.

    If you need to apply more fine-grained styles for your animations, you can leverage the unstable_useViewTransitionState hook which will tell you when a transition is in progress and you can use that to apply classes or styles:

    function ImageLink(to, src, alt) {
      let isTransitioning = unstable_useViewTransitionState(to);
      return (
        <Link to={to} unstable_viewTransition>
          <img
            src={src}
            alt={alt}
            style={{
              viewTransitionName: isTransitioning ? "image-expand" : "",
            }}
          />
        </Link>
      );
    }

    You can also use the <NavLink unstable_viewTransition> shorthand which will manage the hook usage for you and automatically add a transitioning class to the <a> during the transition:

    a.transitioning img {
      view-transition-name: "image-expand";
    }
    <NavLink to={to} unstable_viewTransition>
      <img src={src} alt={alt} />
    </NavLink>

    For an example usage of View Transitions with React Router, check out our fork of the Astro Records demo.

    For more information on using the View Transitions API, please refer to the Smooth and simple transitions with the View Transitions API guide from the Google Chrome team.

    Please note, that because the ViewTransition API is a DOM API, we now export a specific RouterProvider from react-router-dom with this functionality. If you are importing RouterProvider from react-router, then it will not support view transitions. (#10928

Patch Changes

  • Log a warning and fail gracefully in ScrollRestoration when sessionStorage is unavailable (#10848)

... (truncated)

Commits

Updates slate from 0.94.1 to 0.100.0

Release notes

Sourced from slate's releases.

slate-history@0.100.0

Minor Changes

slate-hyperscript@0.100.0

Minor Changes

slate-react@0.100.0

Minor Changes

slate@0.100.0

Minor Changes

slate-react@0.99.0

Minor Changes

Patch Changes

slate-react@0.98.4

Patch Changes

slate-react@0.98.3

Patch Changes

slate-react@0.98.2

Patch Changes

slate-react@0.98.1

Patch Changes

... (truncated)

Commits

Updates slate-history from 0.93.0 to 0.100.0

Release notes

Sourced from slate-history's releases.

slate-history@0.100.0

Minor Changes

Commits

Updates slate-react from 0.99.0 to 0.100.0

Release notes

Sourced from slate-react's releases.

slate-react@0.100.0

Minor Changes

Commits

Updates styled-components from 6.0.7 to 6.1.0

Release notes

Sourced from styled-components's releases.

v6.1.0

What's Changed

New Contributors

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

v6.0.9

fix bundling to not hardcode window (should fix some testing use cases that were incorrectly assuming a server environment when JSDOM and similar are in use)

Full Changelog: styled-components/styled-components@v6.0.8...v6.0.9

v6.0.8

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.0.7...v6.0.8

Commits
  • 669b67c v6.1.0
  • 1d869d4 chore: remove babel macro due to lack of usage (#4193)
  • 19ccfee fix ts warning (#4190)
  • 17dcdea Bump postcss version from 8.4.23 to 8.4.31 to fix security vulnerability (SYN...
  • b7b374b chore: bump version
  • 254688b fix: do not inline window, breaks jest
  • cb9b8c1 chore: v6.0.8
  • 71af2e9 chore: suppress apparently corrupted ref type from React
  • f4173ea refactor: adjust types
  • 5a41553 chore: expose DataAttributes type
  • Additional commits viewable in compare view

Updates winston-transport from 4.5.0 to 4.6.0

Release notes

Sourced from winston-transport's releases.

v4.6.0

  • Bump deep-equal from 2.0.5 to 2.2.2 (#178) a6d22ea
  • Update dependencies and increase minimum node engine to 12 b81a3dc
  • Update CI node versions to match winston 35d171a
  • Bump eslint from 8.25.0 to 8.35.0 (#176) 80ba040
  • Bump @​types/node from 18.11.0 to 18.14.6 (#177) aefef19
  • Bump decode-uri-component from 0.2.0 to 0.2.2 (#159) 70e5b8b
  • Bump eslint from 8.16.0 to 8.25.0 (#148) 0e5e4c0
  • Bump mocha from 10.0.0 to 10.1.0 (#150) 760fe66
  • Bump @​types/node from 17.0.36 to 18.11.0 (#151) 09f7424
  • Bump logform from 2.4.1 to 2.4.2 (#126) 29684d1
  • Bump logform from 2.4.0 to 2.4.1 (#122) 51baf61
  • Bump @​types/node from 17.0.21 to 17.0.36 (#115) fdf7ccc
  • Bump eslint from 8.10.0 to 8.16.0 (#114) 193154a
  • Bump mocha from 9.2.1 to 10.0.0 (#109) 8de37e4
  • Bump minimist from 1.2.5 to 1.2.6 (#104) c4d1124
  • Bump actions/setup-node from 2 to 3 (#95) 8edbd94
  • Bump @​types/node from 17.0.15 to 17.0.21 (#94) 9cbf51f
  • Bump eslint from 8.8.0 to 8.10.0 (#93) f240c35
  • Bump mocha from 9.2.0 to 9.2.1 (#91) 49e2c8c
  • Bump logform from 2.3.2 to 2.4.0 (#90) 8614b9f
  • Bump actions/checkout from 2 to 3 (#96) 98a481d

winstonjs/winston-transport@v4.5.0...v4.6.0

Changelog

Sourced from winston-transport's changelog.

CHANGELOG

Commits
  • 48b1404 4.6.0
  • a6d22ea Bump deep-equal from 2.0.5 to 2.2.2 (#178)
  • b81a3dc Update dependencies and increase minimum node engine to 12
  • 35d171a Update CI node versions to match winston
  • 80ba040 Bump eslint from 8.25.0 to 8.35.0 (#176)
  • aefef19 Bump @​types/node from 18.11.0 to 18.14.6 (#177)
  • 70e5b8b Bump decode-uri-component from 0.2.0 to 0.2.2 (#159)
  • 0e5e4c0 Bump eslint from 8.16.0 to 8.25.0 (#148)
  • 760fe66 Bump mocha from 10.0.0 to 10.1.0 (#150)
  • 09f7424 Bump @​types/node from 17.0.36 to 18.11.0 (#151)
  • Additional commits viewable in compare view

Updates @types/chai from 4.3.8 to 4.3.9

Commits

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

Commits

Updates @types/dompurify from 3.0.3 to 3.0.4

Commits

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

Commits

Updates @types/express from 4.17.19 to 4.17.20

Commits

Updates @types/http-proxy from 1.17.12 to 1.17.13

Commits

Updates @types/jsbn from 1.2.31 to 1.2.32

Commits

Updates @types/logfmt from 1.2.4 to 1.2.5

Commits

Updates @types/meteor from 2.9.4 to 2.9.5

Commits

Updates @types/mime-types from 2.1.2 to 2.1.3

Commits

Updates @types/mocha from 10.0.2 to 10.0.3

Commits

Updates @types/mustache from 4.2.3 to 4.2.4

Commits

Updates @types/portscanner from 2.1.2 to 2.1.3

Commits

Updates @types/react from 18.2.28 to 18.2.33

Commits

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

Commits

Updates @types/react-dom from 18.2.13 to 18.2.14

Commits

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

Commits

Updates @types/react-sparklines from 1.7.3 to 1.7.4

Commits

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

Commits

Updates @types/ws from 8.5.7 to 8.5.8

Commits

Updates eslint from 8.51.0 to 8.52.0

Release notes

Sourced from eslint's releases.

v8.52.0

Features

  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611) (Yosuke Ota)

Bug Fixes

  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666) (Nicholas C. Zakas)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649) (Francesco Trotta)

Documentation

  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664) (Nicholas C. Zakas)
  • 660ed3a docs: Plugin flat config migration guide (#17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (#17631) (Francesco Trotta)
  • 000290c docs: Update README (GitHub Actions Bot)

Chores

  • 6d1f0c2 chore: upgrade @​eslint/js@​8.52.0 (#17671) (Milos Djermanovic)
  • d63d4fe chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • f30cefe test: fix FlatESLint tests for caching (#17658) (Milos Djermanovic)
  • ef650cb test: update tests for no-promise-executor-return (#17661) (Milos Djermanovic)
Changelog

Sourced from eslint's changelog.

v8.52.0 - October 20, 2023

  • 6d1f0c2 chore: upgrade @​eslint/js@​8.52.0 (#17671) (Milos Djermanovic)
  • d63d4fe chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664) (Nicholas C. Zakas)
  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666) (Nicholas C. Zakas)
  • f30cefe test: fix FlatESLint tests for caching (#17658) (Milos Djermanovic)
  • ef650cb test: update tests for no-promise-executor-return (#17661) (Milos Djermanovic)
  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611) (Yosuke Ota)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649) (Francesco Trotta)
  • 660ed3a docs: Plugin flat config migration guide (#17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#17626) (Francesco Trotta)

Bumps the all group with 34 updates:

| Package | From | To |
| --- | --- | --- |
| [mediasoup](https://github.com/versatica/mediasoup) | `3.12.13` | `3.12.16` |
| [mediasoup-client](https://github.com/versatica/mediasoup-client) | `3.6.101` | `3.6.103` |
| [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) | `2.9.0` | `2.9.1` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.16.0` | `6.17.0` |
| [slate](https://github.com/ianstormtaylor/slate) | `0.94.1` | `0.100.0` |
| [slate-history](https://github.com/ianstormtaylor/slate) | `0.93.0` | `0.100.0` |
| [slate-react](https://github.com/ianstormtaylor/slate) | `0.99.0` | `0.100.0` |
| [styled-components](https://github.com/styled-components/styled-components) | `6.0.7` | `6.1.0` |
| [winston-transport](https://github.com/winstonjs/winston-transport) | `4.5.0` | `4.6.0` |
| [@types/chai](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chai) | `4.3.8` | `4.3.9` |
| [@types/chai-as-promised](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chai-as-promised) | `7.1.6` | `7.1.7` |
| [@types/dompurify](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dompurify) | `3.0.3` | `3.0.4` |
| [@types/element-resize-detector](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/element-resize-detector) | `1.1.4` | `1.1.5` |
| [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express) | `4.17.19` | `4.17.20` |
| [@types/http-proxy](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/http-proxy) | `1.17.12` | `1.17.13` |
| [@types/jsbn](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsbn) | `1.2.31` | `1.2.32` |
| [@types/logfmt](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/logfmt) | `1.2.4` | `1.2.5` |
| [@types/meteor](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/meteor) | `2.9.4` | `2.9.5` |
| [@types/mime-types](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mime-types) | `2.1.2` | `2.1.3` |
| [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha) | `10.0.2` | `10.0.3` |
| [@types/mustache](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mustache) | `4.2.3` | `4.2.4` |
| [@types/portscanner](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/portscanner) | `2.1.2` | `2.1.3` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.28` | `18.2.33` |
| [@types/react-copy-to-clipboard](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-copy-to-clipboard) | `5.0.5` | `5.0.6` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.13` | `18.2.14` |
| [@types/react-router-bootstrap](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-router-bootstrap) | `0.26.3` | `0.26.5` |
| [@types/react-sparklines](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-sparklines) | `1.7.3` | `1.7.4` |
| [@types/use-persisted-state](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/use-persisted-state) | `0.3.2` | `0.3.3` |
| [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.7` | `8.5.8` |
| [eslint](https://github.com/eslint/eslint) | `8.51.0` | `8.52.0` |
| [eslint-formatter-gha](https://github.com/sjinks/eslint-gha-formatter) | `1.4.2` | `1.4.3` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.28.1` | `2.29.0` |
| [stylelint](https://github.com/stylelint/stylelint) | `15.10.3` | `15.11.0` |
| [stylelint-scss](https://github.com/stylelint-scss/stylelint-scss) | `5.2.1` | `5.3.0` |


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

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

Updates `react-bootstrap` from 2.9.0 to 2.9.1
- [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases)
- [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md)
- [Commits](react-bootstrap/react-bootstrap@v2.9.0...v2.9.1)

Updates `react-router-dom` from 6.16.0 to 6.17.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.17.0/packages/react-router-dom)

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

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

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

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

Updates `winston-transport` from 4.5.0 to 4.6.0
- [Release notes](https://github.com/winstonjs/winston-transport/releases)
- [Changelog](https://github.com/winstonjs/winston-transport/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston-transport@v4.5.0...v4.6.0)

Updates `@types/chai` from 4.3.8 to 4.3.9
- [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.6 to 7.1.7
- [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.3 to 3.0.4
- [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.4 to 1.1.5
- [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.19 to 4.17.20
- [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.12 to 1.17.13
- [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.31 to 1.2.32
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsbn)

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

Updates `@types/meteor` from 2.9.4 to 2.9.5
- [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.2 to 2.1.3
- [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.2 to 10.0.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mocha)

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

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

Updates `@types/react` from 18.2.28 to 18.2.33
- [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.5 to 5.0.6
- [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.13 to 18.2.14
- [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.3 to 0.26.5
- [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.3 to 1.7.4
- [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.2 to 0.3.3
- [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.7 to 8.5.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws)

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

Updates `eslint-formatter-gha` from 1.4.2 to 1.4.3
- [Release notes](https://github.com/sjinks/eslint-gha-formatter/releases)
- [Commits](sjinks/eslint-gha-formatter@1.4.2...1.4.3)

Updates `eslint-plugin-import` from 2.28.1 to 2.29.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.28.1...v2.29.0)

Updates `stylelint` from 15.10.3 to 15.11.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@15.10.3...15.11.0)

Updates `stylelint-scss` from 5.2.1 to 5.3.0
- [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.2.1...v5.3.0)

---
updated-dependencies:
- dependency-name: mediasoup
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: mediasoup-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: react-bootstrap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: slate
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: slate-history
  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-minor
  dependency-group: all
- dependency-name: winston-transport
  dependency-type: direct:production
  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-formatter-gha
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: stylelint
  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-minor
  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 Oct 30, 2023
@ebroder ebroder enabled auto-merge October 30, 2023 16:10
@ebroder ebroder merged commit eb1138b into main Oct 30, 2023
1 check passed
@ebroder ebroder deleted the dependabot/npm_and_yarn/all-d969121ff7 branch October 30, 2023 16:17
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.

1 participant