From 1ad574f446dce2f20305963b24a0c693174beb59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 May 2025 10:28:14 +0000 Subject: [PATCH 1/2] Bump yamllint from 1.37.0 to 1.37.1 Bumps [yamllint](https://github.com/adrienverge/yamllint) from 1.37.0 to 1.37.1. - [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.37.0...v1.37.1) --- updated-dependencies: - dependency-name: yamllint dependency-version: 1.37.1 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 27f441e2..72989035 100644 --- a/poetry.lock +++ b/poetry.lock @@ -393,14 +393,14 @@ files = [ [[package]] name = "yamllint" -version = "1.37.0" +version = "1.37.1" description = "A linter for YAML files." optional = false python-versions = ">=3.9" groups = ["dev"] files = [ - {file = "yamllint-1.37.0-py3-none-any.whl", hash = "sha256:c03ab4e79ab4af964c8eb16ac9746880fc76a3bb0ffb14925b9a55220ae7dda0"}, - {file = "yamllint-1.37.0.tar.gz", hash = "sha256:ead81921d4d87216b2528b7a055664708f9fb8267beb0c427cb706ac6ab93580"}, + {file = "yamllint-1.37.1-py3-none-any.whl", hash = "sha256:364f0d79e81409f591e323725e6a9f4504c8699ddf2d7263d8d2b539cd66a583"}, + {file = "yamllint-1.37.1.tar.gz", hash = "sha256:81f7c0c5559becc8049470d86046b36e96113637bcbe4753ecef06977c00245d"}, ] [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 = "ad52175721841af3cfa563fd599109fa78b59d8bff9a306ed4ab722fe650ebac" +content-hash = "2dcd940a0d03d7500db4318edcc1829c544633d7e6af1764067b11ad8443ddf6" diff --git a/pyproject.toml b/pyproject.toml index 07ba593d..2e0c0166 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = ["Arduino "] python = "^3.9" [tool.poetry.dev-dependencies] -yamllint = "^v1.37.0" +yamllint = "^v1.37.1" codespell = "^2.4.1" black = "^25.1" flake8 = "^7.2.0" From ee90c921b65ffee4653792a61f4eb4faf4d8106a Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 5 May 2025 03:38:17 -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 bc7019cf..29e80847 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.37.0" +poetry init --python="^3.9" --dev-dependency="yamllint@^1.37.1" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "yamllint@^1.37.0" +poetry add --dev "yamllint@^1.37.1" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.