Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 1, 2025

Bumps the dependencies group with 15 updates in the / directory:

Package From To
@chakra-ui/react 2.10.7 3.28.0
@emotion/styled 11.14.0 11.14.1
@mdx-js/loader 3.1.0 3.1.1
@mdx-js/react 3.1.0 3.1.1
@next/mdx 14.2.28 16.0.1
apexcharts 4.6.0 5.3.5
date-fns 3.6.0 4.1.0
framer-motion 11.18.2 12.23.24
isomorphic-dompurify 2.24.0 2.30.1
next 14.2.28 16.0.1
react 18.3.1 19.2.0
react-apexcharts 1.7.0 1.8.0
react-dom 18.3.1 19.2.0
react-syntax-highlighter 15.6.1 16.1.0
swr 2.3.3 2.3.6

Updates @chakra-ui/react from 2.10.7 to 3.28.0

Release notes

Sourced from @​chakra-ui/react's releases.

@​chakra-ui/react@​3.28.0

Minor Changes

  • #10374 e62bae7 Thanks @​Adebesin-Cell! - Add new TagsInput component for entering multiple values as tags with features like tag creation, deletion, and keyboard navigation.

    import { Span, TagsInput } from "@chakra-ui/react"
    export const TagsInputBasic = () => {
    return (
    <TagsInput.Root defaultValue={["React", "Chakra", "TypeScript"]}>
    <TagsInput.Label>Tags</TagsInput.Label>
    <TagsInput.Control>
    <TagsInput.Items />
    <TagsInput.Input placeholder="Add tag..." />
    </TagsInput.Control>
    </TagsInput.Root>
    )
    }

  • bf31e2a Thanks @​segunadebayo! - - Checkbox

    • Fix issue where setting initial checked state to indeterminate doesn't work
    • Ensure api.checkedState returns the correct checked state
    • Collapsible
      • Add support for collapsedHeight and collapsedWidth props to control the dimensions of the collapsible content when in its collapsed state
      • Fix issue where dir prop value doesn't get applied correctly
      • Update the recipe styling as needed (when data-has-collapsed-size is set)
    • Combobox: Fix issue where controlled single-select combobox does not propagate its initial value to inputValue
    • Dialog, Popover: In modal mode, allow elements referenced by aria-controls to be included in the focus trap scope
    • Listbox: Fix issue where pressing Enter key when no highlighted item still calls event.preventDefault()
    • Number Input: Fix cursor jumping to end when typing in the middle with formatOptions like style: "currency"
    • Pagination: Add getPageUrl prop for generating href attributes when using pagination as links
    • Pin Input: Fix issue where keyboard shortcuts Cmd+Backspace and Cmd+Delete would insert "undefined" instead of clearing the field
    • Scroll Area
      • Fix horizontal scrollbar positioning on Safari in RTL mode

... (truncated)

Changelog

Sourced from @​chakra-ui/react's changelog.

3.28.0

Minor Changes

  • #10374 e62bae7 Thanks @​Adebesin-Cell! - Add new TagsInput component for entering multiple values as tags with features like tag creation, deletion, and keyboard navigation.

    import { Span, TagsInput } from "@chakra-ui/react"
    export const TagsInputBasic = () => {
    return (
    <TagsInput.Root defaultValue={["React", "Chakra", "TypeScript"]}>
    <TagsInput.Label>Tags</TagsInput.Label>
    <TagsInput.Control>
    <TagsInput.Items />
    <TagsInput.Input placeholder="Add tag..." />
    </TagsInput.Control>
    </TagsInput.Root>
    )
    }

  • bf31e2a Thanks @​segunadebayo! - - Checkbox

    • Fix issue where setting initial checked state to indeterminate doesn't work
    • Ensure api.checkedState returns the correct checked state
    • Collapsible
      • Add support for collapsedHeight and collapsedWidth props to control the dimensions of the collapsible content when in its collapsed state
      • Fix issue where dir prop value doesn't get applied correctly
      • Update the recipe styling as needed (when data-has-collapsed-size is set)
    • Combobox: Fix issue where controlled single-select combobox does not propagate its initial value to inputValue
    • Dialog, Popover: In modal mode, allow elements referenced by aria-controls to be included in the focus trap scope
    • Listbox: Fix issue where pressing Enter key when no highlighted item still calls event.preventDefault()
    • Number Input: Fix cursor jumping to end when typing in the middle with formatOptions like style: "currency"
    • Pagination: Add getPageUrl prop for generating href attributes when using pagination as links
    • Pin Input: Fix issue where keyboard shortcuts Cmd+Backspace and Cmd+Delete would insert "undefined" instead of clearing the field
    • Scroll Area

... (truncated)

Commits

Updates @emotion/styled from 11.14.0 to 11.14.1

Release notes

Sourced from @​emotion/styled's releases.

@​emotion/styled@​11.14.1

Patch Changes

  • #3334 0facbe4 Thanks @​ZachRiegel! - Renamed default-exported variable in @emotion/styled to aid inferred import names in auto-import completions in IDEs
Commits

Updates @mdx-js/loader from 3.1.0 to 3.1.1

Release notes

Sourced from @​mdx-js/loader's releases.

3.1.1

Fix

Types

  • 933ab444 @mdx-js/mdx: add attributes to export/import declarations

Docs

Full Changelog: mdx-js/mdx@3.1.0...3.1.1

Commits

Updates @mdx-js/react from 3.1.0 to 3.1.1

Release notes

Sourced from @​mdx-js/react's releases.

3.1.1

Fix

Types

  • 933ab444 @mdx-js/mdx: add attributes to export/import declarations

Docs

Full Changelog: mdx-js/mdx@3.1.0...3.1.1

Commits

Updates @next/mdx from 14.2.28 to 16.0.1

Release notes

Sourced from @​next/mdx's releases.

v16.0.1

Core Changes

  • fix(static-paths): add depth tracking to parallel route param resolution: #85319
  • Fix types of @​next/mdx: #82238
  • Ensure getServerInsertedHTML skips rendering correctly: #85394
  • Fix duplicate .next/types include on Windows: #85400
  • Exclude next-js condition from middleware, proxy, and instrumentation: #85321
  • remove unstable_forceStale prefetch option & restore prefetch={true} functionality: #85411
  • Upgrade React from 2bcbf254-20251020 to 6160773f-20251023: #85277
  • fix(next/image): swap dependencies: #85419
  • Handle Origin: null headers: #85402
  • Generalize Segment Cache fallback implementation: #84652
  • fix: ensure req.query is writable: #81573
  • fix: Proxy not picked up on Windows: #85443
  • [test] Ensure we can toggle the DevTools menu while status indicators are active: #85456
  • Fix crash when suspending in Components using useActionQueue: #85459

Misc Changes

  • docs: create-next-app react-compiler and new prompts: #85213
  • docs: cache components - introduction: #85196
  • docs: use cache feedback: #85169
  • docs: stabilize apis in docs: #85219
  • docs: revalidateTag immediate expiration in Route Handlers: #85223
  • Docs/use cache feedback 2: #85222
  • docs: added use cache: remote docs: #85145
  • docs: proxy runtime defaults to nodejs: #85204
  • chore: cache components feedback: #85241
  • docs: add a note that cache components is opt-in near the top: #85245
  • Docs/v16 feedback: #85259
  • Update command to install babel-plugin-react-compiler as a devDependency: #85235
  • docs: typegen next-env.d.ts feedback: #85273
  • docs: link to MCP guide from upgrade: #85308
  • docs: regexp removed from middleware config: #85343
  • docs: simplify MCP guide to focus on next-devtools-mcp: #85353
  • docs: fix proxy matcher overflow: #85337
  • docs: point out diff in serialization types for arguments and return values: #85338
  • [test] Update snapshots: #85407
  • docs: Fix typo in SEO section of loading.mdx: #85301
  • Fix typo in Fast Refresh documentation: #85352
  • Fix grammatical errors in updating data documentation: #85067
  • [test] Skip devlow benchmarks on PRs: #85408
  • [test] Unflake typed-env suite: #85410
  • Update rust toolchain to 2025-10-27: #85409
  • [test] Speed up prefetching suite: #85417
  • docs: remove inaccuracies from use cache: private: #85425
  • [test] Exclude Next.js internal stack frames from cache-component-error CLI output assertions: #85421
  • [test] Exclude likely Next.js internal Components from component stacks in Redbox assertions: #85420
  • Turbopack: correctly trace files with npm: #85323

... (truncated)

Commits

Updates apexcharts from 4.6.0 to 5.3.5

Release notes

Sourced from apexcharts's releases.

💎 Version 5.3.3

What's Changed

New Contributors

Full Changelog: apexcharts/apexcharts.js@v5.3.0...v5.3.3

💎 Version 5.3.0

What's changed

  • Data Parsing capabilites. ApexCharts now supports direct parsing and mapping of raw data objects, eliminating the need for manual data transformation. Complete documentation for this feature - https://apexcharts.com/docs/parsing-data/
  • Pie/Donut/RadialBar series formats These chart types now support XY series formats making it consistent with the rest of the chart types. Read the documentation for this change - https://apexcharts.com/docs/series/

💎 Version 4.7.0

What's Changed

Cleaned up misplaced resolve() call in updateOptions()

Commits

Updates date-fns from 3.6.0 to 4.1.0

Release notes

Sourced from date-fns's releases.

v4.1.0

This release adds time zone support to format functions (that I somehow missed when working on the feature) and fixes a few bugs.

Make sure also upgrade TZDate to v1.0.2 as it includes a bunch of critical bug fixes.

Fixed

  • Fixed internal constructFrom throwing an exception on null arguments. While null isn't allowed, the functions should rather return Invalid Date or NaN in such cases. See #3885.

Added

  • Added missing time zone support to format, formatISO, formatISO9075, formatRelative and formatRFC3339. See #3886.

v4.0.0

I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.

Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.

Read more about the release in the announcement blog post.

- Sasha @​kossnocorp

Added

  • Added time zones support via @date-fns/tz's TZDate class and tz helper function. See its README for the details about the API.

  • All relevant functions now accept the context in option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:

    import { addDays, startOfDay } from "date-fns";
    import { tz } from "@date-fns/tz";
    startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
    //=> "2024-09-16T00:00:00.000+08:00"

    In the example, addDays will get the current date and time in Singapore and add 5 days to it. startOfDay will inherit the date type and return the start of the day in Singapore.

Changed

  • The function arguments, as well as Interval's start and end, now can be of different types, allowing you to mix UTCDate, TZDate, Date, and other extensions, as well as primitives (strings and numbers).

    The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context in option or the first encountered argument object type. The Interval's start and end will be considered separately, starting from start.

    In the given example, the result will be in the TZDate as the first argument is a number, and the start takes precedence over the end.

    clamp(Date.now(), {
      start: new TZDate(start, "Asia/Singapore"),
      end: new UTCDate(),

... (truncated)

Changelog

Sourced from date-fns's changelog.

v4.1.0 - 2024-09-17

This release adds time zone support to format functions (that I somehow missed when working on the feature) and fixes a few bugs.

Make sure also upgrade TZDate to v1.0.2 as it includes a bunch of critical bug fixes.

Fixed

  • Fixed internal constructFrom throwing an exception on null arguments. While null isn't allowed, the functions should rather return Invalid Date or NaN in such cases. See #3885.

Added

  • Added missing time zone support to format, formatISO, formatISO9075, formatRelative and formatRFC3339. See #3886.

v4.0.0 - 2024-09-16

I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.

Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.

Read more about the release in the announcement blog post.

- Sasha @​kossnocorp

Added

  • Added time zones support via @date-fns/tz's TZDate class and tz helper function. See its README for the details about the API.

  • All relevant functions now accept the context in option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:

    import { addDays, startOfDay } from "date-fns";
    import { tz } from "@date-fns/tz";
    startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
    //=> "2024-09-16T00:00:00.000+08:00"

    In the example, addDays will get the current date and time in Singapore and add 5 days to it. startOfDay will inherit the date type and return the start of the day in Singapore.

Changed

  • The function arguments, as well as Interval's start and end, now can be of different types, allowing you to mix UTCDate, TZDate, Date, and other extensions, as well as primitives (strings and numbers).

    The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context in option or the first encountered argument object type. The Interval's start and end will be considered separately, starting from start.

    In the given example, the result will be in the TZDate as the first argument is a number, and the start takes precedence over the end.

    clamp(Date.now(), {

... (truncated)

Commits
  • 313b902 Fix v4.1.0 change log entry
  • 26cd336 Promote to v4.1.0
  • 97b53b9 Cover time zone edge cases
  • 59b7563 Add missing time zone support to format, formatISO, formatISO9075, formatRela...
  • 0121164 Prevent constructFrom from throwing an error on null
  • bd87ef5 Update @​date-fns/docs
  • 99b4e67 Prepare v4.0
  • 8df1706 Rewrite the time zones doc
  • e351977 Promote to v4.0.0-beta.1
  • 8523656 Fix scripts/test/types.sh
  • Additional commits viewable in compare view

Updates framer-motion from 11.18.2 to 12.23.24

Changelog

Sourced from framer-motion's changelog.

[12.23.24] 2025-10-10

Fixed

  • Ensure that when a component remounts, it continues to fire animations even when initial={false}.

[12.23.23] 2025-10-10

Added

  • Exporting PresenceChild and PopChild type for internal use.

[12.23.22] 2025-09-25

Added

  • Exporting HTMLElements and useComposedRefs type for internal use.

[12.23.21] 2025-09-24

Fixed

  • Fixing main-thread scroll with animations that contain delay.

[12.23.20] 2025-09-24

Fixed

  • Suppress non-animatable value warning for instant animations.

[12.23.19] 2025-09-23

Fixed

  • Remove support for changing ref prop.

[12.23.18] 2025-09-19

Fixed

  • <motion /> components now support changing ref prop.

[12.23.17] 2025-09-19

Fixed

  • Ensure animate() onComplete only fires once, when all values are complete.

[12.23.16] 2025-09-19

... (truncated)

Commits

Updates isomorphic-dompurify from 2.24.0 to 2.30.1

Release notes

Sourced from isomorphic-dompurify's releases.

2.29.0: Updated dompurify

Changelog

  • Updated dompurify.

See the complete changelog for more details.

Release

2.29.0

2.28.0: Updated dompurify

Changelog

  • Updated dompurify.

See the complete changelog for more details.

Release

2.28.0

2.27.0: Updated jsdom dependency and dropped support for Node < 20

Changelog

  • Updated jsdom which dropped support for Node < 20.
  • Updated dev deps.

See the complete changelog for more details.

Release

2.27.0

2.26.0: Fixed package import in different environments

Changelog

See the complete changelog for more details.

Release

2.26.0

Updated dependencies

Changelog

  • Updated dompurify and other dependencies.

... (truncated)

Commits
  • af27478 chore: Incremented package version.
  • c8c7d78 fix: Updated engines field in the package.json to match the minimal supported...
  • 8d38096 chore: Incremented project version.
  • 24ff3a5 Updated deps.
  • 2809a5a Merge pull request #358 from kkomelin/dependabot/npm_and_yarn/jsdom-27.0.1
  • c427353 chore(deps): bump jsdom from 27.0.0 to 27.0.1
  • e559218 Updated dompurify. Improved test command. Incremented project version.
  • 4532ca7 Merge pull request #357 from kkomelin/dependabot/npm_and_yarn/dompurify-3.3.0
  • 059b386 chore(deps): bump dompurify from 3.2.7 to 3.3.0
  • 2a237c0 chore: Incremented project version.
  • Additional commits viewable in compare view

Updates next from 14.2.28 to 16.0.1

Release notes

Sourced from next's releases.

v16.0.1

Core Changes

  • fix(static-paths): add depth tracking to parallel route param resolution: #85319
  • Fix types of @​next/mdx: #82238
  • Ensure getServerInsertedHTML skips rendering correctly: #85394
  • Fix duplicate .next/types include on Windows: #85400
  • Exclude next-js condition from middleware, proxy, and instrumentation: #85321
  • remove unstable_forceStale prefetch option & restore prefetch={true} functionality: #85411
  • Upgrade React from 2bcbf254-20251020 to 6160773f-20251023: #85277
  • fix(next/image): swap dependencies: #85419
  • Handle Origin: null headers: #85402
  • Generalize Segment Cache fallback implementation: #84652
  • fix: ensure req.query is writable: #81573
  • fix: Proxy not picked up on Windows: #85443
  • [test] Ensure we can toggle the DevTools menu while status indicators are active: #85456
  • Fix crash when suspending in Components using useActionQueue: #85459

Misc Changes

  • docs: create-next-app react-compiler and new prompts: #85213
  • docs: cache components - introduction: #85196
  • docs: use cache feedback: #85169
  • docs: stabilize apis in docs: #85219
  • docs: revalidateTag immediate expiration in Route Handlers: #85223
  • Docs/use cache feedback 2: #85222
  • docs: added use cache: remote docs: #85145
  • docs: proxy runtime defaults to nodejs: #85204
  • chore: cache components feedback: #85241
  • docs: add a note that cache components is opt-in near the top: #85245
  • Docs/v16 feedback: #85259
  • Update command to install babel-plugin-react-compiler as a devDependency: #85235
  • docs: typegen next-env.d.ts feedback: #85273
  • docs: link to MCP guide from upgrade: #85308
  • docs: regexp removed from middleware config: #85343
  • docs: simplify MCP guide to focus on next-devtools-mcp: #85353
  • docs: fix proxy matcher overflow: #85337
  • docs: point out diff in serialization types for arguments and return values: #85338
  • [test] Update snapshots: #85407
  • docs: Fix typo in SEO section of loading.mdx: #85301
  • Fix typo in Fast Refresh documentation: #85352
  • Fix grammatical errors in updating data documentation: #85067
  • [test] Skip devlow benchmarks on PRs: #85408
  • [test] Unflake typed-env suite: #85410
  • Update rust toolchain to 2025-10-27: #85409
  • [test] Speed up prefetching suite: #85417
  • docs: remove inaccuracies from use cache: private: #85425
  • [test] Exclude Next.js internal stack frames from cache-component-error CLI output assertions: #85421
  • [test] Exclude likely Next.js internal Components from component stacks in Redbox assertions: #85420
  • Turbopack: correctly trace files with npm: #85323

... (truncated)

Commits
  • e08402b v16.0.1
  • 51d9631 Upgrade React from 6160773f-20251023 to b4455a6e-20251027 (#85464)
  • 163fc17 v16.0.1-canary.6
  • a986e17 Fix crash when suspending in Components using useActionQueue (#85459)
  • 4067214 Turbopack: correctly trace files with npm (#85323)
  • 976a222 [test] Ensure we can toggle the DevTools menu while status indicators are act...
  • b95dbe6 fix: Proxy not picked up on Windows (#85443)
  • b0837e0 [test] Exclude likely Next.js internal Components from component stacks in Re...
  • 456d8e7 fix: ensure req.query is writable (#81573)
  • 0b6fe15 [test] Exclude Next.js internal stack frames from cache-component-error CLI o...
  • Additional commits viewable in compare view

Updates react from 18.3.1 to 19.2.0

Release notes

Sourced from react's releases.

19.2.0 (Oct 1, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.

Notable changes

  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId

All Changes

React

React DOM

... (truncated)

Changelog

Sourced from react's changelog.

19.2.0 (October 1st, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • Description has been truncated

Bumps the dependencies group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@chakra-ui/react](https://github.com/chakra-ui/chakra-ui/tree/HEAD/packages/react) | `2.10.7` | `3.28.0` |
| [@emotion/styled](https://github.com/emotion-js/emotion) | `11.14.0` | `11.14.1` |
| [@mdx-js/loader](https://github.com/mdx-js/mdx/tree/HEAD/packages/loader) | `3.1.0` | `3.1.1` |
| [@mdx-js/react](https://github.com/mdx-js/mdx/tree/HEAD/packages/react) | `3.1.0` | `3.1.1` |
| [@next/mdx](https://github.com/vercel/next.js/tree/HEAD/packages/next-mdx) | `14.2.28` | `16.0.1` |
| [apexcharts](https://github.com/apexcharts/apexcharts.js) | `4.6.0` | `5.3.5` |
| [date-fns](https://github.com/date-fns/date-fns) | `3.6.0` | `4.1.0` |
| [framer-motion](https://github.com/motiondivision/motion) | `11.18.2` | `12.23.24` |
| [isomorphic-dompurify](https://github.com/kkomelin/isomorphic-dompurify) | `2.24.0` | `2.30.1` |
| [next](https://github.com/vercel/next.js) | `14.2.28` | `16.0.1` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.0` |
| [react-apexcharts](https://github.com/apexcharts/react-apexcharts) | `1.7.0` | `1.8.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.0` |
| [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter) | `15.6.1` | `16.1.0` |
| [swr](https://github.com/vercel/swr) | `2.3.3` | `2.3.6` |



Updates `@chakra-ui/react` from 2.10.7 to 3.28.0
- [Release notes](https://github.com/chakra-ui/chakra-ui/releases)
- [Changelog](https://github.com/chakra-ui/chakra-ui/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/chakra-ui/commits/@chakra-ui/[email protected]/packages/react)

Updates `@emotion/styled` from 11.14.0 to 11.14.1
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

Updates `@mdx-js/loader` from 3.1.0 to 3.1.1
- [Release notes](https://github.com/mdx-js/mdx/releases)
- [Changelog](https://github.com/mdx-js/mdx/blob/main/changelog.md)
- [Commits](https://github.com/mdx-js/mdx/commits/3.1.1/packages/loader)

Updates `@mdx-js/react` from 3.1.0 to 3.1.1
- [Release notes](https://github.com/mdx-js/mdx/releases)
- [Changelog](https://github.com/mdx-js/mdx/blob/main/changelog.md)
- [Commits](https://github.com/mdx-js/mdx/commits/3.1.1/packages/react)

Updates `@next/mdx` from 14.2.28 to 16.0.1
- [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/v16.0.1/packages/next-mdx)

Updates `apexcharts` from 4.6.0 to 5.3.5
- [Release notes](https://github.com/apexcharts/apexcharts.js/releases)
- [Commits](https://github.com/apexcharts/apexcharts.js/commits)

Updates `date-fns` from 3.6.0 to 4.1.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md)
- [Commits](date-fns/date-fns@v3.6.0...v4.1.0)

Updates `framer-motion` from 11.18.2 to 12.23.24
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v11.18.2...v12.23.24)

Updates `isomorphic-dompurify` from 2.24.0 to 2.30.1
- [Release notes](https://github.com/kkomelin/isomorphic-dompurify/releases)
- [Commits](kkomelin/isomorphic-dompurify@2.24.0...2.30.1)

Updates `next` from 14.2.28 to 16.0.1
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.28...v16.0.1)

Updates `react` from 18.3.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react)

Updates `react-apexcharts` from 1.7.0 to 1.8.0
- [Commits](https://github.com/apexcharts/react-apexcharts/commits)

Updates `react-dom` from 18.3.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react-dom)

Updates `react-syntax-highlighter` from 15.6.1 to 16.1.0
- [Release notes](https://github.com/react-syntax-highlighter/react-syntax-highlighter/releases)
- [Changelog](https://github.com/react-syntax-highlighter/react-syntax-highlighter/blob/master/CHANGELOG.MD)
- [Commits](react-syntax-highlighter/react-syntax-highlighter@v15.6.1...v16.1.0)

Updates `swr` from 2.3.3 to 2.3.6
- [Release notes](https://github.com/vercel/swr/releases)
- [Commits](vercel/swr@v2.3.3...v2.3.6)

---
updated-dependencies:
- dependency-name: "@chakra-ui/react"
  dependency-version: 3.28.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@emotion/styled"
  dependency-version: 11.14.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mdx-js/loader"
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mdx-js/react"
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@next/mdx"
  dependency-version: 16.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: apexcharts
  dependency-version: 5.3.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: date-fns
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: framer-motion
  dependency-version: 12.23.24
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: isomorphic-dompurify
  dependency-version: 2.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: next
  dependency-version: 16.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react-apexcharts
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react-syntax-highlighter
  dependency-version: 16.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: swr
  dependency-version: 2.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 Nov 1, 2025
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