From 56bae6abad55c4c9e6d915968f44de74911e5a99 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Sep 2025 12:44:19 +0000 Subject: [PATCH 1/2] Bump prettier-plugin-toml from 2.0.5 to 2.0.6 Bumps [prettier-plugin-toml](https://github.com/un-ts/prettier) from 2.0.5 to 2.0.6. - [Release notes](https://github.com/un-ts/prettier/releases) - [Changelog](https://github.com/un-ts/prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/un-ts/prettier/compare/prettier-plugin-toml@2.0.5...prettier-plugin-toml@2.0.6) --- updated-dependencies: - dependency-name: prettier-plugin-toml dependency-version: 2.0.6 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 15 +++++++-------- package.json | 2 +- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index f6a5d799..4d6f2daa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,7 +18,7 @@ "markdown-link-check": "^3.13.7", "markdownlint-cli": "^0.45.0", "prettier": "^3.6.2", - "prettier-plugin-toml": "^2.0.5" + "prettier-plugin-toml": "^2.0.6" }, "engines": { "node": "22.x" @@ -4867,11 +4867,10 @@ } }, "node_modules/prettier-plugin-toml": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.5.tgz", - "integrity": "sha512-WjXXKQyY4TdXWHU1v73UJxK/oDLSppf+b9KrSVl2kC4ZOr9CIVPKTQ/JxttgbYMaH8r3ihw7WYhMpI1EFa1obg==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.6.tgz", + "integrity": "sha512-12N/wBuHa9jd/KVy9pRP20NMKxQfQLMseQCt66lIbLaPLItvGUcSIryE1eZZMJ7loSws6Ig3M2Elc2EreNh76w==", "dev": true, - "license": "MIT", "dependencies": { "@taplo/lib": "^0.5.0" }, @@ -9651,9 +9650,9 @@ "dev": true }, "prettier-plugin-toml": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.5.tgz", - "integrity": "sha512-WjXXKQyY4TdXWHU1v73UJxK/oDLSppf+b9KrSVl2kC4ZOr9CIVPKTQ/JxttgbYMaH8r3ihw7WYhMpI1EFa1obg==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.6.tgz", + "integrity": "sha512-12N/wBuHa9jd/KVy9pRP20NMKxQfQLMseQCt66lIbLaPLItvGUcSIryE1eZZMJ7loSws6Ig3M2Elc2EreNh76w==", "dev": true, "requires": { "@taplo/lib": "^0.5.0" diff --git a/package.json b/package.json index aa739def..c2003852 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "markdown-link-check": "^3.13.7", "markdownlint-cli": "^0.45.0", "prettier": "^3.6.2", - "prettier-plugin-toml": "^2.0.5" + "prettier-plugin-toml": "^2.0.6" }, "dependencies": { "js-yaml": "^4.1.0" From bdf7c207527408ba256fe04e7579cdf01d0741f8 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 16 Sep 2025 05:45:22 -0700 Subject: [PATCH 2/2] Update `prettier-plugin-toml` version in template installation docs This is now the version used as standard in all Arduino Tooling projects, which the "template" is intended to be used with. --- workflow-templates/check-prettier-formatting-task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-templates/check-prettier-formatting-task.md b/workflow-templates/check-prettier-formatting-task.md index e1c67336..67f32bfe 100644 --- a/workflow-templates/check-prettier-formatting-task.md +++ b/workflow-templates/check-prettier-formatting-task.md @@ -107,7 +107,7 @@ If the project contains manually maintained [TOML](https://toml.io/) language fi Add the TOML support dependencies by running this command: ```text -npm install --save-dev prettier-plugin-toml@^2.0.2 +npm install --save-dev prettier-plugin-toml@^2.0.6 ``` Commit the resulting changes to the `package.json` and `package-lock.json` files.