From a3e06d7fb0a43236901b548cff99818a97d61fad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 10:33:07 +0000 Subject: [PATCH 1/2] Bump yamllint from 1.36.0 to 1.36.2 Bumps [yamllint](https://github.com/adrienverge/yamllint) from 1.36.0 to 1.36.2. - [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.36.0...v1.36.2) --- updated-dependencies: - dependency-name: yamllint dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- poetry.lock | 8 ++++---- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/poetry.lock b/poetry.lock index 8bd6b3b2..25c35e1c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -393,14 +393,14 @@ files = [ [[package]] name = "yamllint" -version = "1.36.0" +version = "1.36.2" description = "A linter for YAML files." optional = false python-versions = ">=3.9" groups = ["dev"] files = [ - {file = "yamllint-1.36.0-py3-none-any.whl", hash = "sha256:22ab6a7db9d5f0954bd7a50ef70a41c1465c61f955893070b0767c0ec6693b7b"}, - {file = "yamllint-1.36.0.tar.gz", hash = "sha256:3835a65994858679ea06fd998dd968c3f71935cd93742990405999d888e21130"}, + {file = "yamllint-1.36.2-py3-none-any.whl", hash = "sha256:6ba19800513d86c987ed3cf48c0aba4e82b3624596e1dab55723b3733e11f35c"}, + {file = "yamllint-1.36.2.tar.gz", hash = "sha256:c9ccc818659736e7b13f7e2f9c3c9bb9ac77445be13e789e7d843e92cb8428ef"}, ] [package.dependencies] @@ -413,4 +413,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "sphinx"] [metadata] lock-version = "2.1" python-versions = "^3.9" -content-hash = "f1081b88352da7ea71ce3cdaffcf03f923d7c6109826de7bbca17cfe450796ae" +content-hash = "2c1da24331f6f6bf7ae7234858a56a87d0d534d8b4597562b008302eb0b3b682" diff --git a/pyproject.toml b/pyproject.toml index 19a847ed..92b7c64c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = ["Arduino "] python = "^3.9" [tool.poetry.dev-dependencies] -yamllint = "^v1.36.0" +yamllint = "^v1.36.2" codespell = "^2.4.1" black = "^25.1" flake8 = "^7.1.2" From 2e5c739a385b4a7e910378a4df8cf9e2e649e1b3 Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 21 Mar 2025 06:11:53 -0700 Subject: [PATCH 2/2] Update `yamllint` 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-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 7ddf9f2e..c9d2545a 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.36.0" +poetry init --python="^3.9" --dev-dependency="yamllint@^1.36.2" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "yamllint@^1.36.0" +poetry add --dev "yamllint@^1.36.2" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.