Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.5.4] - TBD
## [1.5.4] - 2021-07-29

### Added

Expand All @@ -18,24 +18,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Ability to hide code cells when rendering Jupyter notebooks.

After setting up Connect and rsconnect-python, the user can render a Jupyter notebook without its corresponding code cells by passing the ' hide-all-input' flag through the rsconnect cli:
After setting up Connect (>=1.9.0) and rsconnect-python, the user can render a Jupyter notebook without its corresponding code cells by passing the ' hide-all-input' flag through the rsconnect cli:

```
rsconnect deploy notebook \
-n server \
-k APIKey \
--server https://connect.example.org:3939 \
--api-key my-api-key \
--hide-all-input \
hello_world.ipynb
mynotebook.ipynb
```

To selectively hide the input of cells, the user can add a tag call 'hide_input' to the cell, then pass the ' hide-tagged-input' flag through the rsconnect cli:

```
rsconnect deploy notebook \
-n server \
-k APIKey \
--server https://connect.example.org:3939 \
--api-key my-api-key \
--hide-tagged-input \
hello_world.ipynb
mynotebook.ipynb
```

## [1.5.3] - 2021-05-06
Expand Down