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

fix(deps): update dependencies (non-major) #767

Merged
merged 1 commit into from
Mar 28, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@capacitor/core (source) 4.7.0 -> 4.7.1 age adoption passing confidence
@capacitor/ios (source) 4.7.0 -> 4.7.1 age adoption passing confidence
@mui/lab (source) 5.0.0-alpha.121 -> 5.0.0-alpha.124 age adoption passing confidence
@mui/material (source) 5.11.11 -> 5.11.14 age adoption passing confidence
@mui/system (source) 5.11.11 -> 5.11.14 age adoption passing confidence
i18next (source) 22.4.10 -> 22.4.13 age adoption passing confidence
i18next-http-backend 2.1.1 -> 2.2.0 age adoption passing confidence
react-router-dom 6.8.2 -> 6.9.0 age adoption passing confidence
slate-react 0.91.8 -> 0.92.0 age adoption passing confidence
zustand 4.3.3 -> 4.3.6 age adoption passing confidence

Release Notes

ionic-team/capacitor

v4.7.1

Compare Source

Bug Fixes
  • cli: point build to proper workspace name (#​6373) (81af12a)
  • iOS: Separate cookies by ; rather than ; when accessing through document.cookie (Cap 4.x) (#​6380) (1902b77)
mui/material-ui

v5.0.0-alpha.124

Compare Source

v5.0.0-alpha.123

Compare Source

v5.0.0-alpha.122

Compare Source

i18next/i18next

v22.4.13

Compare Source

  • fix: deepFind as fallback for interpolation 1930

v22.4.12

Compare Source

  • fix: getBestMatchFromCodes when dev is a supported lng 1927

v22.4.11

Compare Source

  • types: fix postProcessor key argument type, fixes 1919
i18next/i18next-http-backend

v2.2.0

Compare Source

  • parseLoadPayload for POST request 110
remix-run/react-router

v6.9.0

Compare Source

Minor Changes
  • React Router now supports an alternative way to define your route element and errorElement fields as React Components instead of React Elements. You can instead pass a React Component to the new Component and ErrorBoundary fields if you choose. There is no functional difference between the two, so use whichever approach you prefer 😀. You shouldn't be defining both, but if you do Component/ErrorBoundary will "win". (#​10045)

    Example JSON Syntax

    // Both of these work the same:
    const elementRoutes = [{
      path: '/',
      element: <Home />,
      errorElement: <HomeError />,
    }]
    
    const componentRoutes = [{
      path: '/',
      Component: Home,
      ErrorBoundary: HomeError,
    }]
    
    function Home() { ... }
    function HomeError() { ... }

    Example JSX Syntax

    // Both of these work the same:
    const elementRoutes = createRoutesFromElements(
      <Route path='/' element={<Home />} errorElement={<HomeError /> } />
    );
    
    const componentRoutes = createRoutesFromElements(
      <Route path='/' Component={Home} ErrorBoundary={HomeError} />
    );
    
    function Home() { ... }
    function HomeError() { ... }
  • Introducing Lazy Route Modules! (#​10045)

    In order to keep your application bundles small and support code-splitting of your routes, we've introduced a new lazy() route property. This is an async function that resolves the non-route-matching portions of your route definition (loader, action, element/Component, errorElement/ErrorBoundary, shouldRevalidate, handle).

    Lazy routes are resolved on initial load and during the loading or submitting phase of a navigation or fetcher call. You cannot lazily define route-matching properties (path, index, children) since we only execute your lazy route functions after we've matched known routes.

    Your lazy functions will typically return the result of a dynamic import.

    // In this example, we assume most folks land on the homepage so we include that
    // in our critical-path bundle, but then we lazily load modules for /a and /b so
    // they don't load until the user navigates to those routes
    let routes = createRoutesFromElements(
      <Route path="/" element={<Layout />}>
        <Route index element={<Home />} />
        <Route path="a" lazy={() => import("./a")} />
        <Route path="b" lazy={() => import("./b")} />
      </Route>
    );

    Then in your lazy route modules, export the properties you want defined for the route:

    export async function loader({ request }) {
      let data = await fetchData(request);
      return json(data);
    }
    
    // Export a `Component` directly instead of needing to create a React Element from it
    export function Component() {
      let data = useLoaderData();
    
      return (
        <>
          <h1>You made it!</h1>
          <p>{data}</p>
        </>
      );
    }
    
    // Export an `ErrorBoundary` directly instead of needing to create a React Element from it
    export function ErrorBoundary() {
      let error = useRouteError();
      return isRouteErrorResponse(error) ? (
        <h1>
          {error.status} {error.statusText}
        </h1>
      ) : (
        <h1>{error.message || error}</h1>
      );
    }

    An example of this in action can be found in the examples/lazy-loading-router-provider directory of the repository.

    🙌 Huge thanks to @​rossipedia for the Initial Proposal and POC Implementation.

  • Updated dependencies:

    • react-router@6.9.0
    • @remix-run/router@1.4.0
ianstormtaylor/slate

v0.92.0

Compare Source

Minor Changes
  • #​5363 d42cd005 Thanks @​aciccarello! - update dependencies on react hooks to be more senstive to changes

    The code should now meet eslint react hook standards

    This could result in more renders

    closes #​3886

Patch Changes

v0.91.11

Compare Source

Patch Changes

v0.91.10

Compare Source

Patch Changes
  • #​5346 a5e833f6 Thanks @​edhager! - Fix a problem with Editable not calling the decorate function passed as a prop when it should.

  • #​5343 f7f02a8b Thanks @​12joan! - Fix error when triple-clicking a word preceding a contenteditable="false" DOM node in Chrome

v0.91.9

Compare Source

Patch Changes
pmndrs/zustand

v4.3.6

Compare Source

This has a little improvement for library authors.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.5...v4.3.6

v4.3.5

Compare Source

v4.3.4 has a regression in CJS build. Please use this version instead.

What's Changed
New Contributors

Full Changelog: pmndrs/zustand@v4.3.4...v4.3.5

v4.3.4

Compare Source

This version fixes some build configs for some edge cases.

⚠️ this version has an issue in CJS build. Please use v4.3.5.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.3...v4.3.4


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@vercel
Copy link

vercel bot commented Mar 6, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated
2do-txt ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Mar 28, 2023 at 4:40PM (UTC)

@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 221139d to bd9a70d Compare March 8, 2023 07:59
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from bd9a70d to 331bb14 Compare March 10, 2023 15:11
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 331bb14 to f435fd0 Compare March 14, 2023 08:31
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from f435fd0 to eee1935 Compare March 14, 2023 16:41
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from eee1935 to 0534a5c Compare March 15, 2023 16:49
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 0534a5c to 49f8d5f Compare March 15, 2023 21:17
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 49f8d5f to 729e48f Compare March 17, 2023 03:48
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 729e48f to 6e86400 Compare March 17, 2023 07:03
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 6e86400 to febfd9c Compare March 17, 2023 21:26
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from febfd9c to cb55902 Compare March 20, 2023 12:53
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from cb55902 to 519726a Compare March 21, 2023 06:54
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 519726a to 064a340 Compare March 21, 2023 20:29
@sodenn sodenn deleted the renovate/dependencies-(non-major) branch March 28, 2023 19:20
github-actions bot pushed a commit that referenced this pull request Apr 11, 2023
## [1.17.8](v1.17.7...v1.17.8) (2023-04-11)

### Bug Fixes

* **deps:** update dependencies (non-major) ([#767](#767)) ([05d6be0](05d6be0))
* **deps:** update dependencies (non-major) ([#779](#779)) ([c756fa6](c756fa6))
* **Editor:** fix misplaced input placeholder on Safari ([#783](#783)) ([6360fab](6360fab))
@github-actions
Copy link

🎉 This PR is included in version 1.17.8 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant