Skip to content

Latest commit

 

History

History
128 lines (77 loc) · 6.33 KB

CHANGELOG.md

File metadata and controls

128 lines (77 loc) · 6.33 KB

Changelog

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

0.4.0

(Full Changelog)

Enhancements made

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@echarles | @fcollonval

0.3.0

(Full Changelog)

Enhancements made

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@fcollonval

0.2.0

(Full Changelog)

Enhancements made

Other merged PRs

  • Bump apache/skywalking-eyes from e19b828cea6a6027cceae78f05d81317347d21be to 3ea9df11bb3a5a85665377d1fd10c02edecf2c40 in the actions group #5 (@dependabot)

Contributors to this release

(GitHub contributors page for this release)

@dependabot | @fcollonval

0.1.1

(Full Changelog)

Enhancements made

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@fcollonval