From 6e12ce17fbde020493a9f25682467c7f6a28ec00 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 16 Sep 2025 05:37:42 -0700 Subject: [PATCH 1/3] Update `flake8` 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-python-task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-templates/check-python-task.md b/workflow-templates/check-python-task.md index 3e5cc95d..60aff3fe 100644 --- a/workflow-templates/check-python-task.md +++ b/workflow-templates/check-python-task.md @@ -48,7 +48,7 @@ Commit the resulting changes to the `go.mod` and `go.sum` files. Add the tool dependencies using this command: ``` -task poetry:install && poetry add --dev "black@^25.1.0" "flake8@^7.2.0" "pep8-naming@^0.15.1" +task poetry:install && poetry add --dev "black@^25.1.0" "flake8@^7.3.0" "pep8-naming@^0.15.1" ``` Commit the resulting changes to the `pyproject.toml` and `poetry.lock` files. From 59f95fdc84979fcfc433933d13e07274ad09605c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Sep 2025 12:34:11 +0000 Subject: [PATCH 2/3] Bump prettier from 3.5.3 to 3.6.2 Bumps [prettier](https://github.com/prettier/prettier) from 3.5.3 to 3.6.2. - [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.5.3...3.6.2) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.6.2 dependency-type: direct:development update-type: version-update:semver-minor ... 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 ea3bc8bc..f6a5d799 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "github-label-sync": "3.0.0", "markdown-link-check": "^3.13.7", "markdownlint-cli": "^0.45.0", - "prettier": "^3.5.3", + "prettier": "^3.6.2", "prettier-plugin-toml": "^2.0.5" }, "engines": { @@ -4852,11 +4852,10 @@ } }, "node_modules/prettier": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", - "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", + "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", "dev": true, - "license": "MIT", "bin": { "prettier": "bin/prettier.cjs" }, @@ -9646,9 +9645,9 @@ "dev": true }, "prettier": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", - "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", + "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", "dev": true }, "prettier-plugin-toml": { diff --git a/package.json b/package.json index 5f244ce3..aa739def 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "github-label-sync": "3.0.0", "markdown-link-check": "^3.13.7", "markdownlint-cli": "^0.45.0", - "prettier": "^3.5.3", + "prettier": "^3.6.2", "prettier-plugin-toml": "^2.0.5" }, "dependencies": { From 78fc64496c1f42485b36eb55e34adbcdefd93571 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 16 Sep 2025 05:37:17 -0700 Subject: [PATCH 3/3] 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 adcbede1..e1c67336 100644 --- a/workflow-templates/check-prettier-formatting-task.md +++ b/workflow-templates/check-prettier-formatting-task.md @@ -57,7 +57,7 @@ Commit the resulting changes to the `go.mod` and `go.sum` files. Add the dependencies by running this command: ```text -npm install --save-dev prettier@^3.5.3 +npm install --save-dev prettier@^3.6.2 ``` Commit the resulting changes to the `package.json` and `package-lock.json` files.