Skip to content

Commit

Permalink
pip prod(deps): bump marimo from 0.10.14 to 0.10.15 (#3774)
Browse files Browse the repository at this point in the history
Bumps [marimo](https://github.com/marimo-team/marimo) from 0.10.14 to
0.10.15.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/marimo-team/marimo/releases">marimo's
releases</a>.</em></p>
<blockquote>
<h2>0.10.15</h2>
<h2>Highlights</h2>
<p><code>mo.download</code> allows for (async) functions as that
<code>data</code> arg</p>
<pre lang="python"><code># JSON download with lazy loading
async def get_json_data():
    await asyncio.sleep(1)
_data = {&quot;message&quot;: &quot;Hello&quot;, &quot;count&quot;: 42}
    return json.dumps(_data).encode(&quot;utf-8&quot;)
<p>download = mo.download(
data=get_json_data,
filename=&quot;data.json&quot;,
label=&quot;Download JSON&quot;,
)
download
</code></pre></p>
<h2>What's Changed</h2>
<ul>
<li>fix: overflow output in fullscreen by <a
href="https://github.com/Light2Dark"><code>@​Light2Dark</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3490">marimo-team/marimo#3490</a></li>
<li>docs: force trailing slash by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3496">marimo-team/marimo#3496</a></li>
<li>Ensure return code non-zero on cli error by <a
href="https://github.com/hwine"><code>@​hwine</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3499">marimo-team/marimo#3499</a></li>
<li>ci: ignore uv post cleanup errors on windows by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3498">marimo-team/marimo#3498</a></li>
<li>fix(deps): update dependency katex to v0.16.21 [security] by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3491">marimo-team/marimo#3491</a></li>
<li>fix: add data attributes for the cell to serve as selectors by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3497">marimo-team/marimo#3497</a></li>
<li>docs: show CLA in governance.md by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3495">marimo-team/marimo#3495</a></li>
<li>fix(vim): restore j/k cell navigation broken by <a
href="https://redirect.github.com/marimo-team/marimo/issues/3395">#3395</a>
by <a href="https://github.com/metaboulie"><code>@​metaboulie</code></a>
in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3505">marimo-team/marimo#3505</a></li>
<li>feat: add initial selection table by <a
href="https://github.com/Light2Dark"><code>@​Light2Dark</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3509">marimo-team/marimo#3509</a></li>
<li>improvement: lazy download and smarter downloads by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3506">marimo-team/marimo#3506</a></li>
<li>Improve reporting of unparsable code by <a
href="https://github.com/pentlander"><code>@​pentlander</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3500">marimo-team/marimo#3500</a></li>
<li>improvement: use module mapping when running auto-install in
micropip by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3507">marimo-team/marimo#3507</a></li>
<li>load snippets location from config by <a
href="https://github.com/bennyweise"><code>@​bennyweise</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3462">marimo-team/marimo#3462</a></li>
<li>fix: dont fail on socket.gethostbyname by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3512">marimo-team/marimo#3512</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/pentlander"><code>@​pentlander</code></a> made
their first contribution in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3500">marimo-team/marimo#3500</a></li>
<li><a
href="https://github.com/bennyweise"><code>@​bennyweise</code></a> made
their first contribution in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3462">marimo-team/marimo#3462</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/marimo-team/marimo/compare/0.10.14...0.10.15">https://github.com/marimo-team/marimo/compare/0.10.14...0.10.15</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/marimo-team/marimo/commit/0a84b8e77e176f440d581e1a8512083848e1c569"><code>0a84b8e</code></a>
release: 0.10.15</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/2a290272083845f682aae1e086586b91ff7c03e6"><code>2a29027</code></a>
fix: dont fail on socket.gethostbyname (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3512">#3512</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/5a5c50b3e912f2b656b20da6214bea18d2d342e0"><code>5a5c50b</code></a>
load snippets location from config (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3462">#3462</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/735228b64470cd6d3ab87025d9c61a71d14f24bc"><code>735228b</code></a>
improvement: use module mapping when running auto-install in micropip
(<a
href="https://redirect.github.com/marimo-team/marimo/issues/3507">#3507</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/9bc61db3693e18fbe3e1bec57ff9ba74b69e35ad"><code>9bc61db</code></a>
Improve reporting of unparsable code (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3500">#3500</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/845a3358daacc287171d4a0f0e03cc5f9cd8629f"><code>845a335</code></a>
improvement: lazy download and smarter downloads (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3506">#3506</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/4a20eaf904c5b950247259d5e8a2aea82f7beb5a"><code>4a20eaf</code></a>
feat: add initial selection table (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3509">#3509</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/d4159367d2ecd686d1a44a87215731d8508eb528"><code>d415936</code></a>
fix(vim): restore j/k cell navigation broken by <a
href="https://redirect.github.com/marimo-team/marimo/issues/3395">#3395</a>
(<a
href="https://redirect.github.com/marimo-team/marimo/issues/3505">#3505</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/85e10456e0b64f424e14244e2e7b63a7c9b87dd4"><code>85e1045</code></a>
docs: show CLA in governance.md (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3495">#3495</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/f7f1de4da25c86554f2adb6f010f430b0c8977c8"><code>f7f1de4</code></a>
fix: add data attributes for the cell to serve as selectors (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3497">#3497</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/marimo-team/marimo/compare/0.10.14...0.10.15">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=marimo&package-manager=pip&previous-version=0.10.14&new-version=0.10.15)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: superlopuh <[email protected]>
Co-authored-by: Sasha Lopoukhine <[email protected]>
  • Loading branch information
3 people authored Jan 27, 2025
1 parent 35d5b6b commit 9e4c872
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dev = [
"nbval<0.12",
"filecheck==1.0.1",
"lit<19.0.0",
"marimo==0.10.14",
"marimo==0.10.15",
"pre-commit==4.1.0",
"ruff==0.9.3",
"asv<0.7",
Expand Down
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9e4c872

Please sign in to comment.