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

Update all non-major dependencies #147

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 6, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@atlaskit/adf-schema 35.7.0 -> 35.14.0 age adoption passing confidence
@atlaskit/adf-utils 19.0.23 -> 19.12.0 age adoption passing confidence
@atlaskit/editor-json-transformer 8.10.27 -> 8.21.0 age adoption passing confidence
@atlaskit/editor-wikimarkup-transformer 11.2.44 -> 11.12.5 age adoption passing confidence
@emotion/react (source) 11.11.4 -> 11.13.3 age adoption passing confidence
@fastify/env 4.3.0 -> 4.4.0 age adoption passing confidence
@hello-pangea/dnd 16.5.0 -> 16.6.0 age adoption passing confidence
@mantine/core (source) 7.6.2 -> 7.14.0 age adoption passing confidence
@mantine/dates (source) 7.6.1 -> 7.14.0 age adoption passing confidence
@mantine/form (source) 7.6.1 -> 7.14.0 age adoption passing confidence
@mantine/hooks (source) 7.6.2 -> 7.14.0 age adoption passing confidence
@mantine/notifications (source) 7.6.1 -> 7.14.0 age adoption passing confidence
@mantine/tiptap (source) 7.6.2 -> 7.14.0 age adoption passing confidence
@playwright/test (source) 1.42.1 -> 1.48.2 age adoption passing confidence
@tanstack/react-query (source) 5.25.0 -> 5.60.4 age adoption passing confidence
@tanstack/react-query-devtools (source) 5.25.0 -> 5.60.4 age adoption passing confidence
@testing-library/jest-dom 6.4.2 -> 6.6.3 age adoption passing confidence
@testing-library/react 14.2.1 -> 14.3.1 age adoption passing confidence
@tiptap/extension-link (source) 2.2.4 -> 2.9.1 age adoption passing confidence
@tiptap/pm (source) 2.2.4 -> 2.9.1 age adoption passing confidence
@tiptap/react (source) 2.2.4 -> 2.9.1 age adoption passing confidence
@tiptap/starter-kit (source) 2.2.4 -> 2.9.1 age adoption passing confidence
@types/jest (source) 29.5.12 -> 29.5.14 age adoption passing confidence
@types/lodash (source) 4.14.202 -> 4.17.13 age adoption passing confidence
@types/react (source) 18.2.63 -> 18.3.12 age adoption passing confidence
@types/react-dom (source) 18.2.20 -> 18.3.1 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.1.1 -> 7.18.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.1.1 -> 7.18.0 age adoption passing confidence
@vitejs/plugin-react (source) 4.2.1 -> 4.3.3 age adoption passing confidence
dayjs (source) 1.11.10 -> 1.11.13 age adoption passing confidence
electron 29.1.0 -> 29.4.6 age adoption passing confidence
electron-squirrel-startup 1.0.0 -> 1.0.1 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-import 2.29.1 -> 2.31.0 age adoption passing confidence
eslint-plugin-import-newlines 1.3.4 -> 1.4.0 age adoption passing confidence
eslint-plugin-jsx-a11y 6.8.0 -> 6.10.2 age adoption passing confidence
eslint-plugin-react 7.34.0 -> 7.37.2 age adoption passing confidence
eslint-plugin-react-hooks (source) 4.6.0 -> 4.6.2 age adoption passing confidence
eslint-plugin-testing-library 6.2.0 -> 6.4.0 age adoption passing confidence
fastify (source) 4.26.2 -> 4.28.1 age adoption passing confidence
husky 9.0.11 -> 9.1.6 age adoption passing confidence
immer 10.0.3 -> 10.1.1 age adoption passing confidence
lint-staged 15.2.2 -> 15.2.10 age adoption passing confidence
postcss (source) 8.4.35 -> 8.4.49 age adoption passing confidence
postcss-preset-mantine 1.13.0 -> 1.17.0 age adoption passing confidence
react (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-dom (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-router-dom (source) 6.22.2 -> 6.28.0 age adoption passing confidence
sass 1.71.1 -> 1.81.0 age adoption passing confidence
ts-jest (source) 29.1.2 -> 29.2.5 age adoption passing confidence
typescript (source) 5.3.3 -> 5.6.3 age adoption passing confidence
use-immer ^0.9.0 -> ^0.10.0 age adoption passing confidence
vite-plugin-electron-renderer 0.14.5 -> 0.14.6 age adoption passing confidence
yarn 1.22.21 -> 1.22.22 age adoption passing confidence
zustand 4.5.2 -> 4.5.5 age adoption passing confidence

Release Notes

emotion-js/emotion (@​emotion/react)

v11.13.3

Compare Source

v11.13.0

Compare Source

v11.12.0

Compare Source

fastify/fastify-env (@​fastify/env)

v4.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: fastify/fastify-env@v4.3.0...v4.4.0

hello-pangea/dnd (@​hello-pangea/dnd)

v16.6.0

Compare Source

Others 🔧
CI 🛠
mantinedev/mantine (@​mantine/core)

v7.14.0: 💋

Compare Source

View changelog with demos on mantine.dev website

AngleSlider component

New AngleSlider component:

import { AngleSlider, Group } from '@​mantine/core';

function Demo() {
  return (
    <Group p="lg" gap={50}>
      <AngleSlider
        aria-label="Angle slider"
        formatLabel={(value) => `${value}°`}
        size={100}
        restrictToMarks
        marks={[
          { value: 0 },
          { value: 45 },
          { value: 90 },
          { value: 135 },
          { value: 180 },
          { value: 225 },
          { value: 270 },
          { value: 315 },
        ]}
      />

      <AngleSlider
        aria-label="Angle slider"
        formatLabel={(value) => `${value}°`}
        size={100}
        marks={[
          { value: 0, label: '0°' },
          { value: 45, label: '45°' },
          { value: 90, label: '90°' },
          { value: 135, label: '135°' },
          { value: 180, label: '180°' },
          { value: 225, label: '225°' },
          { value: 270, label: '270°' },
          { value: 315, label: '315°' },
        ]}
      />
    </Group>
  );
}

RadialBarChart component

New RadialBarChart component:

import { RadialBarChart } from '@&#8203;mantine/charts';

const data = [
  { name: '18-24', value: 31.47, color: 'blue.7' },
  { name: '25-29', value: 26.69, color: 'orange.6' },
  { name: '30-34', value: 15.69, color: 'yellow.7' },
  { name: '35-39', value: 8.22, color: 'cyan.6' },
  { name: '40-49', value: 8.63, color: 'green' },
  { name: '50+', value: 2.63, color: 'pink' },
  { name: 'unknown', value: 6.67, color: 'gray' },
];

function Demo() {
  return <RadialBarChart data={data} dataKey="value" h={280} withLabels />;
}

FunnelChart component

New FunnelChart component:

import { FunnelChart } from '@&#8203;mantine/charts';

const data = [
  { name: 'USA', value: 400, color: 'indigo.6' },
  { name: 'India', value: 300, color: 'yellow.6' },
  { name: 'Japan', value: 100, color: 'teal.6' },
  { name: 'Other', value: 200, color: 'gray.6' },
];

function Demo() {
  return <FunnelChart data={data} />;
}

Modal.Stack and Drawer.Stack components

New Modal.Stack and Drawer.Stack components simplify usage of multiple modals/drawers at the same time.

Use Modal.Stack component to render multiple modals at the same time.
Modal.Stack keeps track of opened modals, manages z-index values, focus trapping
and closeOnEscape behavior. Modal.Stack is designed to be used with useModalsStack hook.

Differences from using multiple Modal components:

  • Modal.Stack manages z-index values – modals that are opened later will always have higher z-index value disregarding their order in the DOM
  • Modal.Stack disables focus trap and Escape key handling for all modals except the one that is currently opened
  • Modals that are not currently opened are present in the DOM but are hidden with opacity: 0 and pointer-events: none
  • Only one overlay is rendered at a time
import { Button, Group, Modal, useModalsStack } from '@&#8203;mantine/core';

function Demo() {
  const stack = useModalsStack(['delete-page', 'confirm-action', 'really-confirm-action']);

  return (
    <>
      <Modal.Stack>
        <Modal {...stack.register('delete-page')} title="Delete this page?">
          Are you sure you want to delete this page? 

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 21 times, most recently from 8842d16 to b9e8740 Compare March 13, 2024 22:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 72d3c80 to 7445c78 Compare March 18, 2024 14:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from e2b1562 to 28ca6b1 Compare October 25, 2024 22:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from da21fcf to 1c6435f Compare November 2, 2024 01:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from e77b0b3 to 4862486 Compare November 10, 2024 08:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from f27018f to 8d8984d Compare November 15, 2024 19:01
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.

0 participants