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

build(deps): bump the minor group with 10 updates #379

Merged
merged 1 commit into from
Jan 20, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 20, 2025

Bumps the minor group with 10 updates:

Package From To
@mantine/charts 7.15.3 7.16.1
@mantine/core 7.15.3 7.16.1
@mantine/hooks 7.15.3 7.16.1
@next/bundle-analyzer 15.1.4 15.1.5
next 15.1.4 15.1.5
@types/node 22.10.5 22.10.7
@typescript-eslint/eslint-plugin 8.19.1 8.20.0
@typescript-eslint/parser 8.19.1 8.20.0
eslint-config-next 15.1.4 15.1.5
postcss 8.4.49 8.5.1

Updates @mantine/charts from 7.15.3 to 7.16.1

Release notes

Sourced from @​mantine/charts's releases.

7.16.1

What's Changed

  • [@mantine/core] Menu: Add withInitialFocusPlaceholder prop support
  • [@mantine/core] Slider: Fix onChangeEnd being called when disabled prop is set
  • [@mantine/core] Add option to customize chevron color with chevronColor prop in Select and MultiSelect components
  • [@mantine/core] Fix incorrect styles of nested tables (#7354)
  • [@mantine/core]: NumberInput: Fix onChange being called in onBlur if the value has not been changed (#7383)
  • [@mantine/core] Menu: Add data-disabled prop handling to Menu.Item component (#7377)
  • [@mantine/form] Fix incorrect values handling in form.resetDirty (#7373)
  • [@mantine/chart] AreaChart: Fix gridColor and textColor props being passed as attributes to the DOM node (#7378)
  • [@mantine/hooks] use-in-viewport: Fix tracking being stopped when used with a dnd library (#7359)
  • [@mantine/core] MantineProvider: Fix jest tests not running in case there is incorrect window.matchMedia polyfill implementation (#7360)
  • [@mantine/core] Modal: Fix Escape key not working in old Safari versions (#7358)

New Contributors

Full Changelog: mantinedev/mantine@7.16.0...7.16.1

7.16.0 🌶️

View changelog with demos on mantine.dev website

use-scroll-spy hook

New use-scroll-spy hook tracks scroll position and returns index of the element that is currently in the viewport. It is useful for creating table of contents components (like in mantine.dev sidebar on the right side) and similar features.

import { Text, UnstyledButton } from '@mantine/core';
import { useScrollSpy } from '@mantine/hooks';
function Demo() {
const spy = useScrollSpy({
selector: '#mdx :is(h1, h2, h3, h4, h5, h6)',
});
const headings = spy.data.map((heading, index) => (
<li
key={heading.id}
style={{
listStylePosition: 'inside',
paddingInlineStart: heading.depth * 20,
background: index === spy.active ? 'var(--mantine-color-blue-light)' : undefined,
}}
>
</tr></table>

... (truncated)

Commits
  • e981065 [release] Version: 7.16.1
  • d031504 [@​mantine/chart] AreaChart: Fix gridColor and textColor props being passe...
  • e8f7b01 [release] Version: 7.16.0
  • See full diff in compare view

Updates @mantine/core from 7.15.3 to 7.16.1

Release notes

Sourced from @​mantine/core's releases.

7.16.1

What's Changed

  • [@mantine/core] Menu: Add withInitialFocusPlaceholder prop support
  • [@mantine/core] Slider: Fix onChangeEnd being called when disabled prop is set
  • [@mantine/core] Add option to customize chevron color with chevronColor prop in Select and MultiSelect components
  • [@mantine/core] Fix incorrect styles of nested tables (#7354)
  • [@mantine/core]: NumberInput: Fix onChange being called in onBlur if the value has not been changed (#7383)
  • [@mantine/core] Menu: Add data-disabled prop handling to Menu.Item component (#7377)
  • [@mantine/form] Fix incorrect values handling in form.resetDirty (#7373)
  • [@mantine/chart] AreaChart: Fix gridColor and textColor props being passed as attributes to the DOM node (#7378)
  • [@mantine/hooks] use-in-viewport: Fix tracking being stopped when used with a dnd library (#7359)
  • [@mantine/core] MantineProvider: Fix jest tests not running in case there is incorrect window.matchMedia polyfill implementation (#7360)
  • [@mantine/core] Modal: Fix Escape key not working in old Safari versions (#7358)

New Contributors

Full Changelog: mantinedev/mantine@7.16.0...7.16.1

7.16.0 🌶️

View changelog with demos on mantine.dev website

use-scroll-spy hook

New use-scroll-spy hook tracks scroll position and returns index of the element that is currently in the viewport. It is useful for creating table of contents components (like in mantine.dev sidebar on the right side) and similar features.

import { Text, UnstyledButton } from '@mantine/core';
import { useScrollSpy } from '@mantine/hooks';
function Demo() {
const spy = useScrollSpy({
selector: '#mdx :is(h1, h2, h3, h4, h5, h6)',
});
const headings = spy.data.map((heading, index) => (
<li
key={heading.id}
style={{
listStylePosition: 'inside',
paddingInlineStart: heading.depth * 20,
background: index === spy.active ? 'var(--mantine-color-blue-light)' : undefined,
}}
>
</tr></table>

... (truncated)

Commits
  • e981065 [release] Version: 7.16.1
  • e9ea462 [@​mantine/core] Menu: Add withInitialFocusPlaceholder prop support
  • 5242d31 [@​mantine/core] Slider: Fix onChangeEnd being called when disabled prop i...
  • fdba33d [@​mantine/core] Add option to customize chevron color with chevronColor pro...
  • 9080c09 [@​mantine/core] Fix incorrect styles of nested tables (#7354)
  • 678eb00 [@​mantine/core]: NumberInput: Fix onChange being called in onBlur if the ...
  • 12ee02f [@​mantine/core] Menu: Add data-disabled prop handling to Menu.Item componen...
  • 56b7ce5 [@​mantine/core] MantineProvider: Fix jest tests not running in case there is ...
  • e2d368d [@​mantine/core] Modal: Fix Escape key not working in old Safari versions (#7358)
  • e8f7b01 [release] Version: 7.16.0
  • Additional commits viewable in compare view

Updates @mantine/hooks from 7.15.3 to 7.16.1

Release notes

Sourced from @​mantine/hooks's releases.

7.16.1

What's Changed

  • [@mantine/core] Menu: Add withInitialFocusPlaceholder prop support
  • [@mantine/core] Slider: Fix onChangeEnd being called when disabled prop is set
  • [@mantine/core] Add option to customize chevron color with chevronColor prop in Select and MultiSelect components
  • [@mantine/core] Fix incorrect styles of nested tables (#7354)
  • [@mantine/core]: NumberInput: Fix onChange being called in onBlur if the value has not been changed (#7383)
  • [@mantine/core] Menu: Add data-disabled prop handling to Menu.Item component (#7377)
  • [@mantine/form] Fix incorrect values handling in form.resetDirty (#7373)
  • [@mantine/chart] AreaChart: Fix gridColor and textColor props being passed as attributes to the DOM node (#7378)
  • [@mantine/hooks] use-in-viewport: Fix tracking being stopped when used with a dnd library (#7359)
  • [@mantine/core] MantineProvider: Fix jest tests not running in case there is incorrect window.matchMedia polyfill implementation (#7360)
  • [@mantine/core] Modal: Fix Escape key not working in old Safari versions (#7358)

New Contributors

Full Changelog: mantinedev/mantine@7.16.0...7.16.1

7.16.0 🌶️

View changelog with demos on mantine.dev website

use-scroll-spy hook

New use-scroll-spy hook tracks scroll position and returns index of the element that is currently in the viewport. It is useful for creating table of contents components (like in mantine.dev sidebar on the right side) and similar features.

import { Text, UnstyledButton } from '@mantine/core';
import { useScrollSpy } from '@mantine/hooks';
function Demo() {
const spy = useScrollSpy({
selector: '#mdx :is(h1, h2, h3, h4, h5, h6)',
});
const headings = spy.data.map((heading, index) => (
<li
key={heading.id}
style={{
listStylePosition: 'inside',
paddingInlineStart: heading.depth * 20,
background: index === spy.active ? 'var(--mantine-color-blue-light)' : undefined,
}}
>
</tr></table>

... (truncated)

Commits
  • e981065 [release] Version: 7.16.1
  • 5866fd5 [@​mantine/hooks] use-in-viewport: Fix tracking being stopped when used with a...
  • e8f7b01 [release] Version: 7.16.0
  • bc66999 Merge branch 'master' of github.com:mantinedev/mantine into 7.16
  • 078b531 Merge branch master into 7.16
  • 32924c3 Merge branch '7.15' into 7.16
  • 70e48cc [@​mantine/hooks] use-local-storage: Add option to turn browser tabs sync down
  • 69166f7 [mantine.dev] Add use-scroll-spy hook documentation
  • 0c50c89 [@​mantine/hooks] use-scroll-spy: Add reinitialize function
  • 06b27c0 [@​mantine/hooks] use-scroll-spy: Init hook
  • See full diff in compare view

Updates @next/bundle-analyzer from 15.1.4 to 15.1.5

Release notes

Sourced from @​next/bundle-analyzer's releases.

v15.1.5

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Fix missing revalidate with notFound() (#75009)
  • fix: when metadatabase is set we should not warn (#74840)
  • Fix @​vercel/og license SPDX expression (#74745)
  • fix: ts language server rule metadata should allow null (#74704)
  • fix: eslint rule of using img in metadata routes (#74864)
  • Fix presentation when onerror receives an event without error (#74643)
  • fix fetch lock not being consistently released #74623 (#75028)

Credits

Huge thanks to @​ijjk, @​huozhi, @​matmannion and @​ztanner for helping!

Commits

Updates next from 15.1.4 to 15.1.5

Release notes

Sourced from next's releases.

v15.1.5

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Fix missing revalidate with notFound() (#75009)
  • fix: when metadatabase is set we should not warn (#74840)
  • Fix @​vercel/og license SPDX expression (#74745)
  • fix: ts language server rule metadata should allow null (#74704)
  • fix: eslint rule of using img in metadata routes (#74864)
  • Fix presentation when onerror receives an event without error (#74643)
  • fix fetch lock not being consistently released #74623 (#75028)

Credits

Huge thanks to @​ijjk, @​huozhi, @​matmannion and @​ztanner for helping!

Commits

Updates @types/node from 22.10.5 to 22.10.7

Commits

Updates @typescript-eslint/eslint-plugin from 8.19.1 to 8.20.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.20.0

8.20.0 (2025-01-13)

🚀 Features

  • standardize debug namespaces to file paths (#10599)
  • eslint-plugin: [no-misused-spread] add new rule (#10551)
  • eslint-plugin: [no-deprecated] add allow options (#10585)
  • eslint-plugin: [consistent-type-assertions] add arrayLiteralTypeAssertions options (#10565)

🩹 Fixes

  • eslint-plugin: [no-shadow] ignore ordering of type declarations (#10593)
  • eslint-plugin: [no-unnecessary-condition] don't flag optional chaining for union types with an unconstrained type parameters (#10602)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.20.0 (2025-01-13)

🚀 Features

  • eslint-plugin: [consistent-type-assertions] add arrayLiteralTypeAssertions options (#10565)
  • eslint-plugin: [no-deprecated] add allow options (#10585)
  • eslint-plugin: [no-misused-spread] add new rule (#10551)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-condition] don't flag optional chaining for union types with an unconstrained type parameters (#10602)
  • eslint-plugin: [no-shadow] ignore ordering of type declarations (#10593)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • ea6fbea chore(release): publish 8.20.0
  • a7fc28c feat(eslint-plugin): [consistent-type-assertions] add arrayLiteralTypeAsserti...
  • d6e5978 fix(eslint-plugin): [no-unnecessary-condition] don't flag optional chaining f...
  • 63135f7 fix(eslint-plugin): [no-shadow] ignore ordering of type declarations (#10593)
  • 6dda0a4 feat(eslint-plugin): [no-deprecated] add allow options (#10585)
  • 04166e0 feat(eslint-plugin): [no-misused-spread] add new rule (#10551)
  • b17c7f2 chore: export all Options and MessageIds types from rule files (#10556)
  • 03d9639 test(eslint-plugin): add extra tests (#10587)
  • e697cfa chore: fix CI snapshot failure (#10624)
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.19.1 to 8.20.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.20.0

8.20.0 (2025-01-13)

🚀 Features

  • standardize debug namespaces to file paths (#10599)
  • eslint-plugin: [no-misused-spread] add new rule (#10551)
  • eslint-plugin: [no-deprecated] add allow options (#10585)
  • eslint-plugin: [consistent-type-assertions] add arrayLiteralTypeAssertions options (#10565)

🩹 Fixes

  • eslint-plugin: [no-shadow] ignore ordering of type declarations (#10593)
  • eslint-plugin: [no-unnecessary-condition] don't flag optional chaining for union types with an unconstrained type parameters (#10602)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.20.0 (2025-01-13)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates eslint-config-next from 15.1.4 to 15.1.5

Release notes

Sourced from eslint-config-next's releases.

v15.1.5

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Fix missing revalidate with notFound() (#75009)
  • fix: when metadatabase is set we should not warn (#74840)
  • Fix @​vercel/og license SPDX expression (#74745)
  • fix: ts language server rule metadata should allow null (#74704)
  • fix: eslint rule of using img in metadata routes (#74864)
  • Fix presentation when onerror receives an event without error (#74643)
  • fix fetch lock not being consistently released #74623 (#75028)

Credits

Huge thanks to @​ijjk, @​huozhi, @​matmannion and @​ztanner for helping!

Commits

Updates postcss from 8.4.49 to 8.5.1

Release notes

Sourced from postcss's releases.

8.5.1

8.5 “Duke Alloces”

PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.

@​romainmenke during his work on Stylelint added Input#document in additional to Input#css.

root.source.input.document //=> "<p>Hello</p>
                           //    <style>
                           //    p {
                           //      color: green;
                           //    }
                           //    </style>"
root.source.input.css      //=> "p {
                           //      color: green;
                           //    }"

Thanks to Sponsors

This release was possible thanks to our community.

If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:

Changelog

Sourced from postcss's changelog.

8.5.1

8.5 “Duke Alloces”

  • Added Input#document for sources like CSS-in-JS or HTML (by @​romainmenke).
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 minor group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@mantine/charts](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/charts) | `7.15.3` | `7.16.1` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `7.15.3` | `7.16.1` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `7.15.3` | `7.16.1` |
| [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) | `15.1.4` | `15.1.5` |
| [next](https://github.com/vercel/next.js) | `15.1.4` | `15.1.5` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.5` | `22.10.7` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.19.1` | `8.20.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.19.1` | `8.20.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.1.4` | `15.1.5` |
| [postcss](https://github.com/postcss/postcss) | `8.4.49` | `8.5.1` |


Updates `@mantine/charts` from 7.15.3 to 7.16.1
- [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.16.1/packages/@mantine/charts)

Updates `@mantine/core` from 7.15.3 to 7.16.1
- [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.16.1/packages/@mantine/core)

Updates `@mantine/hooks` from 7.15.3 to 7.16.1
- [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.16.1/packages/@mantine/hooks)

Updates `@next/bundle-analyzer` from 15.1.4 to 15.1.5
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.5/packages/next-bundle-analyzer)

Updates `next` from 15.1.4 to 15.1.5
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v15.1.4...v15.1.5)

Updates `@types/node` from 22.10.5 to 22.10.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@typescript-eslint/eslint-plugin` from 8.19.1 to 8.20.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.20.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.19.1 to 8.20.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.20.0/packages/parser)

Updates `eslint-config-next` from 15.1.4 to 15.1.5
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.5/packages/eslint-config-next)

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

---
updated-dependencies:
- dependency-name: "@mantine/charts"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@mantine/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@mantine/hooks"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@next/bundle-analyzer"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 20, 2025
@torokati44 torokati44 merged commit 36d4c4b into master Jan 20, 2025
1 check passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-4b5f6c1e0e branch January 20, 2025 10:37
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant