Skip to content
This repository has been archived by the owner on May 14, 2023. It is now read-only.

chore(deps) Update all non-major dependencies #225

Merged
merged 1 commit into from Oct 17, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 28, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@hookform/resolvers (source) 2.9.8 -> 2.9.9 age adoption passing confidence
@mantine/core (source) 5.4.1 -> 5.5.5 age adoption passing confidence
@mantine/dropzone (source) 5.4.1 -> 5.5.5 age adoption passing confidence
@mantine/form (source) 5.4.1 -> 5.5.5 age adoption passing confidence
@mantine/hooks (source) 5.4.1 -> 5.5.5 age adoption passing confidence
@mantine/modals (source) 5.4.1 -> 5.5.5 age adoption passing confidence
@mantine/notifications (source) 5.4.1 -> 5.5.5 age adoption passing confidence
@reduxjs/toolkit (source) 1.8.5 -> 1.8.6 age adoption passing confidence
@tanstack/react-query (source) 4.7.1 -> 4.12.0 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.38.1 -> 5.40.0 age adoption passing confidence
@typescript-eslint/parser 5.38.1 -> 5.40.0 age adoption passing confidence
dotenv 16.0.2 -> 16.0.3 age adoption passing confidence
esbuild 0.15.9 -> 0.15.11 age adoption passing confidence
eslint (source) 8.24.0 -> 8.25.0 age adoption passing confidence
eslint-plugin-react 7.31.8 -> 7.31.10 age adoption passing confidence
firebase (source, changelog) 9.10.0 -> 9.12.1 age adoption passing confidence
firebase-admin (source) 11.0.1 -> 11.1.0 age adoption passing confidence
firebase-functions 3.24.0 -> 3.24.1 age adoption passing confidence
framer-motion 7.4.0 -> 7.5.3 age adoption passing confidence
obs-websocket-js 5.0.1 -> 5.0.2 age adoption passing confidence
react-hook-form (source) 7.36.1 -> 7.37.0 age adoption passing confidence
react-router-dom 6.4.1 -> 6.4.2 age adoption passing confidence
socket.io 4.5.2 -> 4.5.3 age adoption passing confidence
socket.io-client 4.5.2 -> 4.5.3 age adoption passing confidence
turbo (source) 1.5.4 -> 1.5.6 age adoption passing confidence
vite (source) 3.1.3 -> 3.1.8 age adoption passing confidence
vite-plugin-svgr 2.2.1 -> 2.2.2 age adoption passing confidence

Release Notes

react-hook-form/resolvers

v2.9.9

Compare Source

Bug Fixes
mantinedev/mantine

v5.5.5

Compare Source

What's Changed

  • [@mantine/core] NumberInput: Fix removeTrailingZeros prop not working for initial value (#​2638)
  • [@mantine/core] Modal: Fix issue when it was impossible to interact with scrollbars behind overlay (#​2669)
  • [@mantine/styles] Fix incorrect params handling in DefaultProps type in strict mode
  • [@mantine/core] Select: Fix component scrolling page when it is focused without any data or nothing found message (#​2628)
  • [@mantine/core] Fix Avatar and ThemeIcon components not respecting theme.defaultGradient (#​2649)
  • [@mantine/dates] Calendar: Fix error in console when up/down error is pressed and next/previous date is disabled
  • [@mantine/core] Menu: Close menu when target changes (#​2646)
  • [@mantine/hooks] use-focus-return: Add preventScroll: true to avoid scrolling to element when dropdown/modal is closed outside of current viewport

New Contributors

Full Changelog: mantinedev/mantine@5.5.4...5.5.5

v5.5.4

Compare Source

What was changed
  • [@mantine/core] ColorInput: Prevent dropdown from opening if withPicker={false} and there are no swatches
  • [@mantine/core] List: Fix styles params not being inherited by List.Item (#​2495)
  • [@mantine/core] Grid: Fix incorrect responsive offsets handling (#​2556)
  • [@mantine/core] Popover: Add option to configure focus returning logic with returnFocus prop
  • [@mantine/core] Popover: Fix onKeydownCapture prop overriding Escape key handler

Full Changelog: mantinedev/mantine@5.5.2...5.5.4

v5.5.2

Compare Source

What's Changed
  • [@mantine/core] List: Fix incorrect list items styles (#​2624)
  • [@mantine/core] NumberInput: Fix incorrect removeTrailingZeros default prop value (#​2621)
  • [@mantine/core] ScrollArea: Fix incorrect thumb hover area (#​2610)
  • [@mantine/hooks] use-focus-trap: Fix incorrect focus trapping logic when setRef is called with null (#​2623)
  • [@mantine/core] Fix incorrect cursor type on Checkbox, Radio and Switch when cursorType is set on theme
  • [@mantine/core] Remove unexpected styles from Checkbox, Radio and Switch components

Full Changelog: mantinedev/mantine@5.5.1...5.5.2

v5.5.1

Compare Source

What's Changed

  • [@mantine/core] Fix incorrect selectors used to style Radio, Checkbox and Switch components
  • [@mantine/core] Input: Fix size not being applied when set from error props and descriptionProps (#​2603)
  • [@mantine/core] Fix incorrect loading state styles in Button and ActionIcon components (#​2618)
  • [@mantine/core] Fix scrollbar appearing in Select, MultiSelect and Autocomplete dropdown when withNormalizeCSS and withGlobalStyles are not set on MantineProvider
  • [@mantine/core] Revert Collapse axis prop to avoid issues with regular Collapse
  • [@mantine/core] Fix missing font styles in Select, MultiSelect and Autocomplete dropdown when withGlobalStyles is not set on MantineProvider
  • [@mantine/core] MultiSelect: fix dropdown flicker and onDropdownClose/onDropdownOpen handlers being called when dropdown isn't visible (#​2602)
  • [@mantine/core] Select: Fix incorrect dropdown opened state when input is clicked (#​2605)
  • [@mantine/core] List: Fix incorrect indentation for nested list items (#​2606)
  • [@mantine/core] SegmentedControl: Fix error with hook call order (#​2608)

New Contributors

Full Changelog: mantinedev/mantine@5.5.0...5.5.1

v5.5.0

Compare Source

View changelog with demos on mantine.dev website

Global styles on theme

You can now add global styles with theme.globalStyles,
this way, you will be able to share these styles between different environments (for example, Next.js application and Storybook):

import { MantineProvider } from '@​mantine/core';

function Demo() {
  return (
    <MantineProvider
      theme={{
        globalStyles: (theme) => ({
          '*, *::before, *::after': {
            boxSizing: 'border-box',
          },

          body: {
            ...theme.fn.fontStyles(),
            backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark[7] : theme.white,
            color: theme.colorScheme === 'dark' ? theme.colors.dark[0] : theme.black,
            lineHeight: theme.lineHeight,
          },

          '.your-class': {
            backgroundColor: 'red',
          },

          '#your-id > [data-active]': {
            backgroundColor: 'pink',
          },
        }),
      }}
    >
      <App />
    </MantineProvider>
  );
}

form.setValues partial

form.setValues can now be used to set multiple values at once, payload will be shallow merged with current values state:

import { useForm } from '@&#8203;mantine/form';

const form = useForm({ initialValues: { name: '', email: '', age: 0 } });

form.setValues({ name: 'John', age: 21 });
form.values; // -> { name: 'John', email: '', age: 21 }

Documentation updates

Other changes

  • Checkbox indeterminate state now has separate styles for checked and unchecked states
  • Modal component now supports size="auto"
  • Checkbox, Radio and Switch
    components now support error, description and labelPosition props
  • Tooltip and Popover components now can be used with inline elements
  • Slider and RangeSlider components now support inverted prop
  • Collapse component now supports axis prop
  • Table component now supports withBorder and withColumnBorders props
  • NumberInput component now supports removeTrailingZeros prop
  • Popover and Menu components now support disabled prop
  • nprogress now supports new completeNavigationProgress handler

New Contributors

Full Changelog: mantinedev/mantine@5.4.2...5.5.0

v5.4.2

Compare Source

What's Changed

  • [@mantine/form] Add options argument support to joiResolver (#​2562)
  • [@mantine/carousel] Fix incorrect slidesToScroll type (#​2548)
  • [@mantine/carousel] Fix wrong carousel size calculation (#​2572)
  • [@mantine/core] Image: Allow src attribute to be null
  • [@mantine/core] Image: Fix race condition between hydration and image load event (#​629)
  • Fix incorrect types for static components (Navbar.Section, Tabs.Tab, etc.) for older versions of TypeScript

New Contributors

Full Changelog: mantinedev/mantine@5.4.1...5.4.2

reduxjs/redux-toolkit

v1.8.6

Compare Source

This bugfix release fixes a couple of issues with RTKQ endpoint tags not invalidating correctly, and tweaks the dispatch type inference to handle more variations of arrays.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v1.8.5...v1.8.6

tanstack/query

v4.12.0

Compare Source

Version 4.12.0 - 10/14/2022, 6:20 AM

Changes

Feat
  • query-core: await global mutation cache callbacks (#​4313) (6be0e38) by Dominik Dorfmeister
Chore
  • run typecheck last in CI (17a362b) by Dominik Dorfmeister
  • do not collectCoverage during build (3bf5168) by Dominik Dorfmeister
  • fix tests in publish script (d785c2b) by Dominik Dorfmeister
  • improve CI (#​4288) (4ae9956) by Dominik Dorfmeister
Docs
Other
  • add ardeora as a contributor for code, and maintenance (#​4312) (85119e9) by allcontributors[bot]

Packages

v4.10.3

Compare Source

Version 4.10.3 - 10/7/2022, 7:07 PM

Changes
Refactor
Docs
Packages

v4.10.1

Compare Source

Version 4.10.1 - 10/4/2022, 1:28 PM

Changes

Fix
  • react-query-devtools: add superjson as dependency (b162309) by Dominik Dorfmeister

Packages

v4.10.0

Compare Source

Version 4.10.0 - 10/4/2022, 12:51 PM

Changes

Feat
  • react-query-devtools: use superjson to display values (#​4085) (1bb13e2) by Mohammad Al Zouabi
Fix
  • add proper rollup config for superjson (#​4263) (923c740) by Damian Osipiuk
Chore
  • ignore coverage from index and types files (#​4257) (f715b30) by Damian Osipiuk
Docs
Other
  • Update config.json (db09965) by Tanner Linsley

Packages

v4.9.0

Compare Source

Version 4.9.0 - 10/2/2022, 8:08 PM

Changes
Feat
Packages

v4.8.0

Compare Source

Version 4.8.0 - 9/30/2022, 6:32 AM

Changes
Feat
Chore
Packages

v4.7.2

Compare Source

Version 4.7.2 - 9/28/2022, 5:17 PM

Changes

Refactor
Chore
Test

Packages

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.40.0

Compare Source

Bug Fixes
  • eslint-plugin: [consistent-indexed-object-style] handle interface generic (#​5746) (7a8a0a3)
  • eslint-plugin: [no-unnecessary-condition] handle void (#​5766) (ac8f06b)
Features

v5.39.0

Compare Source

Features
  • eslint-plugin: allow using void as a default type for a generic argument if allowInGenericTypeArguments is specified (#​5671) (bb46ef0)

5.38.1 (2022-09-26)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.40.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.39.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

5.38.1 (2022-09-26)

Note: Version bump only for package @​typescript-eslint/parser

motdotla/dotenv

v16.0.3

Compare Source

Changed
  • Added library version to debug logs (#​682)
evanw/esbuild

v0.15.11

Compare Source

  • Fix various edge cases regarding template tags and this (#​2610)

    This release fixes some bugs where the value of this wasn't correctly preserved when evaluating template tags in a few edge cases. These edge cases are listed below:

    async function test() {
      class Foo { foo() { return this } }
      class Bar extends Foo {
        a = async () => super.foo``
        b = async () => super['foo']``
        c = async (foo) => super[foo]``
      }
      function foo() { return this }
      const obj = { foo }
      const bar = new Bar
      console.log(
        (await bar.a()) === bar,
        (await bar.b()) === bar,
        (await bar.c('foo')) === bar,
        { foo }.foo``.foo === foo,
        (true && obj.foo)`` !== obj,
        (false || obj.foo)`` !== obj,
        (null ?? obj.foo)`` !== obj,
      )
    }
    test()

    Each edge case in the code above previously incorrectly printed false when run through esbuild with --minify --target=es6 but now correctly prints true. These edge cases are unlikely to have affected real-world code.

v0.15.10

Compare Source

  • Add support for node's "pattern trailers" syntax (#​2569)

    After esbuild implemented node's exports feature in package.json, node changed the feature to also allow text after * wildcards in patterns. Previously the * was required to be at the end of the pattern. It lets you do something like this:

    {
      "exports": {
        "./features/*": "./features/*.js",
        "./features/*.js": "./features/*.js"
      }
    }

    With this release, esbuild now supports these types of patterns too.

  • Fix subpath imports with Yarn PnP (#​2545)

    Node has a little-used feature called subpath imports which are package-internal imports that start with # and that go through the imports map in package.json. Previously esbuild had a bug that caused esbuild to not handle these correctly in packages installed via Yarn's "Plug'n'Play" installation strategy. The problem was that subpath imports were being checked after Yarn PnP instead of before. This release reorders these checks, which should allow subpath imports to work in this case.

  • Link from JS to CSS in the metafile (#​1861, #​2565)

    When you import CSS into a bundled JS file, esbuild creates a parallel CSS bundle next to your JS bundle. So if app.ts imports some CSS files and you bundle it, esbuild will give you app.js and app.css. You would then add both <script src="app.js"></script> and <link href="app.css" rel="stylesheet"> to your HTML to include everything in the page. This approach is more efficient than having esbuild insert additional JavaScript into app.js that downloads and includes app.css because it means the browser can download and parse both the CSS and the JS in parallel (and potentially apply the CSS before the JS has even finished downloading).

    However, sometimes it's difficult to generate the <link> tag. One case is when you've added [hash] to the entry names setting to include a content hash in the f


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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, click this checkbox.

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

@github-actions
Copy link

github-actions bot commented Sep 28, 2022

Visit the preview URL for this PR (updated for commit d2860ca):

(expires Fri, 14 Oct 2022 10:59:48 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

@renovate renovate bot changed the title chore(deps) Update dependency vite to v3.1.4 chore(deps) Update all non-major dependencies Sep 28, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 20 times, most recently from 343dee4 to febaa41 Compare October 5, 2022 22:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 29ced82 to ca1bdea Compare October 6, 2022 20:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 18 times, most recently from d2860ca to 0dab2b7 Compare October 14, 2022 06:04
@github-actions
Copy link

github-actions bot commented Oct 14, 2022

Visit the preview URL for this PR (updated for commit f834106):

(expires Tue, 18 Oct 2022 05:13:42 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Sign: 9ade927e413ea14a04024fc87eb296b94ff9ab70

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 08f3ce8 to 8378271 Compare October 15, 2022 05:58
@Manokii Manokii self-requested a review October 17, 2022 05:20
@Manokii Manokii merged commit 63d5e3f into main Oct 17, 2022
@Manokii Manokii deleted the renovate/all-minor-patch branch October 17, 2022 05:20
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant