Skip to content

Commit 9dcd2f8

Browse files
authored
Merge branch 'main' into bugfix/kbd-crash
2 parents 0d347ac + 67d10e9 commit 9dcd2f8

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

news/changelog-1.8.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ All changes included in 1.8:
131131
- ([#12782](https://github.com/quarto-dev/quarto-cli/pull/12782)): fix bug on `safeRemoveDirSync`'s detection of safe directory boundaries.
132132
- ([#12853](https://github.com/quarto-dev/quarto-cli/issues/12853)): fix replaceAll() escaping issue with embedded notebooks containing `$` in their Markdown.
133133
- ([#12939](https://github.com/quarto-dev/quarto-cli/pull/12939)): Upgrade `mermaidjs` to 11.6.0.
134+
- ([#13031](https://github.com/quarto-dev/quarto-cli/pull/13031)): Add `.quarto_ipynb` files to `.gitignore` by default.
134135
- ([#13085](https://github.com/quarto-dev/quarto-cli/pull/13085)): Avoid `kbd` shortcode crashes on unknown OS keys.
135136
- ([#13164](https://github.com/quarto-dev/quarto-cli/pull/13164)): add `julia` to execute schema to allow autocomplete suggestions. (@mcanouil)
136137

src/project/project-gitignore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { lines } from "../core/text.ts";
1515
import { isEnvDir } from "../core/jupyter/capabilities.ts";
1616
import { isWindows } from "../deno_ral/platform.ts";
1717

18-
export const kQuartoIgnore = [`/${kQuartoScratch}/`];
18+
export const kQuartoIgnore = [`/${kQuartoScratch}/`, `**/*.quarto_ipynb`];
1919

2020
export async function ensureGitignore(
2121
dir: string,

0 commit comments

Comments
 (0)