From ffebd3dafb45cbb7e4d03ab77a54c76c94491b1e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Apr 2025 10:42:00 +0000 Subject: [PATCH 1/4] chore(deps-dev): bump httpcore from 1.0.8 to 1.0.9 Bumps [httpcore](https://github.com/encode/httpcore) from 1.0.8 to 1.0.9. - [Release notes](https://github.com/encode/httpcore/releases) - [Changelog](https://github.com/encode/httpcore/blob/master/CHANGELOG.md) - [Commits](https://github.com/encode/httpcore/compare/1.0.8...1.0.9) --- updated-dependencies: - dependency-name: httpcore dependency-version: 1.0.9 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index ab269977fe2..8f16ace3c1f 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -23,7 +23,7 @@ frozenlist==1.6.0 h11==0.14.0 h2==4.2.0 hpack==4.1.0 -httpcore==1.0.8 +httpcore==1.0.9 httpx==0.28.1 hyperframe==6.1.0 idna==3.10 From 1f5814e69118354982a962b01a15136a818cdcd8 Mon Sep 17 00:00:00 2001 From: rkodev <43806892+rkodev@users.noreply.github.com> Date: Tue, 29 Apr 2025 16:43:54 +0300 Subject: [PATCH 2/4] fix: update h11 to fix comflicting dependecies --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 8f16ace3c1f..3c5f74ab40d 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -20,7 +20,7 @@ docutils==0.20.1 flit==3.12.0 flit_core==3.12.0 frozenlist==1.6.0 -h11==0.14.0 +h11==0.16.0 h2==4.2.0 hpack==4.1.0 httpcore==1.0.9 From 5af070070636247c1c89b4ef03ceaf2373376b18 Mon Sep 17 00:00:00 2001 From: rkodev <43806892+rkodev@users.noreply.github.com> Date: Tue, 29 Apr 2025 16:49:27 +0300 Subject: [PATCH 3/4] fix: only run code ql for changes in python files --- .github/workflows/codeql.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 600e2c0bea3..083fed73366 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -14,9 +14,12 @@ name: "CodeQL" on: push: branches: [ "main" ] + paths: + - '**/*.py' pull_request: - # The branches below must be a subset of the branches above branches: [ "main" ] + paths: + - '**/*.py' schedule: - cron: '1 * * * 1' From 79c8f386b3407698da56c6b03c2ed3f258efc293 Mon Sep 17 00:00:00 2001 From: rkodev <43806892+rkodev@users.noreply.github.com> Date: Tue, 29 Apr 2025 16:51:51 +0300 Subject: [PATCH 4/4] undo codeql check --- .github/workflows/codeql.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 083fed73366..6462215acbf 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -14,12 +14,8 @@ name: "CodeQL" on: push: branches: [ "main" ] - paths: - - '**/*.py' pull_request: branches: [ "main" ] - paths: - - '**/*.py' schedule: - cron: '1 * * * 1'