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 dependencies group with 32 updates #1431

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 18, 2023

Bumps the dependencies group with 32 updates:

Package From To
react-helmet-async 1.3.0 2.0.3
react-router-dom 6.16.0 6.21.0
react-tiny-popover 5.1.0 8.0.4
react-use 17.4.0 17.4.2
@babel/core 7.22.19 7.23.6
@babel/eslint-parser 7.22.15 7.23.3
@babel/preset-env 7.22.15 7.23.6
@babel/preset-react 7.22.15 7.23.3
@octokit/auth-action 4.0.0 4.0.1
@octokit/rest 20.0.1 20.0.2
autoprefixer 10.4.15 10.4.16
cypress 13.2.0 13.6.1
eslint 8.49.0 8.56.0
eslint-config-prettier 9.0.0 9.1.0
eslint-plugin-cypress 2.14.0 2.15.1
eslint-plugin-mdx 2.2.0 3.0.0
html-webpack-plugin 5.5.3 5.5.4
lightningcss 1.21.8 1.22.1
lint-staged 14.0.1 15.2.0
markdownlint-cli 0.36.0 0.38.0
postcss 8.4.29 8.4.32
prettier 3.0.3 3.1.1
remark 14.0.3 15.0.1
remark-emoji 4.0.0 4.0.1
remark-frontmatter 4.0.1 5.0.0
remark-html 15.0.2 16.0.1
rimraf 5.0.1 5.0.5
sass 1.67.0 1.69.5
tailwindcss 3.3.3 3.3.6
webpack 5.88.2 5.89.0
webpack-bundle-analyzer 4.9.1 4.10.1
webpack-merge 5.9.0 5.10.0

Updates react-helmet-async from 1.3.0 to 2.0.3

Commits

Updates react-router-dom from 6.16.0 to 6.21.0

Release notes

Sourced from react-router-dom's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.21.0

Minor Changes

  • Add a new future.v7_relativeSplatPath flag to implement a breaking bug fix to relative routing when inside a splat route. (#11087)

    This fix was originally added in #10983 and was later reverted in #11078 because it was determined that a large number of existing applications were relying on the buggy behavior (see #11052)

    The Bug The buggy behavior is that without this flag, the default behavior when resolving relative paths is to ignore any splat (*) portion of the current route path.

    The Background This decision was originally made thinking that it would make the concept of nested different sections of your apps in <Routes> easier if relative routing would replace the current splat:

    <BrowserRouter>
      <Routes>
        <Route path="/" element={<Home />} />
        <Route path="dashboard/*" element={<Dashboard />} />
      </Routes>
    </BrowserRouter>

    Any paths like /dashboard, /dashboard/team, /dashboard/projects will match the Dashboard route. The dashboard component itself can then render nested <Routes>:

    function Dashboard() {
      return (
        <div>
          <h2>Dashboard</h2>
          <nav>
            <Link to="/">Dashboard Home</Link>
            <Link to="team">Team</Link>
            <Link to="projects">Projects</Link>
          </nav>
      &lt;Routes&gt;
        &lt;Route path=&quot;/&quot; element={&lt;DashboardHome /&gt;} /&gt;
        &lt;Route path=&quot;team&quot; element={&lt;DashboardTeam /&gt;} /&gt;
        &lt;Route path=&quot;projects&quot; element={&lt;DashboardProjects /&gt;} /&gt;
      &lt;/Routes&gt;
    &lt;/div&gt;
    
    );
    }

    Now, all links and route paths are relative to the router above them. This makes code splitting and compartmentalizing your app really easy. You could render the Dashboard as its own independent app, or embed it into your large app without making any changes to it.

    The Problem

... (truncated)

Commits

Updates react-tiny-popover from 5.1.0 to 8.0.4

Commits

Updates react-use from 17.4.0 to 17.4.2

Release notes

Sourced from react-use's releases.

v17.4.2

17.4.2 (2023-12-01)

Bug Fixes

  • correct peer dependencies (d770587)

v17.4.1

17.4.1 (2023-11-28)

Bug Fixes

  • 🐛 bump nano-css version (812952b)
Changelog

Sourced from react-use's changelog.

17.4.2 (2023-12-01)

Bug Fixes

  • correct peer dependencies (d770587)

17.4.1 (2023-11-28)

Bug Fixes

  • 🐛 bump nano-css version (812952b)
Commits
  • e27c193 chore(release): 17.4.2 [skip ci]
  • d770587 fix: correct peer dependencies
  • 4b6298c chore(release): 17.4.1 [skip ci]
  • 812952b fix: 🐛 bump nano-css version
  • 325f5bd chore(deps): update node.js to v14.21.1
  • 50857c2 chore(deps): update dependency ts-node to v10.9.1
  • 8774519 chore(deps): update dependency ts-loader to v8.4.0
  • 86f5047 chore(deps): update dependency rxjs to v7.5.7
  • 9b62643 chore(deps): update dependency react-spring to v9.5.5
  • bb12ff2 chore(deps): update dependency lint-staged to v12.5.0
  • Additional commits viewable in compare view

Updates @babel/core from 7.22.19 to 7.23.6

Release notes

Sourced from @​babel/core's releases.

v7.23.6 (2023-12-11)

Thanks @​martinez-hugo and @​odinho for your first pull requests!

👓 Spec Compliance

  • babel-generator, babel-parser, babel-types
  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-types

🐛 Bug Fix

  • babel-generator
  • babel-helpers, babel-plugin-proposal-explicit-resource-management
  • babel-plugin-proposal-decorators, babel-plugin-transform-class-properties
    • #16161 Ensure the [[@@toPrimitive]] call of a decorated class member key is invoked once (@​JLHwung)
    • #16148 Support named evaluation for decorated anonymous class exp (@​JLHwung)
  • babel-plugin-transform-for-of, babel-preset-env
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-plugin-transform-typescript

🔬 Output optimization

  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-helpers, babel-plugin-proposal-decorators

Committers: 7

v7.23.5 (2023-11-29)

👓 Spec Compliance

  • babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators

🐛 Bug Fix

  • babel-traverse, babel-types

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.23.6 (2023-12-11)

👓 Spec Compliance

  • babel-generator, babel-parser, babel-types
  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-types

🐛 Bug Fix

  • babel-generator
  • babel-helpers, babel-plugin-proposal-explicit-resource-management
  • babel-plugin-proposal-decorators, babel-plugin-transform-class-properties
    • #16161 Ensure the [[@@toPrimitive]] call of a decorated class member key is invoked once (@​JLHwung)
    • #16148 Support named evaluation for decorated anonymous class exp (@​JLHwung)
  • babel-plugin-transform-for-of, babel-preset-env
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-plugin-transform-typescript

🔬 Output optimization

  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-helpers, babel-plugin-proposal-decorators

v7.23.5 (2023-11-29)

👓 Spec Compliance

  • babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators

🐛 Bug Fix

  • babel-traverse, babel-types
  • babel-plugin-transform-classes
  • babel-generator
  • babel-helpers
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties, babel-plugin-transform-typescript
  • babel-generator, babel-plugin-transform-modules-commonjs, babel-plugin-transform-parameters, babel-plugin-transform-typescript, babel-traverse
  • babel-eslint-plugin

... (truncated)

Commits

Updates @babel/eslint-parser from 7.22.15 to 7.23.3

Release notes

Sourced from @​babel/eslint-parser's releases.

v7.23.3 (2023-11-09)

🐛 Bug Fix

  • babel-plugin-transform-typescript
  • babel-generator
  • babel-compat-data, babel-plugin-bugfix-v8-static-class-fields-redefine-readonly, babel-preset-env
  • babel-plugin-transform-object-super
  • babel-helper-module-transforms, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-umd

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

🔬 Output optimization

  • babel-plugin-transform-computed-properties

Committers: 9

v7.23.2 (2023-10-11)

NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release commit.

Thanks @​jimmydief for your first PR!

🐛 Bug Fix

  • babel-traverse

... (truncated)

Changelog

Sourced from @​babel/eslint-parser's changelog.

v7.23.3 (2023-11-09)

🐛 Bug Fix

  • babel-plugin-transform-typescript
  • babel-generator
  • babel-compat-data, babel-plugin-bugfix-v8-static-class-fields-redefine-readonly, babel-preset-env
  • babel-plugin-transform-object-super
  • babel-helper-module-transforms, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-umd

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

🔬 Output optimization

  • babel-plugin-transform-computed-properties

v7.23.2 (2023-10-11)

🐛 Bug Fix

  • babel-traverse
  • babel-preset-typescript
  • babel-helpers
    • #16017 Fix: fallback to typeof when toString is applied to incompatible object (@​JLHwung)
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

v7.23.0 (2023-09-25)

🚀 New Feature

  • babel-plugin-proposal-import-wasm-source, babel-plugin-syntax-import-source, babel-plugin-transform-dynamic-import
  • babel-helper-module-transforms, babel-helpers, babel-plugin-proposal-import-defer, babel-plugin-syntax-import-defer, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-standalone
  • babel-generator, babel-parser, babel-types

... (truncated)

Commits

Updates @babel/preset-env from 7.22.15 to 7.23.6

Release notes

Sourced from @​babel/preset-env's releases.

v7.23.6 (2023-12-11)

Thanks @​martinez-hugo and @​odinho for your first pull requests!

👓 Spec Compliance

  • babel-generator, babel-parser, babel-types
  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-types

🐛 Bug Fix

  • babel-generator
  • babel-helpers, babel-plugin-proposal-explicit-resource-management
  • babel-plugin-proposal-decorators, babel-plugin-transform-class-properties
    • #16161 Ensure the [[@@toPrimitive]] call of a decorated class member key is invoked once (@​JLHwung)
    • #16148 Support named evaluation for decorated anonymous class exp (@​JLHwung)
  • babel-plugin-transform-for-of, babel-preset-env
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-plugin-transform-typescript

🔬 Output optimization

  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-helpers, babel-plugin-proposal-decorators

Committers: 7

v7.23.5 (2023-11-29)

👓 Spec Compliance

  • babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators

🐛 Bug Fix

  • babel-traverse, babel-types

... (truncated)

Changelog

Sourced from @​babel/preset-env's changelog.

v7.23.6 (2023-12-11)

👓 Spec Compliance

  • babel-generator, babel-parser, babel-types
  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-types

🐛 Bug Fix

  • babel-generator
  • babel-helpers, babel-plugin-proposal-explicit-resource-management
  • babel-plugin-proposal-decorators, babel-plugin-transform-class-properties
    • #16161 Ensure the [[@@toPrimitive]] call of a decorated class member key is invoked once (@​JLHwung)
    • #16148 Support named evaluation for decorated anonymous class exp (@​JLHwung)
  • babel-plugin-transform-for-of, babel-preset-env
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-plugin-transform-typescript

🔬 Output optimization

  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-helpers, babel-plugin-proposal-decorators

v7.23.5 (2023-11-29)

👓 Spec Compliance

  • babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators

🐛 Bug Fix

  • babel-traverse, babel-types
  • babel-plugin-transform-classes
  • babel-generator
  • babel-helpers
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties, babel-plugin-transform-typescript
  • babel-generator, babel-plugin-transform-modules-commonjs, babel-plugin-transform-parameters, babel-plugin-transform-typescript, babel-traverse
  • babel-eslint-plugin

... (truncated)

Commits

Updates @babel/preset-react from 7.22.15 to 7.23.3

Release notes

Sourced from @​babel/preset-react's releases.

v7.23.3 (2023-11-09)

🐛 Bug Fix

  • babel-plugin-transform-typescript
  • babel-generator
  • babel-compat-data, babel-plugin-bugfix-v8-static-class-fields-redefine-readonly, babel-preset-env
  • babel-plugin-transform-object-super
  • babel-helper-module-transforms, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-umd

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

🔬 Output optimization

  • babel-plugin-transform-computed-properties

Committers: 9

v7.23.2 (2023-10-11)

NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release commit.

Thanks @​jimmydief for your first PR!

🐛 Bug Fix

  • babel-traverse

... (truncated)

Changelog

Sourced from @​babel/preset-react's changelog.

v7.23.3 (2023-11-09)

🐛 Bug Fix

  • babel-plugin-transform-typescript
  • babel-generator
  • babel-compat-data, babel-plugin-bugfix-v8-static-class-fields-redefine-readonly, babel-preset-env
  • babel-plugin-transform-object-super
  • babel-helper-module-transforms, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-umd

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

🔬 Output optimization

  • babel-plugin-transform-computed-properties

v7.23.2 (2023-10-11)

🐛 Bug Fix

  • babel-traverse
  • babel-preset-typescript
  • babel-helpers
    • #16017 Fix: fallback to typeof when toString is applied to incompatible object (@​JLHwung)
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

Bumps the dependencies group with 32 updates:

| Package | From | To |
| --- | --- | --- |
| [react-helmet-async](https://github.com/staylor/react-helmet-async) | `1.3.0` | `2.0.3` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.16.0` | `6.21.0` |
| [react-tiny-popover](https://github.com/alexkatz/react-tiny-popover) | `5.1.0` | `8.0.4` |
| [react-use](https://github.com/streamich/react-use) | `17.4.0` | `17.4.2` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.22.19` | `7.23.6` |
| [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) | `7.22.15` | `7.23.3` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.22.15` | `7.23.6` |
| [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) | `7.22.15` | `7.23.3` |
| [@octokit/auth-action](https://github.com/octokit/auth-action.js) | `4.0.0` | `4.0.1` |
| [@octokit/rest](https://github.com/octokit/rest.js) | `20.0.1` | `20.0.2` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.15` | `10.4.16` |
| [cypress](https://github.com/cypress-io/cypress) | `13.2.0` | `13.6.1` |
| [eslint](https://github.com/eslint/eslint) | `8.49.0` | `8.56.0` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.0.0` | `9.1.0` |
| [eslint-plugin-cypress](https://github.com/cypress-io/eslint-plugin-cypress) | `2.14.0` | `2.15.1` |
| [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) | `2.2.0` | `3.0.0` |
| [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) | `5.5.3` | `5.5.4` |
| [lightningcss](https://github.com/parcel-bundler/lightningcss) | `1.21.8` | `1.22.1` |
| [lint-staged](https://github.com/okonet/lint-staged) | `14.0.1` | `15.2.0` |
| [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) | `0.36.0` | `0.38.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.29` | `8.4.32` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.1.1` |
| [remark](https://github.com/remarkjs/remark) | `14.0.3` | `15.0.1` |
| [remark-emoji](https://github.com/rhysd/remark-emoji) | `4.0.0` | `4.0.1` |
| [remark-frontmatter](https://github.com/remarkjs/remark-frontmatter) | `4.0.1` | `5.0.0` |
| [remark-html](https://github.com/remarkjs/remark-html) | `15.0.2` | `16.0.1` |
| [rimraf](https://github.com/isaacs/rimraf) | `5.0.1` | `5.0.5` |
| [sass](https://github.com/sass/dart-sass) | `1.67.0` | `1.69.5` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.3.3` | `3.3.6` |
| [webpack](https://github.com/webpack/webpack) | `5.88.2` | `5.89.0` |
| [webpack-bundle-analyzer](https://github.com/webpack-contrib/webpack-bundle-analyzer) | `4.9.1` | `4.10.1` |
| [webpack-merge](https://github.com/survivejs/webpack-merge) | `5.9.0` | `5.10.0` |


Updates `react-helmet-async` from 1.3.0 to 2.0.3
- [Release notes](https://github.com/staylor/react-helmet-async/releases)
- [Commits](https://github.com/staylor/react-helmet-async/commits)

Updates `react-router-dom` from 6.16.0 to 6.21.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/[email protected]/packages/react-router-dom)

Updates `react-tiny-popover` from 5.1.0 to 8.0.4
- [Release notes](https://github.com/alexkatz/react-tiny-popover/releases)
- [Changelog](https://github.com/alexkatz/react-tiny-popover/blob/master/CHANGELOG.md)
- [Commits](https://github.com/alexkatz/react-tiny-popover/commits)

Updates `react-use` from 17.4.0 to 17.4.2
- [Release notes](https://github.com/streamich/react-use/releases)
- [Changelog](https://github.com/streamich/react-use/blob/master/CHANGELOG.md)
- [Commits](streamich/react-use@v17.4.0...v17.4.2)

Updates `@babel/core` from 7.22.19 to 7.23.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.23.6/packages/babel-core)

Updates `@babel/eslint-parser` from 7.22.15 to 7.23.3
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.23.3/eslint/babel-eslint-parser)

Updates `@babel/preset-env` from 7.22.15 to 7.23.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.23.6/packages/babel-preset-env)

Updates `@babel/preset-react` from 7.22.15 to 7.23.3
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.23.3/packages/babel-preset-react)

Updates `@octokit/auth-action` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/octokit/auth-action.js/releases)
- [Commits](octokit/auth-action.js@v4.0.0...v4.0.1)

Updates `@octokit/rest` from 20.0.1 to 20.0.2
- [Release notes](https://github.com/octokit/rest.js/releases)
- [Commits](octokit/rest.js@v20.0.1...v20.0.2)

Updates `autoprefixer` from 10.4.15 to 10.4.16
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.15...10.4.16)

Updates `cypress` from 13.2.0 to 13.6.1
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.2.0...v13.6.1)

Updates `eslint` from 8.49.0 to 8.56.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.49.0...v8.56.0)

Updates `eslint-config-prettier` from 9.0.0 to 9.1.0
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.0.0...v9.1.0)

Updates `eslint-plugin-cypress` from 2.14.0 to 2.15.1
- [Release notes](https://github.com/cypress-io/eslint-plugin-cypress/releases)
- [Commits](cypress-io/eslint-plugin-cypress@v2.14.0...v2.15.1)

Updates `eslint-plugin-mdx` from 2.2.0 to 3.0.0
- [Release notes](https://github.com/mdx-js/eslint-mdx/releases)
- [Changelog](https://github.com/mdx-js/eslint-mdx/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mdx-js/eslint-mdx/compare/[email protected])

Updates `html-webpack-plugin` from 5.5.3 to 5.5.4
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v5.5.3...v5.5.4)

Updates `lightningcss` from 1.21.8 to 1.22.1
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.21.8...v1.22.1)

Updates `lint-staged` from 14.0.1 to 15.2.0
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v14.0.1...v15.2.0)

Updates `markdownlint-cli` from 0.36.0 to 0.38.0
- [Release notes](https://github.com/igorshubovych/markdownlint-cli/releases)
- [Commits](igorshubovych/markdownlint-cli@v0.36.0...v0.38.0)

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

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

Updates `remark` from 14.0.3 to 15.0.1
- [Release notes](https://github.com/remarkjs/remark/releases)
- [Changelog](https://github.com/remarkjs/remark/blob/main/changelog.md)
- [Commits](remarkjs/remark@14.0.3...15.0.1)

Updates `remark-emoji` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/rhysd/remark-emoji/releases)
- [Changelog](https://github.com/rhysd/remark-emoji/blob/master/CHANGELOG.md)
- [Commits](rhysd/remark-emoji@v4.0.0...v4.0.1)

Updates `remark-frontmatter` from 4.0.1 to 5.0.0
- [Release notes](https://github.com/remarkjs/remark-frontmatter/releases)
- [Commits](remarkjs/remark-frontmatter@4.0.1...5.0.0)

Updates `remark-html` from 15.0.2 to 16.0.1
- [Release notes](https://github.com/remarkjs/remark-html/releases)
- [Commits](remarkjs/remark-html@15.0.2...16.0.1)

Updates `rimraf` from 5.0.1 to 5.0.5
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v5.0.1...v5.0.5)

Updates `sass` from 1.67.0 to 1.69.5
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.67.0...1.69.5)

Updates `tailwindcss` from 3.3.3 to 3.3.6
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.3.3...v3.3.6)

Updates `webpack` from 5.88.2 to 5.89.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.88.2...v5.89.0)

Updates `webpack-bundle-analyzer` from 4.9.1 to 4.10.1
- [Release notes](https://github.com/webpack-contrib/webpack-bundle-analyzer/releases)
- [Changelog](https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/webpack-bundle-analyzer@v4.9.1...v4.10.1)

Updates `webpack-merge` from 5.9.0 to 5.10.0
- [Changelog](https://github.com/survivejs/webpack-merge/blob/develop/CHANGELOG.md)
- [Commits](survivejs/webpack-merge@v5.9.0...v5.10.0)

---
updated-dependencies:
- dependency-name: react-helmet-async
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-tiny-popover
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react-use
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/eslint-parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/preset-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@octokit/auth-action"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@octokit/rest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-plugin-cypress
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-plugin-mdx
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: html-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: lightningcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: markdownlint-cli
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: remark
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: remark-emoji
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: remark-frontmatter
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: remark-html
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: rimraf
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: webpack-bundle-analyzer
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: webpack-merge
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner December 18, 2023 09:24
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 18, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 19, 2023

Superseded by #1432.

@dependabot dependabot bot closed this Dec 19, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-dba36705b8 branch December 19, 2023 09:38
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants