Skip to content

⬆️ Upgrade all non-major dependencies - #5058

Open
renovate[bot] wants to merge 1 commit into
developfrom
renovate/all-non-major-dependencies
Open

⬆️ Upgrade all non-major dependencies#5058
renovate[bot] wants to merge 1 commit into
developfrom
renovate/all-non-major-dependencies

Conversation

@renovate

@renovate renovate Bot commented Sep 7, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@lucide/vue (source) 1.34.01.42.0 age confidence
apexcharts (source) 7.0.07.1.0 age confidence
autoprefixer 10.5.410.5.5 age confidence
axios (source) 1.19.01.20.0 age confidence
barryvdh/laravel-debugbar 4.4.24.4.3 age confidence
daisyui (source) 5.7.225.7.28 age confidence
dompurify 3.4.143.4.15 age confidence
eslint (source) 10.9.110.10.0 age confidence
eslint-plugin-vue (source) 10.10.010.11.0 age confidence
globals 17.11.017.12.0 age confidence
intervention/image (source) 4.3.14.3.2 age confidence
laravel/framework (source) 13.27.013.30.1 age confidence
laravel/passport 13.7.613.8.0 age confidence
laravel/pint (source) 1.30.51.31.0 age confidence
laravel/socialite (source) 5.30.05.31.0 age confidence
phpunit/phpunit (source) 13.3.113.3.2 age confidence
sass 1.103.11.104.0 age confidence
typescript-eslint (source) 8.68.08.69.0 age confidence
vue (source) 3.5.413.5.42 age confidence
vue-router (source) 5.2.05.3.1 age confidence

Release Notes

lucide-icons/lucide (@​lucide/vue)

v1.42.0: Version 1.42.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.41.0...1.42.0

v1.41.0: Version 1.41.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.40.0...1.41.0

v1.40.0: Version 1.40.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.39.0...1.40.0

v1.39.0: Version 1.39.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@1.38.0...1.39.0

v1.38.0: Version 1.38.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@1.36.0...1.38.0

v1.37.0: Version 1.37.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.35.0...1.37.0

v1.36.0: Version 1.36.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.35.0...1.36.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.35.0...1.36.0

v1.35.0: Version 1.35.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.34.0...1.35.0

apexcharts/apexcharts.js (apexcharts)

v7.1.0: 💎 Version 7.1.0

Compare Source

A minor release built around four new chart types: streamgraph, waterfall, dumbbell and raincloud. Each is a thin layer over a renderer the library already trusts (rangeArea, rangeBar, violin), so they arrive with tooltips, legends, animations, exports and zooming already working, and they cost the default bundle little: streamgraph, waterfall and dumbbell together add about 12 KB gzipped. Raincloud is a Premium add-on and adds nothing unless you load it.

Also new: chart.print lays the chart out for the printed sheet. And six fixes, several of them years old.

gzip
7.0.0 default bundle 252,005 B
7.1.0 default bundle 264,326 B

No breaking changes. Upgrading is npm install apexcharts@7.1.0.

✨ New

Streamgraph

chart.type: 'streamgraph' stacks the series as flowing bands around a baseline chosen to keep the whole picture readable: the baseline sits where the bands wiggle least, curves are monotoneCubic by default so a band never overshoots its data, and each band's name is drawn inside it, sized to the room that band actually has. Hovering a band fades the others; the legend and tooltip work as on any axis chart.

new ApexCharts(el, {
  chart: { type: 'streamgraph' },
  series: [
    { name: 'Drama',  data: [{ x: '2024-01-01', y: 32 }, /* ... */] },
    { name: 'Comedy', data: [/* ... */] },
  ],
}).render()

In the default bundle. For the lean-core channel it is import 'apexcharts/streamgraph' or dist/features/streamgraph.js.

Waterfall

chart.type: 'waterfall' accumulates the running total for you: the series holds the deltas, and a point flagged isSubtotal or isTotal draws the running total from zero at that position. Connectors bridge each bar to the next, and rising, falling and total bars take their own colors. Requested in #​847.

series: [{
  name: 'Operating income',
  data: [
    { x: 'Net revenue',        y:  8786000 },
    { x: 'Cost of sales',      y: -2786000 },
    { x: 'Gross profit',       isSubtotal: true },
    { x: 'Operating expenses', y: -1786000 },
    { x: 'Operating income',   isTotal: true },
  ],
}]

In the default bundle; apexcharts/waterfall / dist/features/waterfall.js for lean-core.

Dumbbell

chart.type: 'dumbbell' compares two or more measures per category: each series is one measure, and the chart joins them with a connector per category, without asking you to zip the values into [low, high] pairs by hand. Works horizontal and as columns.

series: [
  { name: '2020', data: [{ x: 'Backend', y: 92 }, /* ... */] },
  { name: '2025', data: [{ x: 'Backend', y: 118 }, /* ... */] },
]

In the default bundle; apexcharts/dumbbell / dist/features/dumbbell.js for lean-core.

Raincloud

chart.type: 'raincloud' shows a distribution three ways at once: the half-violin is the shape, the box is the summary, and the rain underneath is the observations themselves. You hand it the raw values and it does the rest.

series: [{
  name: 'Weight gain',
  data: [{ x: 'Control', points: [/* raw observations */] }],
}]

Raincloud is a Premium feature and an explicit import from either channel:

import 'apexcharts/raincloud'
<script src=".../dist/features/raincloud.js"></script>
Print layout

The paper box cannot be measured from JavaScript: clientWidth and matchMedia both report the screen during beforeprint. So chart.print re-lays the chart out to a known width for the sheet instead of letting the browser scale or cut whatever was on screen, and restores it after. On by default with a sensible width; chart: { print: { width: 800 } } to tune it, print: false to keep the old behaviour. Fixes #​3352.

🐛 Fixes

A container resize arriving mid-animation was lost for good

The ResizeObserver fires once per resize, and the handler dropped that one callback whenever an animation was still running, so a chart in a collapsing sidebar simply kept its old size. The resize is now deferred and rechecked, and each container resize draws once rather than once per observer callback. Fixes #​1584.

autoScaleYaxis scaling to points nobody can see

Zooming with autoScaleYaxis let one point just outside the window size the whole axis, and a series with nothing in the window at all still contributed. Stacked charts now also scale to the stacked totals inside the window rather than to individual series. Fixes #​1260.

Bar width came from the smallest gap inside one series

A single series with one tight pair of x values shrank every bar on the chart. A bar's slot now comes from the axis, the union of gaps across all series. Fixes #​4885.

Pie and radial charts stuck to the top of tall containers

The center came from min(width, height), so a tall, narrow container pinned the circle to the top with all the leftover space below it. The circle now centres in the height it actually has. Fixes #​4875.

Date x values on a non-datetime axis

A Date object as x worked only when the axis was datetime; anywhere else it stringified into garbage, and an invalid Date slipped through unnoticed. Both handled in #​5279, thanks @​aron-intframe.

Tooltip index off past leading nulls

A series starting with nulls resolved the hovered index against its drawn points rather than the data, so the tooltip read the wrong point.

🔧 Internal

  • CI now runs the test suite on every push to main, not only on pull requests. The publish gate is no longer the first time a commit meets the runner.

Full Changelog: apexcharts/apexcharts.js@v7.0.0...v7.1.0

postcss/autoprefixer (autoprefixer)

v10.5.5

Compare Source

axios/axios (axios)

v1.20.0

Compare Source

v1.20.0 — August 19, 2026

This release hardens runtime option handling, adds RFC 9110 status-code aliases, fixes Node.js and XHR reliability issues, and refreshes project tooling and documentation.

⚠️ Breaking Changes & Deprecations

  • HTTP Status Naming: Added ContentTooLarge (413) and UnprocessableContent (422), while retaining PayloadTooLarge and UnprocessableEntity as backward-compatible deprecated aliases. (#​11082)

🔒 Security Fixes

  • Runtime Option Handling: Hardened behavioral configuration reads against shared and foreign prototype pollution and normalized unsafe interceptor replacement objects. This also clarifies Fetch redirect and custom implementation behavior, HTTP/2 DNS and proxy handling, CIDR-based NO_PROXY matching, and malformed data URI rejection; see the PR for documented compatibility effects. (#​11141)

🐛 Bug Fixes

  • Interceptor Lifecycle: Prevented unbounded handler-array growth by trimming trailing ejected interceptors without changing iteration semantics, and kept interceptor operations safe when the public handlers field is nullish. (#​11087, #​11118)
  • Request Error Preservation: Prevented custom Error.prepareStackTrace implementations that return non-string values from replacing the original request failure with an unrelated TypeError. (#​11109)
  • XHR Reliability: Navigation-canceled requests now reject with ECONNABORTED instead of resolving with status 0, while successful downloads flush their final progress callback during the live loadend dispatch. (#​11094, #​11121)
  • Node.js Socket Memory: Removed request-context retention from per-socket error listeners, preventing completed response data from being pinned for the lifetime of pooled keep-alive sockets. (#​11091)
  • Core Methods and HTTP Errors: Prevented structural method-header buckets from leaking into outgoing headers, standardized invalid DNS lookup and httpVersion failures as AxiosError.ERR_BAD_OPTION_VALUE, and corrected the timeoutErrorMessage merge strategy. (#​11096)

🔧 Maintenance & Chores

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

Full Changelog (axios/axios@v1.19.0...v1.20.0)

fruitcake/laravel-debugbar (barryvdh/laravel-debugbar)

v4.4.3

Compare Source

What's Changed

Full Changelog: fruitcake/laravel-debugbar@v4.4.2...v4.4.3

saadeghi/daisyui (daisyui)

v5.7.28

Compare Source

Bug Fixes

v5.7.27

Compare Source

Bug Fixes

v5.7.26

Compare Source

Bug Fixes

v5.7.25

Compare Source

Bug Fixes
  • checkbox - add style for aria-checked="mixed" like :indeterminate (#​4713) (5e5b8b4)

v5.7.24

Compare Source

Bug Fixes

v5.7.23

Compare Source

Bug Fixes
  • menu-paged summary hides children (badge, icon, etc) when details is open (#​4710) (4929505)
cure53/DOMPurify (dompurify)

v3.4.15: DOMPurify 3.4.15

Compare Source

  • Added better clobbering hardening when XML content is involved, thanks @​gnyselcuk
  • Added several smaller hardening and edge-case improvements, thanks @​leechristensen
  • Bumped several dependencies where possible
eslint/eslint (eslint)

v10.10.0

Compare Source

vuejs/eslint-plugin-vue (eslint-plugin-vue)

v10.11.0

Compare Source

Minor Changes
Patch Changes
  • Updated resources (HTML elements) (#​3132)

  • Specified explicit items policies for array rule option schemas (#​3112)

  • Fixed vue/use-v-on-exact to avoid reporting @keydown.stop when paired with an exact key-specific listener (#​3082)

  • Updated resources (HTML elements) (#​3133)

sindresorhus/globals (globals)

v17.12.0

Compare Source


Intervention/image (intervention/image)

v4.3.2

Compare Source

What's Changed

Full Changelog: Intervention/image@4.3.1...4.3.2

laravel/framework (laravel/framework)

v13.30.1

Compare Source

v13.30.0

Compare Source

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every 2 weeks on Monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the 📌 dependencies Pull requests that update a dependency file label Sep 7, 2026
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch 3 times, most recently from 40856fe to 6f3677e Compare September 7, 2026 17:51
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 6f3677e to c6035a5 Compare September 7, 2026 17:54
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