Release 30.0#1
Open
devorb1t wants to merge 227 commits into
Open
Conversation
added 30 commits
September 27, 2022 19:46
handly -> handle
for issue #1911 fixing load_kube_config for decoding unsafe url token
…25.0.0-snapshot-upstream-master-1665519144 Automated release of 25.0.0 snapshot upstream master 1665519144
Updated typo in example steps
Add support for using oidc CA certificate file while refreshing token
… way to allow 3.7 and below pass
mock.call_args.kwargs was added after python 3.7, switched to the old…
decoding a not safe url in load_kube_config
Updated example description
This allows to recursively convert ResourceFields to dicts. Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
changelog and README for 1.25 alpha release
update changelog and readme
In Python, when you write `import foo.bar.baz` this means that the modules would be imported and the name `foo` will be bound locally and becomes available in the module. https://docs.python.org/3/reference/simple_stmts.html#import So, doing `import kubernetes.client` leads to name `kubernetes` (not `client`) being added to the `kubernetes` module leading to a weird duplicate nesting. See: ``` >>> import kubernetes >>> kubernetes <module 'kubernetes' from 'C:\\Users\\Ark\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\kubernetes\\__init__.py'> >>> kubernetes.kubernetes <module 'kubernetes' from 'C:\\Users\\Ark\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\kubernetes\\__init__.py'> ``` We can solve this issues by using the `import ... from ...` syntax: Replace `import kubernetes.client` with `from kubernetes import client`. I see that most modules already use relative imports, so I'm using relative imports here as well: `from . import client`.
25.3 GA release changelog and README comptability matrix
Requests from outside the cluster may have stale tokens and fail with status code `401`. Signed-off-by: Alexis Zamanis <alexiszam@arrikto.com>
Requests from inside the cluster misuse the API to refresh tokens. Signed-off-by: Alexis Zamanis <alexiszam@arrikto.com>
Fix typo in timeout-settings docs URL
added 30 commits
February 28, 2024 21:00
Enable binary support for WSClient
replace utcnow with now, due to utcnow will be deprecated
Fix dynamic client watch of named resource
Bumps [helm/kind-action](https://github.com/helm/kind-action) from 1.9.0 to 1.10.0. - [Release notes](https://github.com/helm/kind-action/releases) - [Commits](helm/kind-action@v1.9.0...v1.10.0) --- updated-dependencies: - dependency-name: helm/kind-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
…ions/helm/kind-action-1.10.0 Bump helm/kind-action from 1.9.0 to 1.10.0
commented out rest_urllib_headers.diff as it caused AttributeError:
…shot-upstream-master-1716330451 Automated release of 30.0.0+snapshot upstream master 1716330451
…stream-release-30.0-1716337924 Automated release of 30.1.0a1 upstream release 30.0 1716337924
…stream-release-30.0-1716917625 Automated release of 30.1.0b1 upstream release 30.0 1716917625
…ream-release-30.0-1717619692 Automated release of 30.1.0 upstream release 30.0 1717619692
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What type of PR is this?
What this PR does / why we need it:
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Does this PR introduce a user-facing change?
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: