Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions news/changelog-1.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ All changes included in 1.9:

- New **Engine Extensions**, to allow other execution engines than knitr, jupyter, julia. Julia is now a bundled extension. See [the prerelease notes](https://prerelease.quarto.org/docs/prerelease/1.9/) and [engine extension documentation](https://prerelease.quarto.org/docs/extensions/engine.html).

## Engines

### `jupyter`

- ([#13748](https://github.com/quarto-dev/quarto-cli/pull/13748)): Fix stdin encoding to UTF-8 on Windows to correctly handle JSON in documents containing non-ASCII characters.

## Other fixes and improvements

- ([#8730](https://github.com/quarto-dev/quarto-cli/issues/8730)): Detect x64 R crashes on Windows ARM and provide helpful error message directing users to install native ARM64 R instead of showing generic "check your R installation" error.
Expand Down
1 change: 1 addition & 0 deletions src/resources/jupyter/jupyter.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ def status(msg):
del os.environ["QUARTO_JUPYTER_OPTIONS"]
# otherwise read from stdin
else:
sys.stdin.reconfigure(encoding='utf-8')
input = json.load(sys.stdin)
command = input["command"]
options = input["options"]
Expand Down
Loading