From 3dbf1958bc953c1ffd742b2d68177334f3362b55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Sep 2023 03:21:13 +0000 Subject: [PATCH 1/2] Bump codecov/codecov-action from 3 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ab6e49932..eebf07465 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -44,7 +44,7 @@ jobs: - name: Upload coverage to Codecov if: "matrix.use_coverage" - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: fail_ci_if_error: false verbose: true From af68284e6e41f4bbe95f72b712bceb09888cce3e Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Wed, 4 Oct 2023 01:31:21 -0700 Subject: [PATCH 2/2] Drop urllib3 upper bound This was added in https://github.com/kubernetes-client/python/commit/27459d5c123c20b096d838ebb98e735134a2a981. Note that google-auth now requires urllib3>=2 in https://github.com/googleapis/google-auth-library-python/pull/1389 (I'm also not sure that I follow the logic in https://github.com/kubernetes-client/python/pull/2105, since dependency resolvers will be able to work it out) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 87b7841cc..c78edbdac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,4 @@ websocket-client>=0.32.0,!=0.40.0,!=0.41.*,!=0.42.* # LGPLv2+ requests # Apache-2.0 requests-oauthlib # ISC oauthlib>=3.2.2 # BSD -urllib3>=1.24.2,<2.0 # MIT +urllib3>=1.24.2 # MIT