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

chore(deps): update all dependencies #72

Merged
merged 1 commit into from Jan 11, 2023
Merged

chore(deps): update all dependencies #72

merged 1 commit into from Jan 11, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 12, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.20.5 -> 7.20.12 age adoption passing confidence
@commitlint/cli (source) 17.3.0 -> 17.4.1 age adoption passing confidence
@commitlint/config-conventional (source) 17.3.0 -> 17.4.0 age adoption passing confidence
@mantine/core (source) 5.9.3 -> 5.10.0 age adoption passing confidence
@mantine/hooks (source) 5.9.3 -> 5.10.0 age adoption passing confidence
@playwright/test (source) 1.28.1 -> 1.29.2 age adoption passing confidence
@tanstack/react-query (source) 4.19.1 -> 4.22.0 age adoption passing confidence
@tanstack/react-query-devtools (source) 4.19.1 -> 4.22.0 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.46.0 -> 5.48.1 age adoption passing confidence
@typescript-eslint/parser 5.46.0 -> 5.48.1 age adoption passing confidence
@vitejs/plugin-react (source) 3.0.0 -> 3.0.1 age adoption passing confidence
@vitest/ui 0.25.6 -> 0.27.0 age adoption passing confidence
axios (source) 1.2.1 -> 1.2.2 age adoption passing confidence
eslint (source) 8.29.0 -> 8.31.0 age adoption passing confidence
eslint-config-prettier 8.5.0 -> 8.6.0 age adoption passing confidence
eslint-import-resolver-typescript 3.5.2 -> 3.5.3 age adoption passing confidence
eslint-plugin-jsx-a11y 6.6.1 -> 6.7.0 age adoption passing confidence
eslint-plugin-react 7.31.11 -> 7.32.0 age adoption passing confidence
husky (source) 8.0.2 -> 8.0.3 age adoption passing confidence
prettier (source) 2.8.1 -> 2.8.2 age adoption passing confidence
react-hook-form (source) 7.40.0 -> 7.41.5 age adoption passing confidence
react-router-dom 6.4.5 -> 6.6.2 age adoption passing confidence
vite (source) 4.0.0 -> 4.0.4 age adoption passing confidence
vite-plugin-windicss 1.8.8 -> 1.8.10 age adoption passing confidence
vitest 0.25.6 -> 0.27.0 age adoption passing confidence

Release Notes

babel/babel

v7.20.12

Compare Source

🐛 Bug Fix
  • babel-traverse
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-class-properties
💅 Polish

v7.20.7

Compare Source

👓 Spec Compliance
  • babel-helper-member-expression-to-functions, babel-helper-replace-supers, babel-plugin-proposal-class-properties, babel-plugin-transform-classes
  • babel-helpers, babel-plugin-proposal-class-properties, babel-plugin-transform-classes, babel-plugin-transform-object-super
🐛 Bug Fix
  • babel-parser, babel-plugin-transform-typescript
  • babel-traverse
  • babel-plugin-transform-typescript, babel-traverse
  • babel-plugin-transform-block-scoping
  • babel-plugin-proposal-async-generator-functions, babel-preset-env
  • babel-generator, babel-plugin-proposal-optional-chaining
  • babel-plugin-transform-react-jsx, babel-types
  • babel-core, babel-helpers, babel-plugin-transform-computed-properties, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-helper-member-expression-to-functions, babel-helper-replace-supers, babel-plugin-proposal-class-properties, babel-plugin-transform-classes
  • babel-generator
💅 Polish
🏠 Internal
  • babel-helper-define-map, babel-plugin-transform-property-mutators
  • babel-core, babel-plugin-proposal-class-properties, babel-plugin-transform-block-scoping, babel-plugin-transform-classes, babel-plugin-transform-destructuring, babel-plugin-transform-parameters, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-preset-env, babel-traverse
🏃‍♀️ Performance
conventional-changelog/commitlint (@​commitlint/cli)

v17.4.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v17.4.0

Compare Source

Bug Fixes
conventional-changelog/commitlint (@​commitlint/config-conventional)

v17.4.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

mantinedev/mantine

v5.10.0

Compare Source

View changelog with demos on Mantine website

Theme based default props

Default props on MantineProvider
can now subscribe to theme:

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

function Demo() {
  return (
    <MantineProvider
      inherit
      theme={{
        components: {
          Button: {
            defaultProps: (theme) => ({
              color: theme.colorScheme === 'dark' ? 'orange' : 'cyan',
            }),
          },
        },
      }}
    >
      <Button>Demo button</Button>
    </MantineProvider>
  );
}
@​mantine/form validators

@mantine/form package now exports isNotEmpty, isEmail, matches, isInRange and hasLength functions
to simplify validation of common fields types:

import { useForm, isNotEmpty, isEmail, isInRange, hasLength, matches } from '@&#8203;mantine/form';
import { Button, Group, TextInput, NumberInput, Box } from '@&#8203;mantine/core';

function Demo() {
  const form = useForm({
    initialValues: {
      name: '',
      job: '',
      email: '',
      favoriteColor: '',
      age: 18,
    },

    validate: {
      name: hasLength({ min: 2, max: 10 }, 'Name must be 2-22 characters long'),
      job: isNotEmpty('Enter your current job'),
      email: isEmail('Invalid email'),
      favoriteColor: matches(/^#([0-9a-f]{3}){1,2}$/, 'Enter a valid hex color'),
      age: isInRange({ min: 18, max: 99 }, 'You must be 18-99 years old to register'),
    },
  });

  return (
    <Box component="form" maw={400} mx="auto" onSubmit={form.onSubmit(() => {})}>
      <TextInput label="Name" placeholder="Name" withAsterisk {...form.getInputProps('name')} />
      <TextInput
        label="Your job"
        placeholder="Your job"
        withAsterisk
        mt="md"
        {...form.getInputProps('job')}
      />
      <TextInput
        label="Your email"
        placeholder="Your email"
        withAsterisk
        mt="md"
        {...form.getInputProps('email')}
      />
      <TextInput
        label="Your favorite color"
        placeholder="Your favorite color"
        withAsterisk
        mt="md"
        {...form.getInputProps('favoriteColor')}
      />
      <NumberInput
        label="Your age"
        placeholder="Your age"
        withAsterisk
        mt="md"
        {...form.getInputProps('age')}
      />

      <Group position="right" mt="md">
        <Button type="submit">Submit</Button>
      </Group>
    </Box>
  );
}
Flagpack extension

New mantine-flagpack extension. It is a set of 4x3 flags as React components based on flagpack.
The package is tree shakable – all unused components are not included in the production bundle.
All flag components support style props.

Other changes
  • ColorPicker component now supports onColorSwatchClick prop
  • ColorInput now supports closeOnColorSwatchClick prop
  • ColorInput now shows eye dropper in all supported browsers by default
  • @​mantine/form now exports TransformedValues type to get type of transformed values from the form object
  • RingProgress now supports changing root segment color with rootColor prop
  • Text component now supports truncate prop
  • Stepper component now supports allowSelectNextSteps prop
  • @​mantine/form now exports superstructResolver to allow schema based validation with superstruct
  • FileInput and FileButton components now support capture prop
New Contributors

Full Changelog: mantinedev/mantine@5.9.6...5.10.0

v5.9.6

Compare Source

What's Changed
  • [@mantine/spotlight] Allow overriding search input size (#​3181)
  • [@mantine/core] Tooltip: Fix incorrect Tooltip.Floating Styles API name
  • [@mantine/core] ScrollArea: Add viewportProps support
  • [@mantine/core] Title: Remove span prop
New Contributors

Full Changelog: mantinedev/mantine@5.9.5...5.9.6

v5.9.5

Compare Source

What's Changed
  • [@mantine/tiptap] Fix LinkControl not supporting custom icon (#​3196)
  • [@mantine/hooks] use-network: Fix incorrect initial online/offline state detection (#​3178)
  • [@mantine/core] Space: Add responsive values support to w and h props
  • [@mantine/core] FileInput: Fix value overflow when selected value name is too large
New Contributors

Full Changelog: mantinedev/mantine@5.9.4...5.9.5

v5.9.4

Compare Source

What's Changed
  • [@mantine/core] Switch: Fix incorrect alignment (#​3082)
  • [@mantine/dates] Fix DateRangePicker and DatePicker components not supporting readOnly prop (#​3089)
  • [@mantine/hooks] use-click-outside: Fix incorrect typescript definition for strict mode (#​3119)
  • [@mantine/core] Input: Fix incorrect Input.Error role, connect Input.Description and Input.Error to the input element with aria-describedby (#​3146)
  • [@mantine/tiptap] Fix control styles API working incorrectly for Link and Color control (#​3148)
  • [@mantine/modals] Increase default zIndex to allow usage with Modal component (#​3154)
  • [@mantine/hooks] use-click-outside: Fix incorrect outside clicks detection when click target is html element (#​3143)

Full Changelog: mantinedev/mantine@5.9.3...5.9.4

Microsoft/playwright

v1.29.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/19661 - [BUG] 1.29.1 browserserver + page.goto = net::ERR_SOCKS_CONNECTION_FAILED

Browser Versions

  • Chromium 109.0.5414.46
  • Mozilla Firefox 107.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 108
  • Microsoft Edge 108

v1.29.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/18928 - [BUG] Electron firstWindow times out after upgrading to 1.28.0https://github.com/microsoft/playwright/issues/192466 - [BUG] Electron firstWindow times out after upgrading to 1.28.https://github.com/microsoft/playwright/issues/1941212 - [REGRESSION]: 1.28 does not work with electron-serve anymorhttps://github.com/microsoft/playwright/issues/19540540 - [BUG] electron.app.getAppPath() returns the path one level higher if you run electron pointing to the directhttps://github.com/microsoft/playwright/issues/195489548 - [REGRESSION]: Ubuntu 18 LTS not supported anymore

Browser Versions

  • Chromium 109.0.5414.46
  • Mozilla Firefox 107.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 108
  • Microsoft Edge 108

v1.29.0

Compare Source

New APIs

  • New method route.fetch() and new option json for route.fulfill():

    await page.route('**/api/settings', async route => {
      // Fetch original settings.
      const response = await route.fetch();
    
      // Force settings theme to a predefined value.
      const json = await response.json();
      json.theme = 'Solorized';
    
      // Fulfill with modified data.
      await route.fulfill({ json });
    });
  • New method locator.all() to iterate over all matching elements:

    // Check all checkboxes!
    const checkboxes = page.getByRole('checkbox');
    for (const checkbox of await checkboxes.all())
      await checkbox.check();
  • Locator.selectOption matches now by value or label:

    <select multiple>
      <option value="red">Red</div>
      <option value="green">Green</div>
      <option value="blue">Blue</div>
    </select>
    await element.selectOption('Red');
  • Retry blocks of code until all assertions pass:

    await expect(async () => {
      const response = await page.request.get('https://api.example.com');
      await expect(response).toBeOK();
    }).toPass();

    Read more in our documentation.

  • Automatically capture full page screenshot on test failure:

    // playwright.config.ts
    import type { PlaywrightTestConfig } from '@&#8203;playwright/test';
    
    const config: PlaywrightTestConfig = {
      use: {
        screenshot: {
          mode: 'only-on-failure',
          fullPage: true,
        }
      }
    };
    
    export default config;

Miscellaneous

Browser Versions

  • Chromium 109.0.5414.46
  • Mozilla Firefox 107.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 108
  • Microsoft Edge 108
tanstack/query

v4.22.0

Compare Source

Version 4.22.0 - 1/8/2023, 6:56 PM

Changes

Feat
  • export default hydration methods for easier extension in dehydrateOptions (#​4751) (228b1f0) by Manthan Mallikarjun

Packages

v4.21.0

Compare Source

Version 4.21.0 - 1/8/2023, 12:18 PM

Changes

Feat
  • svelte-query: Svelte Query Adapter for TanStack Query (#​4768) (b324a9b) by Lachlan Collins
Chore
  • Remove incompatible vitest flag from test:ci (#​4777) (d79f2b9) by Lachlan Collins
  • env: cross platform preinstall CI check. (#​4775) (85ce6db) by Rivo Tüksammel

Packages

v4.20.9

Compare Source

Version 4.20.9 - 1/4/2023, 8:30 AM

Changes

Fix
Docs
  • Add reactotron-react-query plugin (#​4744) (70ddaa9) by Hasan
  • vue-query: fix vue-query imports in docs, correct section replacements (#​4728) (fa04a1d) by Damian Osipiuk
  • fix reference to course (afbd788) by Dominik Dorfmeister
Other

Packages

v4.20.4

Compare Source

Version 4.20.4 - 12/14/2022, 6:56 PM

Changes
Refactor
Packages

v4.20.3

Compare Source

Version 4.20.3 - 12/14/2022, 5:36 PM

Changes
Fix
  • query-async-storage-persister: support wider range of types (#​4639) (ce1259c) by Dominik Dorfmeister
Packages

v4.20.2

Compare Source

Version 4.20.2 - 12/14/2022, 7:27 AM

Changes

Refactor
Chore
  • stabilize tests (22fbdaf) by Dominik Dorfmeister

Packages

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

v5.48.1

Compare Source

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

v5.48.0

Compare Source

Features
  • eslint-plugin: specify which method is unbound and added test case (#​6281) (cf3ffdd)

5.47.1 (2022-12-26)

Bug Fixes
  • ast-spec: correct some incorrect ast types (#​6257) (0f3f645)
  • eslint-plugin: [member-ordering] correctly invert optionalityOrder (#​6256) (ccd45d4)

v5.47.1

Compare Source

Bug Fixes
  • ast-spec: correct some incorrect ast types (#​6257) (0f3f645)
  • eslint-plugin: [member-ordering] correctly invert optionalityOrder (#​6256) (ccd45d4)

v5.47.0

Compare Source

Features
  • eslint-plugin: [no-floating-promises] add suggestion fixer to add an 'await' (#​5943) (9e35ef9)

5.46.1 (2022-12-12)

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

v5.46.1

Compare Source

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

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

v5.48.1

Compare Source

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

v5.48.0

Compare Source

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

5.47.1 (2022-12-26)

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

v5.47.1

Compare Source

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

[v5.47.0](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#&#8203;54


Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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.

@netlify
Copy link

netlify bot commented Dec 12, 2022

Deploy Preview for my-react-template ready!

Name Link
🔨 Latest commit bc5faa8
🔍 Latest deploy log https://app.netlify.com/sites/my-react-template/deploys/63be929a55e38f0009643eaf
😎 Deploy Preview https://deploy-preview-72--my-react-template.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

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

@renovate renovate bot changed the title chore(deps): update all dependencies to v0.25.7 fix(deps): update all dependencies Dec 12, 2022
@renovate renovate bot force-pushed the renovate/all branch 9 times, most recently from 6ce9767 to c107a0e Compare December 17, 2022 12:03
@renovate renovate bot changed the title fix(deps): update all dependencies Update all dependencies Dec 17, 2022
@renovate renovate bot changed the title Update all dependencies fix(deps): update all dependencies Dec 17, 2022
@renovate renovate bot force-pushed the renovate/all branch 9 times, most recently from ffaea06 to 51aaff8 Compare December 22, 2022 11:42
@renovate renovate bot changed the title fix(deps): update all dependencies chore(deps): update all dependencies Dec 22, 2022
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 6297156 to de25dc4 Compare December 29, 2022 09:21
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 53c2438 to 5953dc0 Compare December 31, 2022 08:05
@renovate renovate bot force-pushed the renovate/all branch 12 times, most recently from 1b88fea to 8a8add4 Compare January 8, 2023 13:35
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 707467b to 7a01e02 Compare January 10, 2023 00:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant