Skip to content

Commit

Permalink
Publish 0.6.0
Browse files Browse the repository at this point in the history
SHA256 hashes:

jupyter_nbmodel_client-0.6.0-py3-none-any.whl: 9f4bcf9530e65d6d96131db70292af191fa086676364627bfbfc05901964dbcb

jupyter_nbmodel_client-0.6.0.tar.gz: 64181f016311a625936a3ea09489b15bfe02bdcb9bd047f595c64956668def2c
  • Loading branch information
fcollonval committed Jan 16, 2025
1 parent 3a3b7df commit 97b0320
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 3 deletions.
45 changes: 43 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,49 @@

<!-- <START NEW CHANGELOG ENTRY> -->

## 0.6.0

([Full Changelog](https://github.com/datalayer/jupyter-nbmodel-client/compare/v0.4.0...3a3b7df9b472fa4ff861da7e26b91641f5d2a37b))

> [!IMPORTANT]
> Breaking changes :warning:
> 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.
```patch
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](https://github.com/datalayer/jupyter-nbmodel-client/pull/20) ([@fcollonval](https://github.com/fcollonval))
- insert cell methods [#21](https://github.com/datalayer/jupyter-nbmodel-client/pull/21) ([@eleonorecharles](https://github.com/eleonorecharles))

### Other merged PRs

- Update jupyter-server-ydoc requirement from ~=1.0.0 to >=1.0,\<1.2 in the pip group [#19](https://github.com/datalayer/jupyter-nbmodel-client/pull/19) ([@dependabot](https://github.com/dependabot))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/datalayer/jupyter-nbmodel-client/graphs/contributors?from=2024-12-18&to=2025-01-16&type=c))

[@dependabot](https://github.com/search?q=repo%3Adatalayer%2Fjupyter-nbmodel-client+involves%3Adependabot+updated%3A2024-12-18..2025-01-16&type=Issues) | [@eleonorecharles](https://github.com/search?q=repo%3Adatalayer%2Fjupyter-nbmodel-client+involves%3Aeleonorecharles+updated%3A2024-12-18..2025-01-16&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Adatalayer%2Fjupyter-nbmodel-client+involves%3Afcollonval+updated%3A2024-12-18..2025-01-16&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 0.4.0

([Full Changelog](https://github.com/datalayer/jupyter-nbmodel-client/compare/v0.3.0...20ff2d14a92d9339e8ddf8e7c091c102d3ea13fa))
Expand All @@ -28,8 +71,6 @@

[@echarles](https://github.com/search?q=repo%3Adatalayer%2Fjupyter-nbmodel-client+involves%3Aecharles+updated%3A2024-12-10..2024-12-18&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Adatalayer%2Fjupyter-nbmodel-client+involves%3Afcollonval+updated%3A2024-12-10..2024-12-18&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 0.3.0

([Full Changelog](https://github.com/datalayer/jupyter-nbmodel-client/compare/v0.2.0...cfc7a804957b777900c105cada76993ce0f6d0c0))
Expand Down
2 changes: 1 addition & 1 deletion jupyter_nbmodel_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .client import NbModelClient, get_jupyter_notebook_websocket_url
from .model import KernelClient, NotebookModel

__version__ = "0.5.0"
__version__ = "0.6.0"

__all__ = [
"KernelClient",
Expand Down

0 comments on commit 97b0320

Please sign in to comment.