Skip to content

Update dependency marimo to >=0.20,<0.21#56

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/marimo-0.x
Open

Update dependency marimo to >=0.20,<0.21#56
renovate[bot] wants to merge 1 commit intomainfrom
renovate/marimo-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 24, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
marimo (source) minor >=0.14,<0.15>=0.20,<0.21

Release Notes

marimo-team/marimo (marimo)

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)
  • Update pymdownx admonition smoke tests with new syntax (#​8028)
  • Consolidate watch_and_export implementations (#​8000)
  • Export notebooks as PDFs via CLI (#​7997)
  • Windows path issue (#​7978) (#​7990) (6d3a6eb)
  • Update all storybook dependencies to ^10.2.0 (#​7987)

Contributors

Thanks to all our community and contributors who made this release possible: @​akshayka, @​app/renovate, @​dmadisetti, @​faysou, @​Light2Dark, @​manzt, @​mscolnick, @​MukeshK17, @​peter-gy, @​sswatson-ap

New Contributors

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

v0.19.6

Compare Source

What's Changed

🐛 Bug fixes

  • fix number component navigation (#​7957)
  • --sandbox flag should add script metadata when none exists (#​7954)
  • Include rich console outputs in PDF/ipynb export (#​7955)

📚 Documentation

  • Add screenshot and clarify ipynb snapshotting docs (#​7952)

📝 Other changes

Contributors

Thanks to all our community and contributors who made this release possible: @​akshayka, @​app/renovate, @​manzt, @​mscolnick

Full Changelog: marimo-team/marimo@0.19.5...TODO_CURRENT_VERSION

v0.19.4

Compare Source

What's Changed

Full Changelog: marimo-team/marimo@0.19.3...0.19.4

v0.19.2

Compare Source

What's Changed

This PR fixes a bug that prevented deployed notebooks from accessing request context like user authentication data, cookies, headers, etc.

New Contributors

Full Changelog: marimo-team/marimo@0.19.1...0.19.2

v0.19.1

Compare Source

What's Changed

This release includes a new API for formatting values in mo.ui.dataframe, as well as small bug fixes.

✨ Enhancements
  • Support format_mapping for dataframe as table (#​7745)
🐛 Bug fixes
  • Running sandbox link in home is broken when launched under subdir (#​7764)
  • Lower minimap z-index to stay within panel bounds (#​7766)
  • fix data editor width by setting full width on parent (#​7760)
📚 Documentation
  • Add quotes around path in TOML (#​7765)
📝 Other changes
Contributors

Thanks to all our community and contributors who made this release possible: @​akshayka, @​dmadisetti, @​hodlen, @​Light2Dark, @​manzt

Full Changelog: marimo-team/marimo@0.19.0...TODO_CURRENT_VERSION

v0.19.0

Compare Source

This release introduces a refreshed UI with lighter cell styling and a new Developer Panel, along with reorganized sidebar panels and important bug fixes.

Highlights

Introducing the Developer Panel

marimo has many panels for configuring and inspecting notebooks, but mixing essential tools with advanced features can overwhelm new users. This release introduces a dedicated Developer Panel at the bottom of the editor (similar to VS Code's panel or browser DevTools) to house specialized tools like the terminal, logs, tracing, and scratchpad.

The sidebar now focuses on core panels that all users need, while power users can open the Developer Panel when they need deeper visibility into execution or want a scratchpad for experimentation. If you prefer a different arrangement, panels can be freely moved between the sidebar and Developer Panel—just drag them where you want.

  • Toggle the Developer Panel with Cmd/Ctrl + J or via the footer
  • Drag panels between the sidebar and Developer Panel to customize your layout
Consolidated Sidebar Panels

To reduce clutter, several panels have been reorganized:

  • Minimap has moved into the Dependencies panel as a tab. The same keyboard shortcut opens it (Cmd/Ctrl+Shift+I)
  • Variables & Data Sources are now combined into a single panel with collapsible accordion sections

✨ Enhancements

  • Unify panel actions to work across sidebar and developer panel (#​7743)
  • Move minimap into "Dependencies" panel with tabbed UI (#​7742)
  • Implement wrap around feature for mo.carousel() (#​7709)
  • Add ADBC DB-API engine for SQL connections (#​7664)
  • Also allow Ctrl as modifier key on macOS (#​7608)
  • Add panel section context for orientation-aware layouts (#​7724)
  • Add cross-list drag-drop for sidebar and developer panel (#​7697)
  • Small fixes for cell shadows and hover (#​7715)
  • Shadow adjustments (#​7700)
  • implement pydantic-ai provider for mo.ui.chat (#​7636)
  • Lighten shadows (#​7682)
  • Fix sidebar drag-and-drop requiring click before drag (#​7669)
  • Pytest fixtures (#​7654)
  • Add command history navigation with arrow keys (#​7617)
  • Add send button, and clean styles of AI buttons (#​7445)
  • Lazy backend (#​7523)
  • Add support for reactive Plotly bar chart (#​7733)
  • Feat add pivot transform to mo.ui.dataframe (#​7584)
  • Reactive Plotly heatmap (#​7546)
  • Support uv dev install (#​7372)
  • Combine "Variables" & "Data Sources" panels into "Variables & Data Sources" panel (#​7459)
  • Detect !pip and give better error message (#​7525)
  • Cell styles on sort/pagination (#​7452)
  • Consolidate developer tools into dedicated "Developer Panel" (#​7458)
  • Double click to reveal hidden markdown code (#​7495)
  • Create cell button, collapse strokes/size (#​7448)
  • Always collapse runtime settings into a single dropdown (#​7461)

🐛 Bug fixes

  • Remove width param for data editor (#​7741)
  • Relative path fixes for home mode (#​7722)
  • Fix duplicate HTML5 backend error in file explorer (#​7723)
  • refresh table on cell styles change (#​7705)
  • Fix path resolution for .resolve() and .absolute() for correctness and security (#​7703)
  • Disallow file access outside directory where 'marimo edit <folder' is run (#​7701)
  • Ipynb export matplotlib (#​7696)
  • Windows path validation, convert to longpath (#​7691)
  • Specific handling for lazy requests (#​7698)
  • Fix Ctrl+Click to select cell type on Windows/Linux (#​7580)
  • Fix escape logic for selections and multiple cursors in a cell (#​7434)
  • Fix request type (#​7601)
  • Fix dataframe flaky test (#​7589)
  • Fix example code in UIElement.form docstring (#​7578)
  • Fix for pasting images in markdown (#​7536)

📚 Documentation

  • Add "using claude code" section (#​7687)
  • Add pydantic-ai to chatbot docs (#​7706)
  • Add Codex agent support to agents guide and update AI completion reference (#​7658)
  • Correct spelling of 'sqlalchemy' in SQL docs (#​7509)
  • Fix new stat docs (#​7503)
  • Use update cell code to not wait for cell editor (#​7520)

📝 Other changes

  • Split out docker ci to be manually run (#​7740)
  • Add repository to package.json (#​7725)
  • Single release.yml with switch (#​7719)
  • Address windows flakiness by reducing introspection calls (#​7678)
  • Turn off auto install for micropip (#​7680)
  • Update all storybook dependencies to ^10.1.11 (#​7610)
  • Path validation test and public asset logic (#​7688)
  • Home page lazy loading (#​7689)
  • interpolate globals into sql query using string formatting for validate_sql (#​7562)
  • Fix cross-view interactions (e.g., brush selections) breaking in concatenated Altair charts when using mo.ui.altair_chart. (#​7673)
  • Preserve symlinks in path validation check (#​7671)
  • Better parsing for pep dependencies in pyodide (#​7670)
  • Point selection for altair heat maps (#​7675)
  • Respect include_code setting for code downloads in run mode, and show "Download as .py" (#​7642)
  • Add accept & reject buttons for setup cell (#​7667)
  • Cgroup-aware machine stats (#​7488)
  • Add marimo as a dependency if it isn't already (#​7656)
  • Add cell prefix to setup cell registration (#​7648)
  • Invalid error thrown when undefined setup variables (#​7649)
  • Wider duckdb support, wider types check (#​7644)
  • Remove some duplication in pyproject.toml (#​7646)
  • Use dependency-groups in pyproject.toml (#​7325)
  • Better minimum resolutions (#​7639)
  • Allow saving notebooks on /tmp_mnt paths (#​7641)
  • Do not use shared memory in run case (#​7637)
  • Quarto specific code block (#​7623)
  • Cleanup app-router (#​7628)
  • Move find-free port so _plugins don't depend on _server (#​7633)
  • Improve clarity in Traditional Chinese README (#​7635)
  • Set only partial updates for config changes (#​7634)
  • Use Command instead of Request in put_control_request (#​7632)
  • Send only partials of updated config data (#​7553)
  • Update min starlette for fixed httpx compat (#​7630)
  • Don't trigger browser auth popup for API requests (#​7629)
  • Typesafe app-state (#​7627)
  • Move session files (#​7626)
  • Migrate to pydantic-ai for google & anthropic providers (#​7425)
  • Run auto-instaniate on the backend for run mode (#​7603)
  • Dataframe plugin - move columns logic to the backend (#​7611)
  • Cleanup markdown serializers (#​7569)
  • Lint fixes (#​7622)
  • Improve column legibility (#​7614)
  • Fix flakey sys.stderr test (#​7613)
  • Show up to h6 for Outline (#​7609)
  • Fixes for fe-tests (#​7607)
  • Fullscreen icon, collapse icon, focus ring (#​7571)
  • Unparsable cell is not idempotent (#​7583)
  • More session extensions (#​7602)
  • Change copyright to 2026 including scripts (#​7606)
  • Missing endpoint test coverage (#​7598)
  • Pull out variable logic from notification schemas (#​7596)
  • Test extensions (#​7600)
  • Update build tools (#​7594)
  • Revamp Ollama models list (#​7595)
  • Rename kernel Requests to Command (#​7593)
  • Change open api schema diff tool (#​7592)
  • Rename Op to Notification (#​7590)
  • Split up ws monolith (#​7587)
  • Generate notification schema (#​7586)
  • Pull out notification utils (#​7585)
  • SessionConsumer as a SessionExtension (#​7570)
  • Update testing dependencies (#​7577)
  • Session extensions (#​7542)
  • CLI flag to configure whether a notebook is trusted (#​7556)
  • Fix flaky hypothesis test for pandas GROUP_BY transforms (#​7563)
  • Change/cleanup transport logic for different backens (ws, pyodide, static) (#​7552)
  • Re-enable sql linter (#​7561)
  • Internal api for template rendering (#​7555)
  • Update dependency storybook to v10.1.10 [security] (#​7550)
  • Traverse previous directories even if directory is not located in home (#​7551)
  • Skip watching test on windows (#​7541)
  • DRY up endpoints that proxy directly to the kernel (#​7540)
  • Reduce fields exposed on the Session object (#​7537)
  • Convert edges class to util functions, remove unused siblings (#​7533)
  • Split up SessionManager (#​7534)
  • Config cell_output prefault "below" (#​7535)
  • Provide toplevel/ NameError explanations for private variables (#​7524)
  • Split up DirectedGraph into smaller components (#​7527)
  • Break down session.py into smaller bits (#​7532)
  • Outline deployment with skypilot (#​7400)
  • Suppress signature help for external edits (#​7528)
  • Contextual docs hint for local variables on NameError (#​7522)
  • More edge cases in codeblock stripping (#​7511)
  • Handle ImportErro and ModuleNotFoundError in output formatting (#​7482)
  • Dataframe download encoding (#​7385)
  • marimo edit local static notebooks (#​7474)
  • Additional hyprlinks (#​7512)
  • App.embed(defs={'mine': value}) (#​7146)
  • Add signature docstring, and remove list of autocompletion after empty paren & commas (#​7331)
  • Focus on editors and buttons after layout shift from hidden code (#​7489)
  • Strip first and last chunks for backtick checking (#​7510)
  • Add lazy argument to ui.dataframe (#​7476)
  • Fix OSError when running marimo with uv projects on Windows (#​7502)
  • Copy as markdown in the dataframe table (#​7507)
  • When formatting structures, don't flatten formattable structures (#​7492)
  • Focus cells when undeleted (#​7491)
  • Correct imports to actual file instead of accidental exports (#​7490)
  • Fix tutorial access from UI (#​7465)
  • Revert removal of useEffect, fix table search focus (#​7486)
  • Enable reactive reference highlighting by default (#​7483)
  • Remove unneeded options in notebook menu (#​7480)
  • Parse urls and install commands from console outputs (#​7479)
  • Simplify cell menu (#​7481)
  • Fix OSError when displaying Polars DataFrames with old timestamps on Windows (#​7477)
  • Stderr (#​7478)
  • Add wait step for PyPI package availability in Docker release workflow (#​7466)
  • add error banner for acp to save the notebook (#​7470)
  • Clean up organization (#​7464)
  • Enhance GitHub Copilot integration with advanced configuration options (#​7457)
  • Fix breaks to polars upgrades (#​7454)
  • Clarify ancestor code is still important for cache invalidation (#​7473)
  • Do not style stderr as red (#​7472)
  • Fetch index.html from --asset-url as a fallback (#​7453)
  • Handle comprehension shadowing when parsing required references for variables (#​7446)
  • Add dynamic model selection for ACP agents (#​7432)

Contributors

Thanks to all our community and contributors who made this release possible: @​akshayka, @​andrewsoonqn, @​corleyma, @​dmadisetti, @​koaning, @​Light2Dark, @​m-rgba, @​majiayu000, @​manzt, @​mscolnick, @​nojaf, @​prateek, @​thliang01

And especially to our new contributors:

Full Changelog: marimo-team/marimo@0.18.4...0.19.0

v0.18.4

Compare Source

What's Changed

Full Changelog: marimo-team/marimo@0.18.3...0.18.4

v0.18.3

Compare Source

What's Changed

✨ Enhancements

  • handle nans and infs in table filter (#​7402)
  • Improve scroll position handling when toggling between edit and app mode (#​7406)
  • Enhance lazy df utilities and ensure dataframe type preservation in transformations (#​7401)
  • Add file limit, warning, and more performant file detection (#​7368)
  • Detect and warn about duplicate shortcuts (#​7412)

🐛 Bug fixes

  • Update NavigationMenu for correct popover positioning (#​7403)
  • Line parsing for debugpy (#​7415)
  • Bump max version altair (#​7414)
  • Handle decimal in column hist (#​7413)
  • Hide pylsp error on the home page (#​7416)
  • Lazy import psutil for windows (#​7411)
  • Deserialization of user config in pyodide (#​7405)

Contributors

Thanks to all our community and contributors who made this release possible: @​dmadisetti, @​Light2Dark, @​mscolnick

Full Changelog: marimo-team/marimo@0.18.2...0.18.3

v0.18.2

Compare Source

What's Changed

✨ Enhancements

  • Inline relative images inside pyodide (#​7324)
  • add context menu for copy, copy selected and filter for table cells (#​7351)
  • merge Agents and chat into 1 sidebar panel (#​7332)
  • allow dict() and .items() on CLIArgs (#​7335)

🐛 Bug fixes

  • Prevent SQL cells from auto-converting when mo.sql() is in conditional expressions (#​7390)
  • Edge-case for dependent top-level defs (#​7392)
  • fix search for tables for pandas (#​7387)
  • Remove NaN from number plugin (#​7364)
  • Keep colors in console outputs with ansi colors (#​7367)
  • prevent form rerendering infinitely due to NaNs (#​7363)
  • ui.dataframe: use polars codegen for lazyframe (#​7314)

📚 Documentation


Configuration

📅 Schedule: 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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/marimo-0.x branch 2 times, most recently from a2c9025 to 73cadde Compare August 31, 2025 11:29
@renovate renovate bot force-pushed the renovate/marimo-0.x branch from 73cadde to 33518a1 Compare September 23, 2025 13:42
@renovate renovate bot changed the title Update dependency marimo to >=0.15,<0.16 Update dependency marimo to >=0.16,<0.17 Sep 23, 2025
@renovate renovate bot force-pushed the renovate/marimo-0.x branch 2 times, most recently from 509ce86 to 0294924 Compare September 29, 2025 21:41
@renovate renovate bot force-pushed the renovate/marimo-0.x branch 2 times, most recently from 4c2c19e to 59ee989 Compare October 3, 2025 00:45
@renovate renovate bot force-pushed the renovate/marimo-0.x branch from 59ee989 to 595cf55 Compare October 22, 2025 15:06
@renovate renovate bot changed the title Update dependency marimo to >=0.16,<0.17 Update dependency marimo to >=0.17,<0.18 Oct 22, 2025
@renovate renovate bot force-pushed the renovate/marimo-0.x branch 6 times, most recently from f3a87cd to a596c2f Compare October 31, 2025 20:49
@renovate renovate bot force-pushed the renovate/marimo-0.x branch from a596c2f to f2b1a88 Compare November 5, 2025 02:55
@renovate renovate bot force-pushed the renovate/marimo-0.x branch from f2b1a88 to 38b7cc6 Compare November 14, 2025 01:44
@renovate renovate bot force-pushed the renovate/marimo-0.x branch from 38b7cc6 to 699ae9e Compare November 21, 2025 02:27
@renovate renovate bot changed the title Update dependency marimo to >=0.17,<0.18 Update dependency marimo to >=0.18,<0.19 Nov 21, 2025
@renovate renovate bot force-pushed the renovate/marimo-0.x branch 8 times, most recently from b588767 to b75e5dc Compare December 6, 2025 04:00
@renovate renovate bot force-pushed the renovate/marimo-0.x branch 2 times, most recently from 79c45ee to 1362a0f Compare December 12, 2025 14:13
@abkfenris
Copy link
Member

It has an issue with multiple plots for the same buoy right now.

@renovate renovate bot force-pushed the renovate/marimo-0.x branch from 1362a0f to c269f6b Compare January 9, 2026 10:12
@renovate renovate bot changed the title Update dependency marimo to >=0.18,<0.19 Update dependency marimo to >=0.19,<0.20 Jan 9, 2026
@renovate renovate bot force-pushed the renovate/marimo-0.x branch 3 times, most recently from f3d0566 to 158bff0 Compare January 17, 2026 02:50
@renovate renovate bot force-pushed the renovate/marimo-0.x branch 2 times, most recently from 3be6e9d to 8a13c17 Compare January 30, 2026 01:30
@renovate renovate bot force-pushed the renovate/marimo-0.x branch 2 times, most recently from 36448fd to dad284d Compare February 6, 2026 01:40
@renovate renovate bot force-pushed the renovate/marimo-0.x branch 2 times, most recently from 0b8c9b3 to 22fd031 Compare February 15, 2026 09:54
@renovate renovate bot force-pushed the renovate/marimo-0.x branch from 22fd031 to fa1af93 Compare February 21, 2026 01:11
@renovate renovate bot changed the title Update dependency marimo to >=0.19,<0.20 Update dependency marimo to >=0.20,<0.21 Feb 21, 2026
@renovate renovate bot force-pushed the renovate/marimo-0.x branch from fa1af93 to 075dfc2 Compare February 23, 2026 13:37
@renovate renovate bot force-pushed the renovate/marimo-0.x branch from 075dfc2 to 343b28a Compare March 5, 2026 17:42
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