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 in /admin-system/frontend with 7 updates #109

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dependencies group in /admin-system/frontend with 7 updates:

Package From To
@mui/icons-material 5.14.11 5.14.16
@mui/material 5.14.11 5.14.16
react-router-dom 6.16.0 6.18.0
@types/react 18.2.24 18.2.33
@types/react-dom 18.2.8 18.2.14
tailwindcss 3.3.3 3.3.5
vite 4.4.9 4.5.0

Updates @mui/icons-material from 5.14.11 to 5.14.16

Release notes

Sourced from @​mui/icons-material's releases.

v5.14.16

Oct 31, 2023

A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.14.16

@mui/base@5.0.0-beta.22

@mui/joy@5.0.0-beta.13

@mui/material-next@6.0.0-alpha.108

Docs

Core

... (truncated)

Changelog

Sourced from @​mui/icons-material's changelog.

5.14.16

Oct 31, 2023

A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.14.16

@mui/base@5.0.0-beta.22

@mui/joy@5.0.0-beta.13

@mui/material-next@6.0.0-alpha.108

Docs

Core

... (truncated)

Commits

Updates @mui/material from 5.14.11 to 5.14.16

Release notes

Sourced from @​mui/material's releases.

v5.14.16

Oct 31, 2023

A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.14.16

@mui/base@5.0.0-beta.22

@mui/joy@5.0.0-beta.13

@mui/material-next@6.0.0-alpha.108

Docs

Core

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

5.14.16

Oct 31, 2023

A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.14.16

@mui/base@5.0.0-beta.22

@mui/joy@5.0.0-beta.13

@mui/material-next@6.0.0-alpha.108

Docs

Core

... (truncated)

Commits

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

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:

... (truncated)

Commits
  • 667f936 chore: Update version for release (#10981)
  • 67af262 chore: Update version for release (pre) (#10978)
  • 1500288 Updates for v7_fetcherPersist post-processing logic (#10977)
  • cacc90b chore: Update version for release (pre) (#10966)
  • 19af0cf Add future.v7_fetcherPersist flag (#10962)
  • cb2d911 Add fetcher data layer (#10961)
  • c0dbcd2 Add useFetcher(key) and <Form navigate={false}> (#10960)
  • 805924d Revert "Ensure Form contains splat portion of pathname when no action is spec...
  • 908a40a Ensure Form contains splat portion of pathname when no action is specified (#...
  • a71b4e2 Merge branch 'release-next' into dev
  • Additional commits viewable in compare view

Updates @types/react from 18.2.24 to 18.2.33

Commits

Updates @types/react-dom from 18.2.8 to 18.2.14

Commits

Updates tailwindcss from 3.3.3 to 3.3.5

Release notes

Sourced from tailwindcss's releases.

v3.3.5

Fixed

  • Fix incorrect spaces around - in calc() expression (#12283)

v3.3.4

Fixed

  • Improve normalisation of calc()-like functions (#11686)
  • Skip calc() normalisation in nested theme() calls (#11705)
  • Fix incorrectly generated CSS when using square brackets inside arbitrary properties (#11709)
  • Make content optional for presets in TypeScript types (#11730)
  • Handle variable colors that have variable fallback values (#12049)
  • Batch reading content files to prevent too many open files error (#12079)
  • Skip over classes inside :not(…) when nested in an at-rule (#12105)
  • Update types to work with Node16 module resolution (#12097)
  • Don’t crash when important and parent selectors are equal in @apply (#12112)
  • Eliminate irrelevant rules when applying variants (#12113)
  • Improve RegEx parser, reduce possibilities as the key for arbitrary properties (#12121)
  • Fix sorting of utilities that share multiple candidates (#12173)
  • Ensure variants with arbitrary values and a modifier are correctly matched in the RegEx based parser (#12179)
  • Fix crash when watching renamed files on FreeBSD (#12193)
  • Allow plugins from a parent document to be used in an iframe (#12208)
  • Add types for tailwindcss/nesting (#12269)
  • Bump jiti, fast-glob, and browserlist dependencies (#11550)
  • Improve automatic var injection for properties that accept a <dashed-ident> (#12236)
Changelog

Sourced from tailwindcss's changelog.

[3.3.5] - 2023-10-25

Fixed

  • Fix incorrect spaces around - in calc() expression (#12283)

[3.3.4] - 2023-10-24

Fixed

  • Improve normalisation of calc()-like functions (#11686)
  • Skip calc() normalisation in nested theme() calls (#11705)
  • Fix incorrectly generated CSS when using square brackets inside arbitrary properties (#11709)
  • Make content optional for presets in TypeScript types (#11730)
  • Handle variable colors that have variable fallback values (#12049)
  • Batch reading content files to prevent too many open files error (#12079)
  • Skip over classes inside :not(…) when nested in an at-rule (#12105)
  • Update types to work with Node16 module resolution (#12097)
  • Don’t crash when important and parent selectors are equal in @apply (#12112)
  • Eliminate irrelevant rules when applying variants (#12113)
  • Improve RegEx parser, reduce possibilities as the key for arbitrary properties (#12121)
  • Fix sorting of utilities that share multiple candidates (#12173)
  • Ensure variants with arbitrary values and a modifier are correctly matched in the RegEx based parser (#12179)
  • Fix crash when watching renamed files on FreeBSD (#12193)
  • Allow plugins from a parent document to be used in an iframe (#12208)
  • Add types for tailwindcss/nesting (#12269)
  • Bump jiti, fast-glob, and browserlist dependencies (#11550)
  • Improve automatic var injection for properties that accept a <dashed-ident> (#12236)
Commits
  • 9db2d68 3.3.5
  • 4b12f83 Fix incorrect spaces around - in calc() expression (#12283)
  • 32a62b7 3.3.4
  • b810916 ensure we await the processTailwindFeatures in the oxide CLI
  • 2514820 Improve automatic var injection (#12236)
  • c15b187 Bump jiti, fast-glob, and browserlist dependencies (#11550)
  • ba04af0 Add types for the nesting plugin (#12269)
  • 63989b2 Allow plugins from a parent document to be used in an iframe (#12208)
  • 8e4ed70 Fix crash when watching renamed files on FreeBSD (#12193)
  • b162ae7 Ensure variants with arbitrary values and a modifier are correctly matched in...
  • Additional commits viewable in compare view

Updates vite from 4.4.9 to 4.5.0

Changelog

Sourced from vite's changelog.

4.5.0 (2023-10-18)

  • feat: backport md...

    Description has been truncated

Bumps the dependencies group in /admin-system/frontend with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `5.14.11` | `5.14.16` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `5.14.11` | `5.14.16` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.16.0` | `6.18.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.24` | `18.2.33` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.8` | `18.2.14` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.3.3` | `3.3.5` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `4.4.9` | `4.5.0` |


Updates `@mui/icons-material` from 5.14.11 to 5.14.16
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.14.16/packages/mui-icons-material)

Updates `@mui/material` from 5.14.11 to 5.14.16
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.14.16/packages/mui-material)

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

Updates `@types/react` from 18.2.24 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-dom` from 18.2.8 to 18.2.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `tailwindcss` from 3.3.3 to 3.3.5
- [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.5)

Updates `vite` from 4.4.9 to 4.5.0
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v4.5.0/packages/vite)

---
updated-dependencies:
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the Dependency label Nov 1, 2023
@dependabot dependabot bot requested a review from im-calvin November 1, 2023 10:06
Copy link

netlify bot commented Nov 1, 2023

Deploy Preview for 3fa ready!

Name Link
🔨 Latest commit d34e7e4
🔍 Latest deploy log https://app.netlify.com/sites/3fa/deploys/65422332786cac00086b42d0
😎 Deploy Preview https://deploy-preview-109--3fa.netlify.app/
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 100
Accessibility: 100
Best Practices: 100
SEO: 82
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

@ElioDiNino ElioDiNino merged commit aff32bb into main Nov 1, 2023
8 checks passed
@ElioDiNino ElioDiNino deleted the dependabot/npm_and_yarn/admin-system/frontend/dependencies-772b9cc6f6 branch November 1, 2023 15:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant