Releases: datalayer/jupyter-nbmodel-client
Releases · datalayer/jupyter-nbmodel-client
v0.6.0
0.6.0
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
- Make the client more generic to connect to any Y websocket server #20 (@fcollonval)
- insert cell methods #21 (@eleonorecharles)
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
v0.4.0
0.4.0
Enhancements made
Bugs fixed
- Use a lock to prevent document access or change between threads #16 (@fcollonval)
- Revert "Use multithreading flag" #15 (@fcollonval)
- Use multithreading flag #14 (@fcollonval)
Contributors to this release
v0.3.0
0.3.0
Enhancements made
- Add execution options #11 (@fcollonval)
Documentation improvements
- Add pypi badge #10 (@fcollonval)
Contributors to this release
v0.2.0
0.2.0
Enhancements made
- Polish API #9 (@fcollonval)
Other merged PRs
- Bump apache/skywalking-eyes from e19b828cea6a6027cceae78f05d81317347d21be to 3ea9df11bb3a5a85665377d1fd10c02edecf2c40 in the actions group #5 (@dependabot)
Contributors to this release
v0.1.1
0.1.1
Enhancements made
- Return outputs from
execute_cell
#8 (@fcollonval) - Make client inherit from model directly #7 (@fcollonval)
- Add releaser workflows #6 (@fcollonval)
Documentation improvements
- Return outputs from
execute_cell
#8 (@fcollonval)