From 22592c775f6f45526a19888d951d047d47a669af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Sep 2022 10:21:42 +0000 Subject: [PATCH 1/2] Bump yamllint from 1.27.1 to 1.28.0 Bumps [yamllint](https://github.com/adrienverge/yamllint) from 1.27.1 to 1.28.0. - [Release notes](https://github.com/adrienverge/yamllint/releases) - [Changelog](https://github.com/adrienverge/yamllint/blob/master/CHANGELOG.rst) - [Commits](https://github.com/adrienverge/yamllint/compare/v1.27.1...v1.28.0) --- updated-dependencies: - dependency-name: yamllint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- poetry.lock | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/poetry.lock b/poetry.lock index 915c0e35..83e5c0af 100644 --- a/poetry.lock +++ b/poetry.lock @@ -276,7 +276,7 @@ python-versions = "*" [[package]] name = "yamllint" -version = "1.27.1" +version = "1.28.0" description = "A linter for YAML files." category = "dev" optional = false @@ -290,7 +290,7 @@ setuptools = "*" [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "21f4a946429e99cdf758e632cc58239bc77118fa075607fdef2c8822e8cbd5e8" +content-hash = "717b8e0a332f9271206a33dc6a42accecce599ad93abc9e035f3e48b3e4e0936" [metadata.files] attrs = [ @@ -447,5 +447,5 @@ typing-extensions = [ {file = "typing_extensions-3.10.0.2.tar.gz", hash = "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e"}, ] yamllint = [ - {file = "yamllint-1.27.1.tar.gz", hash = "sha256:e688324b58560ab68a1a3cff2c0a474e3fed371dfe8da5d1b9817b7df55039ce"}, + {file = "yamllint-1.28.0.tar.gz", hash = "sha256:9e3d8ddd16d0583214c5fdffe806c9344086721f107435f68bad990e5a88826b"}, ] diff --git a/pyproject.toml b/pyproject.toml index 27985286..25a541e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = ["Arduino "] python = "^3.9" [tool.poetry.dev-dependencies] -yamllint = "^v1.27.1" +yamllint = "^v1.28.0" codespell = "^2.2.1" black = "^22.8" flake8 = "^5.0.4" From ef441f214fb819635486a9178960b0e202cb9b79 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 13 Sep 2022 09:20:25 -0700 Subject: [PATCH 2/2] Update yamllint version in "Check YAML" template installation docs yamllint@1.28.0 is now the version used as standard in all Arduino Tooling projects. --- workflow-templates/check-yaml-task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow-templates/check-yaml-task.md b/workflow-templates/check-yaml-task.md index e19fedd3..8a1445e7 100644 --- a/workflow-templates/check-yaml-task.md +++ b/workflow-templates/check-yaml-task.md @@ -33,14 +33,14 @@ https://python-poetry.org/docs/#installation If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands: ``` -poetry init --python="^3.9" --dev-dependency="yamllint@^1.26.3" +poetry init --python="^3.9" --dev-dependency="yamllint@^1.28.0" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "yamllint@^1.26.3" +poetry add --dev "yamllint@^1.28.0" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.