Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2026

This PR contains the following updates:

Package Change Age Confidence
anywidget ~=0.9.18~=0.9.21 age confidence

Release Notes

manzt/anywidget (anywidget)

v0.9.21

Compare Source

Patch Changes
  • Use rsbuild inline sourcemaps for JupyterLab extension (#​909)

    JupyterLab was refusing to load external source map files because they were
    being served with the wrong MIME type ('application/octet-stream' instead of
    the expected source map MIME type). This caused the extension to fail loading
    in version 0.9.20.

    Switching to inline source maps embeds the source map directly in the
    JavaScript bundle, avoiding the MIME type issue while still providing source
    map support for debugging.

v0.9.20

Compare Source

Patch Changes
  • Override repr to avoid expensive trait serialization #​906 (#​906)

    Previously, AnyWidget inherited ipywidgets.Widget.__repr__ which serialized all trait values. This is costly because the repr might not even be shown to users, yet it forces a full serialization of potentially large data. AnyWidget now overrides __repr__ to use object.__repr__(self), which produces a simple <module.ClassName object at 0x...> format.

    To restore the previous behavior showing all trait values, users can define:

    class MyWidget(anywidget.AnyWidget):
        def __repr__(self):
            return traitlets.HasTraits.__repr__(self)

v0.9.19

Compare Source

Patch Changes
  • Exclude docs/ and paper/ from sdist/wheel (#​902)

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), 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 added the dependencies label Feb 1, 2026
@renovate renovate bot requested a review from akshayka as a code owner February 1, 2026 00:33
@renovate renovate bot added the dependencies label Feb 1, 2026
@vercel
Copy link

vercel bot commented Feb 1, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
marimo-docs Ready Ready Preview, Comment Feb 1, 2026 0:35am

Request Review

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

0 participants