Skip to content

Releases: manzt/anywidget

[email protected]

09 Sep 16:46
debd5c3
Compare
Choose a tag to compare

Patch Changes

  • Bump TypeScript to 5.6 (#680)

[email protected]

03 Sep 15:09
6bba2f5
Compare
Choose a tag to compare

Patch Changes

@anywidget/[email protected]

31 Aug 19:31
e13d825
Compare
Choose a tag to compare

Minor Changes

  • Makes explicit WidgetManager interface (#670)

    Drops @jupyter-widgets/base as a dependency and instead makes an explicit
    interface for AnyModel.widget_manager. Right now we only support
    widget_manager.get_model, so having the other methods on the interface was
    misleading (leading to issues around .create_view not being supported).

@anywidget/[email protected]

31 Aug 19:31
e13d825
Compare
Choose a tag to compare

@anywidget/[email protected]

31 Aug 19:31
e13d825
Compare
Choose a tag to compare

@anywidget/[email protected]

28 Aug 17:25
c970b15
Compare
Choose a tag to compare

Patch Changes

  • Ensure all src files are included in the package release (#666)

[email protected]

14 Jul 14:40
d603b5d
Compare
Choose a tag to compare

Patch Changes

  • Update templates to esbuild v0.23 (#620)

[email protected]

24 Jun 20:36
82f7e21
Compare
Choose a tag to compare

Minor Changes

  • Upgrade templates to TypeScript v5.5 (#611)

[email protected]

22 Jun 00:29
f4ea234
Compare
Choose a tag to compare

Patch Changes

  • Improve legacy ESM deprecation notice with widget provenance and Python migration instruction (#609)

@anywidget/[email protected]

12 Jun 20:29
ff4e461
Compare
Choose a tag to compare

Minor Changes

  • Support anywidget lifecycle APIs (i.e., default export) in Vite plugin. (#598)

Drops support for CJS-based usage of the plugin. The CJS Node API of Vite is deprecated in v5. Follow the migration guide for more details:

In a basic Vite project, make sure:

  • The vite.config.js file content is using the ESM syntax.
  • The closest package.json file has "type": "module", or use the .mjs/.mts extension, e.g. vite.config.mjs or vite.config.mts.