Marimo

Latest version: v0.12.4

Safety actively analyzes 723954 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 17 of 47

0.8.7

Not secure
What's Changed

* highlight sandbox/pkgs on readme by akshayka in https://github.com/marimo-team/marimo/pull/2169
* fix: data table pagination with arrows by mscolnick in https://github.com/marimo-team/marimo/pull/2168
* 0.8.7 by akshayka in https://github.com/marimo-team/marimo/pull/2170


**Full Changelog**: https://github.com/marimo-team/marimo/compare/0.8.6...0.8.7

0.8.6

Not secure
What's Changed


* fix: handle escaped table names in SQL statements by mscolnick in https://github.com/marimo-team/marimo/pull/2161
* chore: reorganize examples by akshayka in https://github.com/marimo-team/marimo/pull/2162
* improve: deploying docs by akshayka in https://github.com/marimo-team/marimo/pull/2163
* examples: cleanup marimo-widget examples by mscolnick in https://github.com/marimo-team/marimo/pull/2164
* fix: fix column summaries to include filters by mscolnick in https://github.com/marimo-team/marimo/pull/2165
* fix: import matplotlib.style explicitly by akshayka in https://github.com/marimo-team/marimo/pull/2166
* 0.8.6 by akshayka in https://github.com/marimo-team/marimo/pull/2167


**Full Changelog**: https://github.com/marimo-team/marimo/compare/0.8.5...0.8.6

0.8.5

Not secure
What's Changed

Highlights

**SQL Reactivity! ⚡🛢** This release adds reactivity across SQL cells. When you run a cell that creates a table or view, or attaches a schema, cells that refer to the table, view, or schema are marked as stale. When you delete a cell, any _in-memory_ tables/views are dropped and schemas are detached, and SQL cells referring to them are invalidated.

All changes

* fix: admonition to display contents vertically by mscolnick in https://github.com/marimo-team/marimo/pull/2150
* feat: add anthropic support by mscolnick in https://github.com/marimo-team/marimo/pull/2147
* marimo.app_meta.theme and custom themers to auto switch plotting themes based on the display theme by metaboulie in https://github.com/marimo-team/marimo/pull/2126
* fix 2139: disable heading detection for carousel, accordion and tabs by metaboulie in https://github.com/marimo-team/marimo/pull/2154
* fix: islands render_html() head needs marimo tags by akshayka in https://github.com/marimo-team/marimo/pull/2156
* improvement: open the tutorials from the homepage by mscolnick in https://github.com/marimo-team/marimo/pull/2157
* improvement: parse sql CREATE table names by mscolnick akshayka in https://github.com/marimo-team/marimo/pull/2031
* fix: mo.ui.dataframe don't infer data types, use backend data types by mscolnick in https://github.com/marimo-team/marimo/pull/2155
* fix: fix browser freezing when rendering large dataframes by mscolnick in https://github.com/marimo-team/marimo/pull/2159
* 0.8.5 by akshayka in https://github.com/marimo-team/marimo/pull/2160


**Full Changelog**: https://github.com/marimo-team/marimo/compare/0.8.4...0.8.5

0.8.4

Not secure
What's Changed

This release rides on the coattails of the [uv package manager](https://github.com/astral-sh/uv) to introduce exciting new features related to package reproducibility!

With this release, it's now possible to create standalone notebook files that have package requirements embedded in them as a comment, using [PEP 723's inline metadata](https://peps.python.org/pep-0723/)! marimo can generate these requirements for you and even start notebooks in isolated virtual environments.

These features are only possible because unlike Jupyter notebooks, marimo notebooks are stored as pure Python files, letting them take advantage of the exciting new developments in the Python ecosystem such as `uv` and PEP 723.

Highlights

**📦 Automatic tracking of packages used by notebooks.** marimo can now automatically serialize package dependencies in notebook files as inline script metadata, generating a comment header that looks something like this:

python
/// script
requires-python = ">=3.11"
dependencies = [
"pandas",
"altair",
]
///


This lets you create standalone notebook files that have their package requirements serialized in them.

Enable package tracking in the notebook settings:

![image](https://github.com/user-attachments/assets/05d3eb38-88c6-48d8-b639-5bedf9906891)


_Note: This feature requires `uv`_.

**🚀 Run marimo notebooks in package sandboxes.** Use

bash
marimo edit --sandbox notebook.py


to edit a Python notebook in a completely isolated virtual environment! This increases reproducibility and helps prevent environment pollution. If your notebook has inline script metadata, marimo will automatically install the enumerated packages before running the notebook; if it doesn't, marimo will prompt you to install the missing packages on notebook startup.

This exciting new workflow is only made possible thanks to `uv`, which is blazingly fast.

Other improvements

- You can now [customize marimo CSS](https://docs.marimo.io/guides/theming.html); customization is limited today but will grow over time.
- Dataframe rows are now paginated server-side, improving performance of notebooks that output alrge dataframes.
- ANSI color support is now available in stderr.
- A dedicated "stop" button has been added to the marimo editor, making interrupting cell execution more reliable (no more accidentally running a cell after interrupting it).

All changes

* improve: Enable ANSI support in stderr by wasimsandhu in https://github.com/marimo-team/marimo/pull/2110
* fix: publish docker containers for arm64 (mac compat) by mscolnick in https://github.com/marimo-team/marimo/pull/2111
* chore: add biome-lint to remove unused imports by mscolnick in https://github.com/marimo-team/marimo/pull/2116
* chore: enable more biome rules by mscolnick in https://github.com/marimo-team/marimo/pull/2117
* improvement: paginate mo.ui.table rows (server-side rows) by mscolnick in https://github.com/marimo-team/marimo/pull/2115
* docs: pre-built containers by mscolnick in https://github.com/marimo-team/marimo/pull/2118
* improvement: split run and stop buttons by akshayka in https://github.com/marimo-team/marimo/pull/2119
* [pre-commit.ci] pre-commit autoupdate by pre-commit-ci in https://github.com/marimo-team/marimo/pull/2121
* feat(mo.ui.table): Freeze table columns by wasimsandhu in https://github.com/marimo-team/marimo/pull/2122
* fix: Show outputs below in HTML export if configured by mscolnick in https://github.com/marimo-team/marimo/pull/2129
* fix: add bokeh theme color to iframe background by mscolnick in https://github.com/marimo-team/marimo/pull/2128
* feat: custom css by mscolnick in https://github.com/marimo-team/marimo/pull/2120
* fix: catch/log oserror by akshayka in https://github.com/marimo-team/marimo/pull/2131
* fix: consolidate shadows to be easily overriden by mscolnick in https://github.com/marimo-team/marimo/pull/2130
* feat: configure auto-add script metadata to notebook file, when using uv by mscolnick in https://github.com/marimo-team/marimo/pull/2102
* feat: marimo edit --sandbox nb.py by mscolnick in https://github.com/marimo-team/marimo/pull/2134
* docs: --sandbox by mscolnick in https://github.com/marimo-team/marimo/pull/2136
* docs: add package management to toc by akshayka in https://github.com/marimo-team/marimo/pull/2135
* smoke-tests: for theming different libraries by mscolnick in https://github.com/marimo-team/marimo/pull/2145
* 0.8.4 by akshayka in https://github.com/marimo-team/marimo/pull/2149


**Full Changelog**: https://github.com/marimo-team/marimo/compare/0.8.3...0.8.4

0.8.3

Not secure
What's Changed

Fixes and quality-of-life improvements.

* fix: switching between copilot and codium by mscolnick in https://github.com/marimo-team/marimo/pull/2094
* fix: auto-grow text input for dataframe sql name by mscolnick in https://github.com/marimo-team/marimo/pull/2096
* fix: macOS logging by akshayka in https://github.com/marimo-team/marimo/pull/2095
* chore: more debug logging in kernel by akshayka in https://github.com/marimo-team/marimo/pull/2097
* example: add great_tables by mscolnick in https://github.com/marimo-team/marimo/pull/2099
* fix: anywidget reactivity by mscolnick in https://github.com/marimo-team/marimo/pull/2104
* improvement: support dict in mo.ui.table by mscolnick in https://github.com/marimo-team/marimo/pull/2098
* fix: don't import tomlkit top-level by akshayka in https://github.com/marimo-team/marimo/pull/2103
* improvement: support polars filtering in altair by mscolnick in https://github.com/marimo-team/marimo/pull/2108
* improve: Python-like values in JSON outputs by akshayka in https://github.com/marimo-team/marimo/pull/2105
* 0.8.3 by akshayka in https://github.com/marimo-team/marimo/pull/2109


**Full Changelog**: https://github.com/marimo-team/marimo/compare/0.8.2...0.8.3

0.8.2

Not secure
What's Changed

* chore: profile kernel execution by akshayka in https://github.com/marimo-team/marimo/pull/2088
* fix: don't include trailing quotes in completions by akshayka in https://github.com/marimo-team/marimo/pull/2089
* feat: supports tooltips with data-tooltip attribute by mscolnick in https://github.com/marimo-team/marimo/pull/2086
* fix: altair_chart() on dataframes with >5k rows by akshayka in https://github.com/marimo-team/marimo/pull/2091
* 0.8.2 by akshayka in https://github.com/marimo-team/marimo/pull/2093


**Full Changelog**: https://github.com/marimo-team/marimo/compare/0.8.1...0.8.2

Page 17 of 47

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.