v7.0.1
- Better screen reader experience for users of Resource Timeline view
-
printMaxRowssetting to control print-rendering cutoff for Resource Timeline view - Salesforce LWC component (beta), zip files on each release (#6196)
v4.12.31
- test(context): assert case-insensitive header names in response helpers by @yusukebe in https://github.com/honojs/hono/pull/5116
- chore(benchmark): add app.fetch() overhead benchmark by @yusukebe in https://github.com/honojs/hono/pull/5117
- refactor(aws-lambada): remove FIXME in
@ts-expect-errorby @yusukebe in https://github.com/honojs/hono/pull/5130 - fix(utils/body): reuse cached formData in
parseBody()by @yusukebe in https://github.com/honojs/hono/pull/5131 - fix(request): fix multipart boundary mismatch in
cloneRawRequestby @yusukebe in https://github.com/honojs/hono/pull/5133 - fix(sse): emit retry feild when retry is
0by @yusukebe in https://github.com/honojs/hono/pull/5135 - test(validator): fix misspelled identifier in transform type test by @yusukebe in https://github.com/honojs/hono/pull/5136
Full Changelog: https://github.com/honojs/hono/compare/v4.12.30...v4.12.31
Release 2026-07-18 19:30
Release 2026-07-18 19:30
- No changelog entries
- @tanstack/solid-router@2.0.0-beta.25
- @tanstack/solid-router-devtools@2.0.0-beta.20
- @tanstack/solid-router-ssr-query@2.0.0-beta.26
- @tanstack/solid-start@2.0.0-beta.26
- @tanstack/solid-start-client@2.0.0-beta.25
- @tanstack/solid-start-server@2.0.0-beta.25
💎 Version 6.1.0
A focused follow-up to 6.0. The Measure ruler graduates into a first-class toolbar tool you can pre-select, toolbar tools can now be toggled off, and two interaction bugs are fixed. Everything is backward compatible: existing configs render unchanged.
The measure / delta ruler (shipped in 6.0) is now a built-in toolbar tool, so it can be armed with a click instead of holding the measure key. The button appears automatically whenever the ruler is enabled, and can be pre-selected so the plot loads ready to measure.
import ApexCharts from 'apexcharts'
import 'apexcharts/features/measure'
const options = {
chart: {
measure: { enabled: true },
toolbar: {
autoSelected: 'measure', // pre-select the ruler on load
tools: { measure: true }, // default; set false to keep it key-only
},
},
}
- The button shows only when
chart.measure.enabledis true.tools.measureacceptstrue/falseor a custom SVG string, like the other tools. toolbar.autoSelectednow also accepts'measure', so the plot loads armed and ready to drag with no key held and no click. Themkey still works.- Selecting the ruler is mutually exclusive with zoom / pan / selection. The icon matches the rest of the toolbar and follows the light / dark themes.
Clicking an already-selected zoom, pan, selection, or measure icon now deselects it, leaving the chart with no active tool. Previously those buttons were one-way (clicking the active tool did nothing). This makes the ruler's on / off state obvious and lets you drop back to a plain, gesture-free chart.
toolbar.tools.measure, the 'measure' value for toolbar.autoSelected, and the toolbar.measure locale string are all typed.