Skip to content

v0.6.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 16 Jan 10:23
· 2 commits to main since this release

0.6.0

(Full Changelog)

Important

Breaking changes ⚠️
The API to create a notebook model client changed to receive directly
the websocket URL for the notebook. In the case of the Jupyter Server,
a helper is provided to generate that websocket URL.

  from jupyter_nbmodel_client import (
      NbModelClient,
+     get_jupyter_notebook_websocket_url
  )
  
- NbModelClient(server_url="http://localhost:8888", token="MY_TOKEN", path="test.ipynb"):
+ NbModelClient(
+   get_jupyter_notebook_websocket_url(
+       server_url="http://localhost:8888",
+       token="MY_TOKEN",
+       path="test.ipynb"
+     )
+ )

Enhancements made

Other merged PRs

  • Update jupyter-server-ydoc requirement from ~=1.0.0 to >=1.0,<1.2 in the pip group #19 (@dependabot)

Contributors to this release

(GitHub contributors page for this release)

@dependabot | @eleonorecharles | @fcollonval