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

Bump the all-dependencies group with 5 updates #10

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 12, 2024

Bumps the all-dependencies group with 5 updates:

Package From To
@mantine/core 7.13.5 7.14.0
@mantine/hooks 7.13.5 7.14.0
@mantine/notifications 7.13.5 7.14.0
markdown-to-jsx 7.5.0 7.6.0
postcss 8.4.48 8.4.49

Updates @mantine/core from 7.13.5 to 7.14.0

Release notes

Sourced from @​mantine/core's releases.

7.14.0 💋

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 },
]}
/>
  &lt;AngleSlider
    aria-label=&quot;Angle slider&quot;
    formatLabel={(value) =&gt; `${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°' },
    ]}
  /&gt;
&lt;/Group&gt;

);
}

... (truncated)

Commits
  • 811b104 [release] Version: 7.14.0
  • 727c9e4 Merge branch master into 7.14
  • c513343 [release] Version: 7.13.5-alpha.0
  • 475c4e0 Merge branch 'master' of github.com:mantinedev/mantine into 7.14
  • d7af187 Merge branch 'master' of github.com:mantinedev/mantine into 7.14
  • See full diff in compare view

Updates @mantine/hooks from 7.13.5 to 7.14.0

Release notes

Sourced from @​mantine/hooks's releases.

7.14.0 💋

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 },
]}
/>
  &lt;AngleSlider
    aria-label=&quot;Angle slider&quot;
    formatLabel={(value) =&gt; `${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°' },
    ]}
  /&gt;
&lt;/Group&gt;

);
}

... (truncated)

Commits

Updates @mantine/notifications from 7.13.5 to 7.14.0

Release notes

Sourced from @​mantine/notifications's releases.

7.14.0 💋

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 },
]}
/>
  &lt;AngleSlider
    aria-label=&quot;Angle slider&quot;
    formatLabel={(value) =&gt; `${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°' },
    ]}
  /&gt;
&lt;/Group&gt;

);
}

... (truncated)

Commits

Updates markdown-to-jsx from 7.5.0 to 7.6.0

Release notes

Sourced from markdown-to-jsx's releases.

v7.6.0

Minor Changes

  • 2281a4d: Add options.disableAutoLink to customize bare URL handling behavior.

    By default, bare URLs in the markdown document will be converted into an anchor tag. This behavior can be disabled if desired.

    <Markdown options={{ disableAutoLink: true }}>
      The URL https://quantizor.dev will not be rendered as an anchor tag.
    </Markdown>
    // or
    compiler(
    'The URL https://quantizor.dev will not be rendered as an anchor tag.',
    { disableAutoLink: true }
    )
    // renders:
    <span>
    The URL https://quantizor.dev will not be rendered as an anchor tag.
    </span>

Patch Changes

  • fb3d716: Simplify handling of fallback scenario if a link reference is missing its corresponding footnote.

v7.5.1

Patch Changes

  • b16f668: Fix issue with lookback cache resulting in false detection of lists inside lists in some scenarios
  • 58b96d3: fix: handle empty HTML tags more consistently #597
Changelog

Sourced from markdown-to-jsx's changelog.

7.6.0

Minor Changes

  • 2281a4d: Add options.disableAutoLink to customize bare URL handling behavior.

    By default, bare URLs in the markdown document will be converted into an anchor tag. This behavior can be disabled if desired.

    <Markdown options={{ disableAutoLink: true }}>
      The URL https://quantizor.dev will not be rendered as an anchor tag.
    </Markdown>
    // or
    compiler(
    'The URL https://quantizor.dev will not be rendered as an anchor tag.',
    { disableAutoLink: true }
    )
    // renders:
    <span>
    The URL https://quantizor.dev will not be rendered as an anchor tag.
    </span>

Patch Changes

  • fb3d716: Simplify handling of fallback scenario if a link reference is missing its corresponding footnote.

7.5.1

Patch Changes

  • b16f668: Fix issue with lookback cache resulting in false detection of lists inside lists in some scenarios
  • 58b96d3: fix: handle empty HTML tags more consistently #597
Commits
  • ada1fad Version Packages (#617)
  • 2281a4d feat: add option to disable autolinking (#616)
  • fb3d716 fix: simplify link reference fallback handling
  • 69a9856 Version Packages (#615)
  • 27e4b63 chore: slight modification
  • 992c95c chore: switch to action-based publish
  • 7af2667 docs: update site
  • 58b96d3 fix: handle render of empty noInnerParse html nodes like script and style tag...
  • b16f668 fix: false detection of nested list due to bad lookback cache (#614)
  • See full diff in compare view

Updates postcss from 8.4.48 to 8.4.49

Release notes

Sourced from postcss's releases.

8.4.49

Changelog

Sourced from postcss's changelog.

8.4.49

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `7.13.5` | `7.14.0` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `7.13.5` | `7.14.0` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `7.13.5` | `7.14.0` |
| [markdown-to-jsx](https://github.com/quantizor/markdown-to-jsx) | `7.5.0` | `7.6.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.48` | `8.4.49` |


Updates `@mantine/core` from 7.13.5 to 7.14.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.14.0/packages/@mantine/core)

Updates `@mantine/hooks` from 7.13.5 to 7.14.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.14.0/packages/@mantine/hooks)

Updates `@mantine/notifications` from 7.13.5 to 7.14.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.14.0/packages/@mantine/notifications)

Updates `markdown-to-jsx` from 7.5.0 to 7.6.0
- [Release notes](https://github.com/quantizor/markdown-to-jsx/releases)
- [Changelog](https://github.com/quantizor/markdown-to-jsx/blob/main/CHANGELOG.md)
- [Commits](quantizor/markdown-to-jsx@v7.5.0...v7.6.0)

Updates `postcss` from 8.4.48 to 8.4.49
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.48...8.4.49)

---
updated-dependencies:
- dependency-name: "@mantine/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@mantine/hooks"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@mantine/notifications"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: markdown-to-jsx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 12, 2024
@github-actions github-actions bot enabled auto-merge (rebase) November 12, 2024 18:33
@github-actions github-actions bot merged commit 105ec30 into master Nov 12, 2024
2 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-dependencies-4c57d7fb8c branch November 12, 2024 18:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants