From 860eb85fd5b11922fc54720dd0e13547716abcbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Dec 2022 10:36:07 +0000 Subject: [PATCH 1/2] Bump prettier from 2.8.0 to 2.8.1 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.0 to 2.8.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/2.8.0...2.8.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... 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 4226771e..0cabead8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "github-label-sync": "2.2.0", "markdown-link-check": "^3.10.3", "markdownlint-cli": "^0.32.2", - "prettier": "^2.8.0" + "prettier": "^2.8.1" } }, "node_modules/@eslint/eslintrc": { @@ -3006,9 +3006,9 @@ } }, "node_modules/prettier": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.0.tgz", - "integrity": "sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", + "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", "dev": true, "bin": { "prettier": "bin-prettier.js" @@ -5929,9 +5929,9 @@ "dev": true }, "prettier": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.0.tgz", - "integrity": "sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", + "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", "dev": true }, "progress": { diff --git a/package.json b/package.json index b66be42c..10026d3a 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "github-label-sync": "2.2.0", "markdown-link-check": "^3.10.3", "markdownlint-cli": "^0.32.2", - "prettier": "^2.8.0" + "prettier": "^2.8.1" }, "dependencies": { "js-yaml": "^4.1.0" From ea58a75cf28765d242381150244204af60569f7c Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 8 Dec 2022 05:08:23 -0800 Subject: [PATCH 2/2] Update prettier version in "Check Prettier Formatting" 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 b85d3e63..698f8abf 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@^2.8.0 +npm install --save-dev prettier@^2.8.1 ``` Commit the resulting changes to the `package.json` and `package-lock.json` files.