From 35a17f38f6b32fe73ee6ef6d48cc774ddce998bd Mon Sep 17 00:00:00 2001 From: David Sherret Date: Sat, 17 Aug 2024 06:51:36 -0400 Subject: [PATCH] fix(fmt): upgrade to dprint-plugin-markdown 0.17.4 (#25075) Closes https://github.com/denoland/deno/issues/20917 Closes https://github.com/denoland/deno/issues/21285 --- .dprint.json | 2 +- .github/ISSUE_TEMPLATE/bug_report.md | 1 - .github/ISSUE_TEMPLATE/feature_request.md | 1 - Cargo.lock | 8 ++++---- cli/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.dprint.json b/.dprint.json index fcd6b9073f..02146148f0 100644 --- a/.dprint.json +++ b/.dprint.json @@ -67,7 +67,7 @@ "plugins": [ "https://plugins.dprint.dev/typescript-0.91.6.wasm", "https://plugins.dprint.dev/json-0.19.3.wasm", - "https://plugins.dprint.dev/markdown-0.17.2.wasm", + "https://plugins.dprint.dev/markdown-0.17.4.wasm", "https://plugins.dprint.dev/toml-0.6.2.wasm", "https://plugins.dprint.dev/exec-0.5.0.json@8d9972eee71fa1590e04873540421f3eda7674d0f1aae3d7c788615e7b7413d0", "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.4.0.wasm" diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index a16c4ebbc7..883291acf8 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -4,7 +4,6 @@ about: Report an issue found in the Deno CLI. title: '' labels: '' assignees: '' - --- Version: Deno x.x.x diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 4ebeb1ed57..8666a71e99 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -4,5 +4,4 @@ about: Suggest a feature for the Deno CLI. title: '' labels: '' assignees: '' - --- diff --git a/Cargo.lock b/Cargo.lock index 4f4477a9f5..379ddbc249 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2481,9 +2481,9 @@ dependencies = [ [[package]] name = "dprint-plugin-markdown" -version = "0.17.2" +version = "0.17.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a38c16d6d22fb0eb3c2ec94c35d074334d0a0d1da8e4c62e182c9679bdb8ac31" +checksum = "8b2748618896a9206d21762a64a1d57be380f13e3e6774163d42395ca5bdf2f1" dependencies = [ "anyhow", "dprint-core", @@ -5420,9 +5420,9 @@ dependencies = [ [[package]] name = "pulldown-cmark" -version = "0.9.6" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" +checksum = "cb4e75767fbc9d92b90e4d0c011f61358cde9513b31ef07ea3631b15ffc3b4fd" dependencies = [ "bitflags 2.5.0", "memchr", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9b65d0c81b..2a0a9480e7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -101,7 +101,7 @@ dissimilar = "=1.0.4" dotenvy = "0.15.7" dprint-plugin-json = "=0.19.3" dprint-plugin-jupyter = "=0.1.3" -dprint-plugin-markdown = "=0.17.2" +dprint-plugin-markdown = "=0.17.4" dprint-plugin-typescript = "=0.91.6" env_logger = "=0.10.0" fancy-regex = "=0.10.0"