Skip to content

fix(deps): update all non-major dependencies#59

Closed
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Closed

fix(deps): update all non-major dependencies#59
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 18, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change OpenSSF Age Confidence
marimo (source) minor ==0.14.16==0.23.1 OpenSSF Scorecard age confidence
marimo project.dependencies minor ==0.14.16==0.23.1 OpenSSF Scorecard age confidence
prefix-dev/setup-pixi action patch v0.9.4v0.9.5 OpenSSF Scorecard age confidence
typos (changelog) tool.hatch.envs.default minor ~=1.43.5~=1.45.1 OpenSSF Scorecard age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

marimo-team/marimo (marimo)

v0.23.1

Compare Source

What's Changed

This release includes quality of life improvements to marimo slides, bug fixes to marimo islands that revive our quarto extension, a new lint rule, and minor security improvements.

⭐ Highlights
Slides minimap

Slide mode now has a minimap: a scrollable panel showing your cells at reduced scale, with click-to-navigate and drag-to-reorder support. It's performance-aware — cells only render in the minimap when they're in view.

Screen.Recording.2026-04-08.at.6.46.33.PM.mov
Islands revived

We've fixed many bugs with [marimo islands], a way to embed marimo outputs and/or Python code in other HTML. These fixes also make our quarto-marimo. (#​9071) extension compatible with this version of marimo as well.

Security

This release includes minor security improvements, including input sanitization, path traversal prevention, open redirect blocking, and auth endpoint hardening.

  • Sanitize plugin output slots (marimo-mpl-interactive, marimo-panel) to prevent script injection (#​9133)
  • Restrict head_html injection to run mode only (#​9137)
  • Prevent directory traversal via symlinks in asset serving (#​9134)
  • Sanitize user-supplied custom.css (#​9131)
  • Block open redirects via protocol-relative URLs (e.g. //evil.com) (#​9112)
  • Restrict health endpoint exposure and add path validation for document writes (#​9115)

We've also updated our security documentation with a standard operating procedure for future disclosures (#​9114).

Thank You. The enthusiasm following our recent CVE disclosure is a testament to what a healthy open-source community looks like. A special thank you to @​GCXWLP, @​Jvr2022, @​offset, @​l3tchupkt, @​Fushuling, @​RacerZ-fighting, and @​q1uf3ng for their engagement and reports during this sprint. It takes a community to keep FOSS secure. We're lucky to have this one!

All changes

Full Changelog: marimo-team/marimo@0.23.0...0.23.1

v0.23.0

Compare Source

Security Announcement

This release contains important security updates for CVE-2026-39987. See Terminal WebSocket Authentication Bypass

The /terminal/ws endpoint is accessible without authentication on default marimo installations. This allows for unauthenticated users to remote execute code via this endpoint.

Who is affected
  • If you have deployed marimo as an editable notebook (not an application) to the public internet and only using marimo’s built-in authentication.
  • If you expose marimo to your shared network using --host 0.0.0.0 and while in edit mode (not an application).
Likely not affected

You are not affected if any of these are true.

  • If you have your own authentication proxy on top of editable marimo notebooks.
  • If you are not exposing marimo to the public internet
  • If you are running marimo as an application (in run mode)
  • WebAssembly (WASM) notebooks are not affected
  • molab is not affected

Please upgrade to 0.23.0 or later.

What's Changed

Full Changelog: marimo-team/marimo@0.22.5...0.23.0

v0.22.5

Compare Source

What's Changed

This release launches marimo pair — an agent skill that drops AI agents directly inside a running marimo notebook session — along with a cleaner, more responsive data table experience and a slate of reliability fixes.

⭐ Highlights
marimo pair: collaborate with agents inside your notebook

marimo pair is a new agent skill that gives AI agents full control over a running marimo notebook session — accessing live variables, executing cells, installing packages, and building reproducible programs alongside you. This release adds the marimo pair prompt CLI command, a "Pair with an agent" modal in the notebook menu, and a secure --with-token auth flow that keeps credentials out of shell history.

npx skills add marimo-team/marimo-pair

Smarter table headers and responsive column layout

Column headers are now split into a dedicated sort button (cycles asc → desc → clear on click, hidden until hover) and a separate ⋯ menu button for column options. Tables with ≤ 4 columns automatically use natural width with a filler column; larger tables fill the container. Vertical column separators complete the refresh.

✨ Enhancements
  • Surface graph errors on code_mode NotebookCell (#​9057)
  • Add cross-origin authentication token handling for WebSocket URLs (#​9077)
  • Enrich code_mode NotebookCell with runtime status and error (#​9056)
  • LSP root and document URI discovery (#​9019)
  • Made table responsive to no. of columns and improved table header (#​9006)
  • Add concise repr to NotebookCell for better REPL discoverability (#​9036)
  • Add repr, find(), and grep() to _CellsView and improve KeyError messages (#​9034)
  • Add auth token endpoint and --with-token flow for pair programming (#​9003)
  • Fix skill detection for marketplace and plugin installs (#​9021)
  • Propagate kernel-initiated UI value updates to the frontend (#​9014)
  • Decouple skew protection from agent-facing endpoints (#​8993)
  • Add marimo pair prompt CLI command and "Pair with an agent" modal (#​9000)
  • Remove feat flag for storage inspector (#​8987)
  • Migrate @​radix-ui/* packages to unified radix-ui (#​8981)
  • Support anywidget's descriptor API (MimeBundleDescriptor) (#​8972)
  • Inline audio and video in HTML export (#​8931)
  • Adjust styles for table (#​8963)
  • Make data table flush to cell output when it's the only output (#​8954)
  • Improve chart builder tab management UX (#​8957)
  • Persistent top toolbar in data table with search, chart-builder, and other actions (#​8932)
🐛 Bug fixes
  • LSP servers not stopping gracefully on shutdown (#​9084)
  • Skip scratchpad changes in document transaction sync (#​9078)
  • Table hangs when sorting/page-size change triggers cell re-render with style_cell/hover_template (#​9072)
  • Allow custom pickler failure to fall back to default (#​9070)
  • Sanitize traceback HTML to prevent XSS (#​9063)
  • Altair chart fails to render after enabling PNG renderer (#​9049)
  • Use MarimoPlusIcon for "New notebook" action (#​9060)
  • Make _CellsView iterate over NotebookCell objects instead of cell IDs (#​9039)
  • Show which cell defines a variable in multiply-defined error (#​9037)
  • Surface cell errors from _code_mode through scratchpad (#​9030)
  • Gracefully handle delete of unknown cell and read document on reconnect (#​9033)
  • Pass model_id as data attribute to prevent loss on value update (#​9032)
  • Ignore attribute error during websocket closure in certain edge cases (#​9020)
  • Revert "feat: Output Altair SVG charts as base64-encoded images" (#​9017)
  • Resolve duplicate column keys when index name conflicts with column name (#​8999)
  • Do not double encode msgspec values (#​9005)
  • Fix inf rerender tables col sizing (#​8997)
  • Fix double bottom borders for unflushed tables (#​8994)
  • Adjust spacing and border for chart tabs (#​8988)
  • Ignore /lsp/health in wasm (#​8974)
  • Resolve AI SDK URL and headers lazily to handle runtime redirects (#​8973)
  • Fix altair not setting to full-width when width: container (#​8969)
  • Style_cell and hover_template lost when sorting in descending order (#​8915)
  • Account for 0 width arrays (#​8950)
📚 Documentation
  • Add page actions dropdown for AI tools integration (#​9031)
  • Add reactive waterfall selection support (#​9045)
  • Fix duplicate word in OAuth2 example reference (#​9050)
  • Migrate to oxfmt and oxlint (#​8982)
📝 Other changes
  • Add defensive null checks for output channel access (#​7883) (#​9065) (b89c2f7)
  • Re-encode WebSocket proxy query params so spaces use %20 (#​9041) (#​9064) (0579862)
  • [Snyk] Security upgrade path-to-regexp from 8.3.0 to 8.4.0 (#​8983)
  • SVG data URL rendering in layout elements (#​9043)
  • Add option to display error tracebacks inline and in modal (#​8376) (34f87a5)
  • Verbose and attestations (#​9027)
  • Add reactive line selection support (#​8657) (31d1d05)
  • Recover polling file watcher from transient file absence (#​8860) (18617c2)
  • Add reactive bar selection support (#​8787) (0efa6cf)
  • Add cursor agent and auth flow (#​8645) (d735232)
  • Enable single-click selection for reactive Plotly charts (#​8782) (750fb85)
  • Add starrocks catalog support (#​8856) (14e0e13)
  • Resolve GitHub Copilot "Retry Connection" failing with "Agent service not initialized" (#​8925) (#​8976) (7c3cc60)
  • Revert "Update pygments version constraint in pyproject.toml" (#​8979)
  • Cleanup link check (#​8975)
  • Update dependency @​typescript/native-preview to v7.0.0-dev.20260324.1 (#​8958)
  • Update pygments version constraint in pyproject.toml (#​8921)
Contributors

Thanks to all our community and contributors who made this release possible: @​alwaysahustler, @​app/marimo-github-maintenance-bot, @​app/renovate, @​axsseldz, @​daizutabi, @​dmadisetti, @​kirangadhave, @​Light2Dark, @​ManasVardhan, @​manzt, @​mscolnick, @​tschm

And especially to our new contributors:

Full Changelog: marimo-team/marimo@0.22.0...0.22.5

v0.22.4

Compare Source

v0.21.1

Compare Source

v0.21.0

Compare Source

Builtin interactive matplotlib

mo.mpl.interactive() has been rewritten to use marimo's built-in communication channel instead of a separate server and WebSocket proxy. This means interactive matplotlib plots now work with no background threads or separate server process needed.

Download notebooks as ipynb

You can now export your marimo notebook as a Jupyter .ipynb file directly from the editor's download menu. Cells are exported in visual order with their captured outputs included.

🚨 Breaking changes
  • Altair charts no longer stretch to full container width by default (#​8696). Previously, marimo set width: "container" on all Altair charts, which distorted aspect ratios, made charts look different from the Altair docs. Charts now render at Altair's native default size. If you want a chart to fill the container width, set width="container" explicitly in your chart spec.
✨ Enhancements
  • Accept list args in ctx.install_packages (#​8703)
  • Add different auth options for Snowflake in the UI (#​8661)
  • Add read file and download snippets for storage inspector (#​8640)
  • Ruff config discovery for notebook cell formatting (#​8609)
  • Move matplotlib interactive to use marimo comm instead of over WS (#​8612)
  • Refine type inference for cache decorators (#​8629)
  • Improve command palette search with additional keywords (#​8600)
  • Download notebooks as ipynb through UI (#​8582)
  • Standardize file explorer icons, colors, spinner (#​8571)
  • Add banner about GitHub free tier models (#​8575)
  • Wait for buffered stdout/stderr before reading MCP execution results (#​8577)
  • Format CellSelectionStats (proper aggregation, 3 decimal places) (#​8564)
  • Storage inspector fixes and code gen update (#​8566)
  • Add the ability to control the cache (#​8311)
  • Add reactive histogram selection support (#​8489)
🐛 Bug fixes
  • marimo export ipynb to support command-line arguments (#​8709)
  • Tag install location on ModuleNotFound to distinguish installation on server vs kernel (#​8619)
  • Fix copy to clipboard on Safari (#​8587)
  • Debounce clearing of console outputs to prevent flickering (#​8621)
  • Use explicit multiprocessing getcontext("spawn") (#​8705)
  • Fix loguru messages not being printed (#​8697)
  • Convert decimals to float64 for filtering in tables (#​8706)
  • Catch generic exception when export to PDF (#​8704)
  • Use request path to scope code-mode runtime behavior (#​8702)
  • Add global previewed tables state (#​8630)
  • Re-render mutable Html children in vstack/hstack on flush (#​8626)
  • Fix Plotly selections returning points outside the selected range (#​8685)
  • Ignore sql_refs for top level determination (#​8673)
  • Send absolute path to frontend for file_browser (#​8668)
  • Handle rust panic errors when getting config for obstore (#​8658)
  • Don't search winpython in scanner for workspace files (#​8633)
  • Correctly handle IPv6 (#​8650)
  • Relative CSS paths (#​8654)
  • Clamp the height and add overflow for storage inspector error (#​8647)
  • Handle matplotlib boxplot/violinplot dict outputs (#​8540)
  • Preserve TypeIs/TypeGuard narrowing through @app.function, @mo.cache, and @mo.lru_cache (#​8598)
  • Truncate HTML output of run stale cells tool (#​8578)
  • Do not prompt for overwrite when exporting WASM to an empty directory (#​8591)
  • Fix keyboard shortcuts normalization (#​8576)
  • Only display "Jump to page" when >100 pages (#​8563)
  • Prevent NameError in marimo run when passing mo.md() between cells (#​8692)
  • Fix vim macros duplicating inserted characters (#​8470)
  • Forward cell names and configs on external file reload (#​8433)
  • Prevent getnameinfo hang on Windows for link-local IPv6 (3b8b9bd)
  • Initialize cell_ids on notebook creation (#​8310)
  • Remove SVG <title> tooltip from marimo icons (#​8595)
  • Idempotent ipynb round-trip (#​7939)
📚 Documentation
  • Enable storage inspector by default (#​8666)
  • Add database UI - add text to help users (#​8675)
  • Add variable type information to 'get_cell_dependency_graph' (#​8663)
  • Sync Traditional Chinese README with latest updates (#​8638)
  • Link to docs in language server page (#​8614)
  • GitHub molab (#​8604)
  • Iframe allow forms for ui.form (#​8602)
  • Export, publishing, deploying refactor (#​8581)
  • Simplify agents.md, add general approach to PRs (#​8583)
  • Document session files for molab GitHub previews (#​8573)
  • Add section on opencode agent (#​8567)
  • Molab (#​8554)
🔬 Preview features
  • Add internal code mode module for programmatic notebook control (#​8670)
  • Add server registry and SSE execute endpoint (#​8592)
📝 Other changes
  • Update Dockerfile with metadata labels, environment variables, and user permissions (#​8637)
  • Remove GPT 5.4 pro (#​8660)
  • Add newest GPT model, remove GPT 5.2 (#​8586)
  • Remove old AI models, add latest ones (#​8129)
  • Replace hatch env layer with native uv commands (#​8510)
  • Prevent make dev from rewriting api.yaml version on event (#​8334)
  • Fix broken tests on main (#​8653)
  • Fix breaking tests for pandas support (#​8593)
  • More hatch -> uv failures (#​8655)
Contributors

Thanks to all our community and contributors who made this release possible: @​akshayka, @​axsseldz, @​chentoast, @​daizutabi, @​dmadisetti, @​ffmiruz, @​koaning, @​Light2Dark, @​manzt, @​MarcoGorelli, @​mchav, @​mscolnick, @​peter-gy, @​PranavGopinath, @​thliang01, @​tigretigre, @​tsubasakong, @​VishakBaddur

And especially to our new contributors:

Full Changelog: marimo-team/marimo@0.20.4...0.21.0

v0.20.4

Compare Source

v0.20.2

Compare Source

This release improves the experience of imperatively writing output with mo.Threads, and also includes an important bug fix for mo.ui.matplotlib selection.

⭐️ Highlights

Write to a single cell's output with multiple threads

It is now possible for multiple mo.Thread objects to write to a single cell's output area using mo.output.append().

Communicate progress to the user with a thread-safe progress bar

mo.status.progress_bar is now thread-safe, making it possible for multiple mo.Thread objects (started in the same cell) to update a single progress bar. This lets you communicate progress to the user when multiple threads are sharding work. (Example notebook.)

🐛 Bug fixes

  • Fix mo.ui.matplotlib pixel bounds calcuation (#​8419)
  • Make threads share their accumulated output (#​8418)
  • Copy ExecutionContext.output to marimo.Thread (#​8413)

📚 Documentation

  • Fix incorrect data sources panel reference in SQL tutorial (#​8422)
  • Interrupt a progress bar (#​8406)
  • Add mo.ui.matplotlib to API inputs documentation (#​8394)

Contributors

Thanks to all our community and contributors who made this release possible: @​akshayka, @​coastalwhite, @​icholy, @​manzt

And especially to our new contributors:

Full Changelog: marimo-team/marimo@0.20.1...0.20.2

v0.20.1

Compare Source

v0.19.11

Compare Source

What's Changed

New Contributors

Full Changelog: marimo-team/marimo@0.19.10...0.19.11

v0.19.8

Compare Source

This release introduces notebook galleries with OpenGraph previews, along with anywidget improvements, AI enhancements, and many bug fixes.

⭐️ Highlights

Serve a gallery of notebooks

You can now serve multiple marimo notebooks as a gallery using marimo run with folders or multiple files. This is useful for showcasing collections of notebooks, tutorials, or dashboards in a single browsable interface.

# Serve all notebooks in a folder
marimo run my_notebooks/

# Serve multiple folders and files
marimo run tutorials/ examples/ standalone.py

# Run with sandboxed environments per notebook
marimo run my_notebooks/ --sandbox

Rich gallery previews with OpenGraph metadata

Gallery cards can be customized with OpenGraph metadata. Define metadata in your notebook's PEP 723 script block to control how each notebook appears in the gallery:

[tool.marimo.opengraph]
title = "My Analysis"
description = "Exploratory data analysis of Q4 results"
image = "https://example.com/thumbnail.png"

For dynamic metadata, define a generator function that computes OpenGraph fields at runtime.

You can also auto-generate thumbnail images for your notebooks using marimo export thumbnail:

# Generate thumbnails (code-only, no execution)
marimo export thumbnail my_notebooks/

# Generate thumbnails with notebook execution for richer previews
marimo export thumbnail my_notebooks/ --execute --sandbox

Thumbnails are stored in the __marimo__/ directory alongside your notebooks and served automatically in gallery mode.

Attach images to "Generate with AI"

You can now attach images when using "Generate with AI" to provide visual context for code generation. This is useful for sharing mockups, charts, or screenshots that help the AI understand what you're trying to build.

✨ Enhancements

  • Add attachments for 'Generate with AI' & ensure UI consistency (#​7996)
  • Update models.yml for Opus 4.6 (#​8142)
  • Add proxy_path support for ClickHouse Connections (#​8128)
  • Require playwright installation for pdf export (#​8121)
  • Improve design of chat mode selector (#​8114)
  • Set markdown to hide after conversion for consistency (#​8117)
  • Anywidget dynamic imports in static notebooks (#​8110)
  • Rich notebook previews through OpenGraph metadata (#​8097)
  • Graduate performant table charts and chat modes from experimental (#​8107)
  • Sandboxed gallery (#​8076)
  • Replace logo with back button for notebooks in gallery mode (#​8099)
  • Register Office document mimetypes for cross-platform compatibility (#​8068)
  • Support serving a gallery of notebooks (#​8056)

🐛 Bug fixes

  • Fix spurious "truth value of UIElement" warning for anywidgets (#​8148)
  • Decouple anywidget model and view (#​8124)
  • Support pandas 3.0 str col (#​8146)
  • Follow ruff rules for formatting trailing space after imports/ functions (#​8086)
  • Search functionality for DataFrames with index columns (#​8136)
  • Support multiple vfile registries with shared inmemorystorage (#​8145)
  • Don't error when writing UI elements values that already exist (#​8147)
  • Avoid unnecessary throwing error in delete cell (#​8134)
  • Remove some deprecation warnings (#​8113)
  • Handle bang statement edgecases in ipynb convert (#​8126)
  • Top-level defs showing up in wasm (#​8138)
  • Use cell name to identify setup cells when id is null (#​8137)
  • Hash on unspecified keyword values (#​8127)
  • Handle marimo tex components when exporting to PDF (#​8062)
  • Sandbox package listing (#​8104)
  • Preserve whitespaces & new lines when inferring parts during rendering outputs (#​8116)
  • Don't allow '.' when creating custom provider names (#​8115)
  • Fix schema drift for chat-ui (ai-sdk 6) (#​8105)
  • Handle objects with __getattr__ returning non-callable values in serialization (#​8109)
  • Gracefully handle timeouts/input from uv when adding script metadata (#​8111)
  • Add missing word to UI tutorial (#​8087)
  • Handle sqlglot OptimizeError for DuckDB unnest with JSON access (#​8083)
  • Enable weave tracing on chat widget (#​8078)
  • Table data not refreshing after mo.output.replace() when first-page data is unchanged (#​8066)

📚 Documentation

  • Clarify markdown section in Jupyter users tutorial (#​8092)

📝 Other changes

  • Update all biome dependencies to v2.3.13 (#​8044)
  • Upgrade pytest plugins, upperbound sqlglot (#​8077)
  • Update WebSocket URL generation for agents to work on remote deployments (#​8065)
  • Update all npm non-major dependencies (#​8085)
  • Add missing type field to control requests (#​8071)

Contributors

Thanks to all our community and contributors who made this release possible: @​dmadisetti, @​gvwilson, @​koaning, @​Light2Dark, @​lucharo, @​manzt, @​maruthgoyal, @​mscolnick, @​peter-gy, @​marcodlk

New Contributors

Full Changelog: marimo-team/marimo@0.19.7...0.19.8

v0.19.7

Compare Source

⭐️ Highlights

PDF Export

marimo now supports exporting notebooks as PDFs, both from the CLI and directly from the notebook interface. Whether you're generating documentation, creating reports, or sharing your work, you can now produce professional-looking PDF outputs with full support for your notebook's visualizations and markdown content.

Export from the command line using the new marimo export pdf command, with options to control output format and include CLI arguments for parameterized notebooks. The PDF exporter runs your notebook, captures all outputs, and uses nbconvert's WebPDF exporter (powered by Chromium) for high-quality rendering. When running marimo as a notebook, you'll find a new "Export as PDF" option in the export menu.

# Export a notebook to PDF
marimo export pdf notebook.py -o notebook.pdf

# Pass CLI arguments to your notebook
marimo export pdf notebook.py -o report.pdf -- --date 2026-01-29 --region west

# Watch for changes and auto-regenerate
marimo export pdf notebook.py -o notebook.pdf --watch

Requirements: PDF export requires nbformat and nbconvert[webpdf] to be installed.

✨ Enhancements

  • apply patch for extraStyleContent (#​8043)
  • add more linking to provider page (#​8041)
  • Lsp status icon and refresh (#​8011)
  • Additional print configuration, fix race conditions in export to pdf (#​8038)
  • Include mime-type precedence and visibilty rules (#​8037)
  • add snappy parameter to speed up auto-export (#​8032)
  • fix carousel styles (#​8022)
  • add progress bar for download pdf (#​8016)
  • add placeholder images for external iframes on export to pdf (#​8003)
  • Support srcdoc screenshots (#​8001)
  • link to provider and model page directly (#​7979)
  • Dont set --compile-bytecode for uv installation (#​7985)
  • Add Minimap/Graph toggle to dependencies panel in developer panel (#​7976)
  • Downgrade dataframe in non-interactive environments (#​7940)

🐛 Bug fixes

  • No diff churn when adding requires-python to a sandboxed file (#​8054)
  • Add back LSP snippets, upgrade codemirror-languageserver (#​8052)
  • LSP reconfiguration missing cell-id (#​8050)
  • remove manual handling of local iframes, only external iframes (#​8051)
  • Ensure overflow is captured in screenshots, and ensure smooth capture (#​8046)
  • fix timing issue to apply edits after data has come in (#​8025)
  • Lsp potential race conditions (#​8012)
  • Save content when creating a new file via filename input (#​8009)
  • Ensure logs are scrollable in developer panel (#​8002)
  • Refine rendering of equations in chat pane (#​7961)
  • Add plotly scattermap/scattermapbox point selection support (#​7975)
  • prevent layout shift for auto-export ipynb (#​7965)
  • Avoid ValueError when comparing embed defs with NumPy arrays (#​7980)
  • fix setting UI config to empty for AI custom & displayed models (#​7991)
  • Plotly shapes not clearing when removed from figure (#​7974)
  • Correct input channel direction for IPC sandbox mode (#​7973)
  • support ansi characters in pdf export (#​7962)

📚 Documentation

  • Small textual corrections in Claude Code doc (#​7951)

🔬 Preview features

  • turn on server_side_export_to_pdf flag (#​8036)

📝 Other changes

  • 0.19.7 (fc88208)
  • Default to wedpdf since tex seems to have more issues (#​8055)
  • Proper fallback for mo.watch.file in wasm (#​7982)
  • toast an error if Export as png fails (#​8049)
  • Preserve _marimo_row_id when clamping table columns (#​8029) (#​8035) (83f0901)
  • Update all biome dependencies to v2.3.12 ([#​8039](ht

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 force-pushed the renovate/all-minor-patch branch from adda256 to d9a6eb7 Compare March 19, 2026 19:02
@renovate renovate Bot changed the title chore(deps): update dependency typos to ~=1.44.0 fix(deps): update all non-major dependencies Mar 19, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 799ba10 to 34bad2d Compare April 6, 2026 14:21
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 34bad2d to ae8ef9d Compare April 14, 2026 17:06
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from ae8ef9d to 525e486 Compare April 15, 2026 16:34
@dmadisetti
Copy link
Copy Markdown
Collaborator

Superseded by manual bump to >=0.23.1.

@dmadisetti dmadisetti closed this Apr 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant