From 065dd459f5a158a0a0cf194671823aa0691747af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 11:55:06 +0000 Subject: [PATCH 1/2] Bump prettier from 3.2.5 to 3.3.1 Bumps [prettier](https://github.com/prettier/prettier) from 3.2.5 to 3.3.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.2.5...3.3.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index f8776440..b0815040 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "github-label-sync": "2.3.1", "markdown-link-check": "^3.12.2", "markdownlint-cli": "^0.37.0", - "prettier": "^3.2.5" + "prettier": "^3.3.1" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -3649,9 +3649,9 @@ } }, "node_modules/prettier": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", - "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.1.tgz", + "integrity": "sha512-7CAwy5dRsxs8PHXT3twixW9/OEll8MLE0VRPCJyl7CkS6VHGPSlsVaWTiASPTyGyYRyApxlaWTzwUxVNrhcwDg==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" @@ -7462,9 +7462,9 @@ "dev": true }, "prettier": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", - "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.1.tgz", + "integrity": "sha512-7CAwy5dRsxs8PHXT3twixW9/OEll8MLE0VRPCJyl7CkS6VHGPSlsVaWTiASPTyGyYRyApxlaWTzwUxVNrhcwDg==", "dev": true }, "progress": { diff --git a/package.json b/package.json index dc860ae8..43e6fa72 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "github-label-sync": "2.3.1", "markdown-link-check": "^3.12.2", "markdownlint-cli": "^0.37.0", - "prettier": "^3.2.5" + "prettier": "^3.3.1" }, "dependencies": { "js-yaml": "^4.1.0" From 4fd239947ecec19a7252f88af89290cbe02904ba Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 5 Jun 2024 05:00:47 -0700 Subject: [PATCH 2/2] Update `prettier` 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 db97fbab..9b17bb09 100644 --- a/workflow-templates/check-prettier-formatting-task.md +++ b/workflow-templates/check-prettier-formatting-task.md @@ -34,7 +34,7 @@ The tool dependencies of this workflow are managed by [npm](https://www.npmjs.co Add the dependencies by running this command: ```text -npm install --save-dev prettier@^3.2.5 +npm install --save-dev prettier@^3.3.1 ``` Commit the resulting changes to the `package.json` and `package-lock.json` files.