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(ui): update all non-major dependencies #131

Merged
merged 4 commits into from
Jan 5, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 31, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.20.7 -> 7.20.12 age adoption passing confidence
@mantine/carousel 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/core (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/dates (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/dropzone (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/form (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/hooks (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/modals (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/next (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/notifications (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/nprogress (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/prism (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/spotlight (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@mantine/tiptap (source) 5.9.5 -> 5.10.0 age adoption passing confidence
@prisma/client (source) 4.8.0 -> 4.8.1 age adoption passing confidence
@tanstack/react-query (source) 4.20.4 -> 4.20.9 age adoption passing confidence
@types/luxon (source) 3.1.0 -> 3.2.0 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.47.1 -> 5.48.0 age adoption passing confidence
@typescript-eslint/parser 5.47.1 -> 5.48.0 age adoption passing confidence
aws-sdk 2.1285.0 -> 2.1289.0 age adoption passing confidence
babel-loader 9.1.0 -> 9.1.2 age adoption passing confidence
eslint (source) 8.30.0 -> 8.31.0 age adoption passing confidence
eslint-config-prettier 8.5.0 -> 8.6.0 age adoption passing confidence
eslint-plugin-codegen 0.16.1 -> 0.17.0 age adoption passing confidence
eslint-plugin-codegen ^0.16.1 -> ^0.16.1 || ^0.17.0 age adoption passing confidence
husky (source) 8.0.2 -> 8.0.3 age adoption passing confidence
i18next (source) 22.4.6 -> 22.4.8 age adoption passing confidence
luxon 3.2.0 -> 3.2.1 age adoption passing confidence
next-i18next 13.0.2 -> 13.0.3 age adoption passing confidence
pnpm (source) 7.21.0 -> 7.22.0 age adoption passing confidence
prisma (source) 4.8.0 -> 4.8.1 age adoption passing confidence
quicktype-core 6.1.0 -> 6.1.12 age adoption passing confidence
type-fest 3.5.0 -> 3.5.1 age adoption passing confidence
zod-prisma-types 1.5.3 -> 1.6.2 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
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

prisma/prisma

v4.8.1

Compare Source

Today, we are issuing the 4.8.1 patch release.

Fixe in Prisma Client
tanstack/query

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
typescript-eslint/typescript-eslint (@​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)
typescript-eslint/typescript-eslint (@​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

aws/aws-sdk-js

v2.1289.0

Compare Source

  • feature: AmplifyBackend: Updated GetBackendAPIModels response to include ModelIntrospectionSchema json string
  • feature: AppRunner: This release adds support of securely referencing secrets and configuration data that are stored in Secrets Manager and SSM Parameter Store by adding them as environment secrets in your App Runner service.
  • feature: Connect: Documentation update for a new Initiation Method value in DescribeContact API
  • feature: EMRServerless: Adds support for customized images. You can now provide runtime images when creating or updating EMR Serverless Applications.
  • feature: RDS: This release adds support for specifying which certificate authority (CA) to use for a DB instance's server certificate during DB instance creation, as well as other CA enhancements.

v2.1288.0

Compare Source

  • feature: ApplicationAutoScaling: Customers can now use the existing DescribeScalingActivities API to also see the detailed and machine-readable reasons for Application Auto Scaling not scaling their resources and, if needed, take the necessary corrective actions.
  • feature: SSM: Adding support for QuickSetup Document Type in Systems Manager

v2.1287.0

Compare Source

  • feature: SecurityLake: Allow CreateSubscriber API to take string input that allows setting more descriptive SubscriberDescription field. Make souceTypes field required in model level for UpdateSubscriberRequest as it is required for every API call on the backend. Allow ListSubscribers take any String as nextToken param.

v2.1286.0

Compare Source

  • feature: CloudFront: Extend response headers policy to support removing headers from viewer responses
babel/babel-loader

v9.1.2

Compare Source

9.1.1 was a broken release, it didn't include all the commits.

Dependencies updates

Misc

New Contributors

Full Changelog: babel/babel-loader@v9.1.0...v9.1.2

v9.1.1

Compare Source

eslint/eslint

v8.31.0

Compare Source

Features

  • 52c7c73 feat: check assignment patterns in no-underscore-dangle (#​16693) (Milos Djermanovic)
  • b401cde feat: add options to check destructuring in no-underscore-dangle (#​16006) (Morten Kaltoft)
  • 30d0daf feat: group properties with values in parentheses in key-spacing (#​16677) (Francesco Trotta)

Bug Fixes

  • 35439f1 fix: correct syntax error in prefer-arrow-callback autofix (#​16722) (Francesco Trotta)
  • 87b2470 fix: new instance of FlatESLint should load latest config file version (#​16608) (Milos Djermanovic)

Documentation

Chores

prettier/eslint-config-prettier

v8.6.0

Compare Source

  • Added: [vue/multiline-ternary]. Thanks to @​xcatliu!
mmkal/eslint-plugin-codegen

v0.17.0

typicode/husky

v8.0.3

Compare Source

  • fix: add git not installed message #​1208
i18next/i18next

v22.4.8

Compare Source

  • fix: nested interpolation with data model "replace"

v22.4.7

Compare Source

  • fix: interpolation with data model "replace"
moment/luxon

v3.2.1

Compare Source

i18next/next-i18next

v13.0.3

Compare Source

  • Error if custom localeStructure provided, but no ns option defined.
pnpm/pnpm

v7.22.0

Compare Source

Minor Changes

  • The pnpm list and pnpm why commands will now look through transitive dependencies of workspace: packages. A new --only-projects flag is available to only print workspace: packages.
  • pnpm exec and pnpm run command support --resume-from option. When used, the command will executed from given package #​4690.
  • Expose the npm_command environment variable to lifecycle hooks & scripts.

Patch Changes

  • Fix a situation where pnpm list and pnpm why may not respect the --depth argument.
  • Report to the console when a git-hosted dependency is built #​5847.
  • Throw an accurate error message when trying to install a package that has no versions, or all of its versions are unpublished #​5849.
  • replace dependency is-ci by ci-info (is-ci is just a simple wrapper around ci-info).
  • Only run prepublish scripts of git-hosted dependencies, if the dependency doesn't have a main file. In this case we can assume that the dependencies has to be built.
  • Print more contextual information when a git-hosted package fails to be prepared for installation #​5847.

Our Gold Sponsors

Our Silver Sponsors

quicktype/quicktype

v6.1.12

Compare Source

v6.1.11

Compare Source

v6.1.10

Compare Source

v6.1.9

Compare Source

v6.1.8

Compare Source

v6.1.7

Compare Source

v6.1.6

Compare Source

v6.1.5

Compare Source

v6.1.4

Compare Source

v6.1.3

[Compare Source](https://togithub.com/quicktype/quicktype/compare/fc620b94660d56196c607c96d0ffcffa2213e956...3b98507e311685e6f0a1af41e88


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 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, check this box

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

@renovate renovate bot added the dependencies Change in project dependencies. label Dec 31, 2022
kodiakhq[bot]
kodiakhq bot previously approved these changes Dec 31, 2022
@vercel
Copy link

vercel bot commented Dec 31, 2022

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

Name Status Preview Comments Updated
inreach-app ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Jan 5, 2023 at 8:09PM (UTC)
inreach-web ❌ Failed (Inspect) Jan 5, 2023 at 8:09PM (UTC)

@ghost
Copy link

ghost commented Dec 31, 2022

👇 Click on the image for a new way to code review
  • Make big changes easier — review code in small groups of related files

  • Know where to start — see the whole change at a glance

  • Take a code tour — explore the change with an interactive tour

  • Make comments and review — all fully sync’ed with github

    Try it now!

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map Legend

kodiakhq[bot]
kodiakhq bot previously approved these changes Dec 31, 2022
kodiakhq[bot]
kodiakhq bot previously approved these changes Dec 31, 2022
kodiakhq[bot]
kodiakhq bot previously approved these changes Jan 1, 2023
kodiakhq[bot]
kodiakhq bot previously approved these changes Jan 5, 2023
kodiakhq[bot]
kodiakhq bot previously approved these changes Jan 5, 2023
kodiakhq[bot]
kodiakhq bot previously approved these changes Jan 5, 2023
@sonarcloud
Copy link

sonarcloud bot commented Jan 5, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@renovate
Copy link
Contributor Author

renovate bot commented Jan 5, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.
You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@kodiakhq kodiakhq bot merged commit 9a809ab into dev Jan 5, 2023
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch January 5, 2023 20:09
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