You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- If workflow fails for some reason, re-run all jobs and not only failed jobs or trigger a new clean build from Actions -> Build Installers -> "Run Workflow" Dropdown Menu.
9
+
This is important because workflow commit an update to version.txt to main, and revert if cancelled or failure. A triggering a new workflow needs to re-run the configure step.
10
+
- If everything went well:
11
+
- New release prerelease should be on Github at <https://github.com/quarto-dev/quarto-cli/releases>
12
+
- A new tag should be on main for the new prerelease version
13
+
-`version.txt` on main should have been updated by the workflow to the pre-release version just released: https://github.com/quarto-dev/quarto-cli/blob/main/version.txt
- If workflow fails for some reason, re-run all jobs and not only failed jobs or trigger a new clean build from Actions -> Build Installers -> "Run Workflow" Dropdown Menu
11
12
-[ ] update release on pypi repo
12
13
- Goto the [quarto-cli-pypi repo](https://github.com/quarto-dev/quarto-cli-pypi)
13
14
- Update `version.txt` to be the version you'd like to publish and commit
@@ -24,4 +25,4 @@
24
25
- **Publishing Production**: You may elect to publish to production pypyi by checking the `Production Release` option
25
26
- Published to: <https://pypi.org/project/quarto-cli/>
26
27
- Take a sip of tea ☕, bask in the glory of automation.
27
-
- [ ] Update the stable changelog by moving entries to the "in previous release"
28
+
- [ ] Update the stable changelog by moving entries from "In this release"to the "In previous releases" section
Copy file name to clipboardExpand all lines: news/changelog-1.7.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,24 +4,43 @@ All changes included in 1.7:
4
4
5
5
- ([#11509](https://github.com/quarto-dev/quarto-cli/issues/11509)): Fix link-decoration regression in HTML formats.
6
6
- ([#11532](https://github.com/quarto-dev/quarto-cli/issues/11532)): Fix regression for [#660](https://github.com/quarto-dev/quarto-cli/issues/660), which causes files to have incorrect permissions when Quarto is installed in a location not writable by the current user.
7
+
- ([#11549](https://github.com/quarto-dev/quarto-cli/issues/11549)): Fix regression in rendering `dashboard` tabsets into cards without titles.
7
8
- ([#11580](https://github.com/quarto-dev/quarto-cli/issues/11580)): Fix regression with documents containing `categories` fields that are not strings.
9
+
- ([#11752](https://github.com/quarto-dev/quarto-cli/issues/11752)): Fix regression with non-alphanumeric characters in `categories` preventing correct filtering of listing.
8
10
9
11
## YAML validation
10
12
11
13
- ([#11654](https://github.com/quarto-dev/quarto-cli/issues/11654)): Allow `page-inset` as value in `column` key for code cells.
12
14
15
+
## Website projects
16
+
17
+
- ([#11701](https://github.com/quarto-dev/quarto-cli/issues/11701)): Wrap HTML emitted by EJS templates in `{=html}` blocks to avoid memory blowup issues with Pandoc's parser.
18
+
19
+
## Book projects
20
+
21
+
- ([#11520](https://github.com/quarto-dev/quarto-cli/issues/11520)): Book's cover image now escapes lightbox treatment, which was incorrectly applied to it when `lightbox: true` was set in the book's configuration.
22
+
13
23
## `quarto check`
14
24
15
25
- ([#11608](https://github.com/quarto-dev/quarto-cli/pull/11608)): Do not issue error message when calling `quarto check info`.
16
26
27
+
## `typst` Format
28
+
29
+
- ([#11578](https://github.com/quarto-dev/quarto-cli/issues/11578)): Typst column layout widths use fractional `fr` units instead of percent `%` units for unitless and default widths in order to fill the enclosing block and not spill outside it.
General improvements to the style and robustness of Quarto's Lua code.
21
35
This also provides a new public function `quarto.utils.is_empty_node`
22
36
that allows to check whether a node is empty, i.e., whether it's an
23
37
empty list, has no child nodes, and contains no text.
38
+
- ([#11699](https://github.com/quarto-dev/quarto-cli/issues/11699)): Fix crash with `video` shortcode inside HTML comments.
39
+
- Expose new `quarto.paths.tinytex_bin_dir` in Quarto's Lua API. If TinyTeX is found by Quarto, this will be set to the path to the `bin` directory of the TinyTeX installation where command line tool are located (e.g., `pdflatex`, `tlmgr`, etc.). If TinyTeX is not found, this will be `nil`, meaning Quarto will use the system PATH to find the command line tools.
40
+
- Fix `pandoc.mediabag` Lua typings so autocompletions work with the Lua LSP integration.
24
41
25
42
## Other Fixes and Improvements
26
43
44
+
- ([#8613](https://github.com/quarto-dev/quarto-cli/issues/8613)): Fix `giscus` color on load to support dark mode (by @kv9898).
45
+
- ([#11441](https://github.com/quarto-dev/quarto-cli/issues/11441)): Don't add newlines around shortcodes during processing.
27
46
- ([#11643](https://github.com/quarto-dev/quarto-cli/issues/11643)): Improve highlighting of nested code block inside markdown code block, i.e. using ` ```{{python}} ` or ` ```python ` inside ` ````markdown` fenced code block.
0 commit comments