Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pip prod(deps): bump marimo from 0.10.19 to 0.11.0 #3834

Merged
merged 2 commits into from
Feb 5, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2025

Bumps marimo from 0.10.19 to 0.11.0.

Release notes

Sourced from marimo's releases.

0.11.0

Highlights ⭐

  1. SQL Engine Support. Connect to various databases like postgresql, mysql, snowflake and more, using your preferred SQL engine.

This release adds support for using for multiple SQL connection libraries, such as SQLModel and SQLAlchemy. You can now define SQL connections in your code like:

import sqlalchemy
import sqlmodel
import duckdb
Create an in-memory SQLite database with SQLAlchemy
sqlite_engine = sqlachemy.create_engine("sqlite:///:memory:")
Create a Postgres database with SQLModel
postgres_engine = sqlmodel.create_engine("postgresql://username:password@server:port/database")
Create a DuckDB connection
duckdb_conn = duckdb.connect("file.db")

And then select which connection to use in the SQL cell.

image

h/t @​Light2Dark

  1. Markdown file-format improvements - Markdown notebooks (i.e. marimo edit notebook.md) has an improved syntax format: python {.marimo}. You can also use SQL cells in the markdown file-format, using sql {.marimo}. To learn more, run marimo tutorial markdown-format

h/t @​dmadisetti

  1. Markdown syntax - Added support for details, admonitions, and emojis in markdown

  2. Performance & Reliability - Lots of bug fixes for better resource cleanup and memory management, as well as disabling features not used in run-mode.

What's Changed

... (truncated)

Commits
  • 3b84b1f release: 0.11.0
  • 2dc721c fix: sql dropdown when initialized (#3687)
  • 33dcefb fix: checks whether latestEngineSelected is in list of engines (#3685)
  • 79da93a smoke test: docstring_to_markdown (#3686)
  • 3426a56 chore(deps): update dependency vitest to v3.0.5 [security] (#3684)
  • 2ee4419 Add openai-whisper to module name list (#3681)
  • 16a1d6a improv: update the sql dropdown to a better design and show disconnected engi...
  • 90e3987 [pre-commit.ci] pre-commit autoupdate (#3678)
  • c583b6d fix: filtering datasets based on variables (#3676)
  • 4c6c6d1 improvement: show engine's tables in the datasources panel (#3665)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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)

Bumps [marimo](https://github.com/marimo-team/marimo) from 0.10.19 to 0.11.0.
- [Release notes](https://github.com/marimo-team/marimo/releases)
- [Commits](marimo-team/marimo@0.10.19...0.11.0)

---
updated-dependencies:
- dependency-name: marimo
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 5, 2025
Copy link

codecov bot commented Feb 5, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 91.26%. Comparing base (c503d9d) to head (a5d3262).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #3834   +/-   ##
=======================================
  Coverage   91.26%   91.26%           
=======================================
  Files         461      461           
  Lines       57643    57643           
  Branches     5571     5571           
=======================================
  Hits        52605    52605           
  Misses       3613     3613           
  Partials     1425     1425           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@compor compor closed this Feb 5, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 5, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@compor compor reopened this Feb 5, 2025
@compor compor merged commit 9956513 into main Feb 5, 2025
16 checks passed
@compor compor deleted the dependabot/pip/marimo-0.11.0 branch February 5, 2025 08:33
emmau678 pushed a commit that referenced this pull request Feb 6, 2025
Bumps [marimo](https://github.com/marimo-team/marimo) from 0.10.19 to
0.11.0.
<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.11.0</h2>
<h2>Highlights ⭐</h2>
<ol>
<li><strong>SQL Engine Support</strong>. Connect to various databases
like postgresql, mysql, snowflake and more, using your preferred SQL
engine.</li>
</ol>
<p>This release adds support for using for multiple SQL connection
libraries, such as SQLModel and SQLAlchemy. You can now define SQL
connections in your code like:</p>
<pre lang="python"><code>import sqlalchemy
import sqlmodel
import duckdb
<h1>Create an in-memory SQLite database with SQLAlchemy</h1>
<p>sqlite_engine =
sqlachemy.create_engine(&quot;sqlite:///:memory:&quot;)</p>
<h1>Create a Postgres database with SQLModel</h1>
<p>postgres_engine =
sqlmodel.create_engine(&quot;postgresql://username:password@server:port/database&quot;)</p>
<h1>Create a DuckDB connection</h1>
<p>duckdb_conn = duckdb.connect(&quot;file.db&quot;)
</code></pre></p>
<p>And then select which connection to use in the SQL cell.</p>
<p><img
src="https://github.com/user-attachments/assets/8ba7f094-aefd-4cfc-95c0-19da5ee3378e"
alt="image" /></p>
<p>h/t <a
href="https://github.com/Light2Dark"><code>@​Light2Dark</code></a></p>
<ol start="2">
<li><strong>Markdown file-format improvements</strong> - Markdown
notebooks (i.e. <code>marimo edit notebook.md</code>) has an improved
syntax format: <code>python {.marimo}</code>. You can also use SQL cells
in the markdown file-format, using <code>sql {.marimo}</code>. To learn
more, run <code>marimo tutorial markdown-format</code></li>
</ol>
<p>h/t <a
href="https://github.com/dmadisetti"><code>@​dmadisetti</code></a></p>
<ol start="4">
<li>
<p><strong>Markdown syntax</strong> - Added support for details,
admonitions, and emojis in markdown</p>
</li>
<li>
<p><strong>Performance &amp; Reliability</strong> - Lots of bug fixes
for better resource cleanup and memory management, as well as disabling
features not used in run-mode.</p>
</li>
</ol>
<h2>What's Changed</h2>
<ul>
<li>feat: SQL engines by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3563">marimo-team/marimo#3563</a></li>
<li>update: update code block to ```python {.marimo} by <a
href="https://github.com/dmadisetti"><code>@​dmadisetti</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3387">marimo-team/marimo#3387</a></li>
<li>chore: add hatch build hook to build marimo when installed from
github by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3639">marimo-team/marimo#3639</a></li>
<li>docs: typo by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3641">marimo-team/marimo#3641</a></li>
<li>tests: add tests for try-format by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3643">marimo-team/marimo#3643</a></li>
<li>fix: duckdb querying dataframes with engines by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3642">marimo-team/marimo#3642</a></li>
<li>fix: show 'Clear Output' cell action when console has output by <a
href="https://github.com/Light2Dark"><code>@​Light2Dark</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3650">marimo-team/marimo#3650</a></li>
<li>fix(deps): update all npm non-major dependencies by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3655">marimo-team/marimo#3655</a></li>
<li>improve: run mode performance for streams by <a
href="https://github.com/akshayka"><code>@​akshayka</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3648">marimo-team/marimo#3648</a></li>
<li>chore(deps): update dependency scikit-bio to &gt;=0.6.3 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3647">marimo-team/marimo#3647</a></li>
<li>chore(deps): update dependency google-generativeai to v0.8.4 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3646">marimo-team/marimo#3646</a></li>
<li>fix: correctness of formatting by <a
href="https://github.com/mscolnick"><code>@​mscolnick</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3644">marimo-team/marimo#3644</a></li>
<li>improvement: removed border and and fix tooltips when multi-column
view by <a
href="https://github.com/Light2Dark"><code>@​Light2Dark</code></a> in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3649">marimo-team/marimo#3649</a></li>
<li>fix: date range not defaulting to <code>start</code> and
<code>stop</code> by <a
href="https://github.com/Hofer-Julian"><code>@​Hofer-Julian</code></a>
in <a
href="https://redirect.github.com/marimo-team/marimo/pull/3651">marimo-team/marimo#3651</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/marimo-team/marimo/commit/3b84b1fda1f7af570c931bf47ee990ea7cb733d9"><code>3b84b1f</code></a>
release: 0.11.0</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/2dc721c25d6027be11e76da05d4692dabd4cff3f"><code>2dc721c</code></a>
fix: sql dropdown when initialized (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3687">#3687</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/33dcefb76b1354c2c48609f72384c867fc195566"><code>33dcefb</code></a>
fix: checks whether latestEngineSelected is in list of engines (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3685">#3685</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/79da93a2ee5fef1dd65fcb5f60c87f9cbf565054"><code>79da93a</code></a>
smoke test: docstring_to_markdown (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3686">#3686</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/3426a56e7b0c87591bdc252a0f131c0a74a967b7"><code>3426a56</code></a>
chore(deps): update dependency vitest to v3.0.5 [security] (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3684">#3684</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/2ee4419f64a27cd0821e905021c96cc98b10c74d"><code>2ee4419</code></a>
Add openai-whisper to module name list (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3681">#3681</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/16a1d6a90e090eb759116c3c26de2856f2c137a8"><code>16a1d6a</code></a>
improv: update the sql dropdown to a better design and show disconnected
engi...</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/90e398767244cf4f3a33eb4b2b8c8cd06016e659"><code>90e3987</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3678">#3678</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/c583b6dbc57b697a94331e9e3ab7e5de22bb1a88"><code>c583b6d</code></a>
fix: filtering datasets based on variables (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3676">#3676</a>)</li>
<li><a
href="https://github.com/marimo-team/marimo/commit/4c6c6d1c89b619fe7b835efbf5b60d6fd3575921"><code>4c6c6d1</code></a>
improvement: show engine's tables in the datasources panel (<a
href="https://redirect.github.com/marimo-team/marimo/issues/3665">#3665</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/marimo-team/marimo/compare/0.10.19...0.11.0">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.19&new-version=0.11.0)](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: compor <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants