-
Notifications
You must be signed in to change notification settings - Fork 3k
Comparing changes
Open a pull request
base repository: kubernetes/client-go
base: v0.27.12
head repository: kubernetes/client-go
compare: v0.28.0
Commits on Oct 21, 2022
-
Kubernetes-commit: fc8b4657c18a6e58b2587060ad3c862d3d2ae262
Configuration menu - View commit details
-
Copy full SHA for 0536a4e - Browse repository at this point
Copy the full SHA 0536a4eView commit details
Commits on Nov 9, 2022
-
Localize SpyWorkQueue to cloud-provider for now
Kubernetes-commit: 208af2d1d83488de933977849581207149b829ee
Configuration menu - View commit details
-
Copy full SHA for d300379 - Browse repository at this point
Copy the full SHA d300379View commit details
Commits on Jan 4, 2023
-
replaced spew.Sprintf with a util pretty print function
Kubernetes-commit: f638e2849fbddeb201b8290586a4747af99086bf
Configuration menu - View commit details
-
Copy full SHA for db3650d - Browse repository at this point
Copy the full SHA db3650dView commit details
Commits on Jan 5, 2023
-
handle event errors caused due to terminating namespaces
Create events are forbidden in terminating namespaces, use info instead of error to log the failed event. Signed-off-by: Sunil Shivanand <sunil.shivanand@statnett.no> Kubernetes-commit: 7a6d58001b7d824f92601fd246b3aad9fbb9c583
Configuration menu - View commit details
-
Copy full SHA for 0d54cf5 - Browse repository at this point
Copy the full SHA 0d54cf5View commit details
Commits on Jan 11, 2023
-
Signed-off-by: Sunil Shivanand <sunil.shivanand@statnett.no> Kubernetes-commit: 80480f8e21572cba152a4f6f171ebb5de8c6bafb
Configuration menu - View commit details
-
Copy full SHA for aea98eb - Browse repository at this point
Copy the full SHA aea98ebView commit details
Commits on Feb 16, 2023
-
Generated files for NetworkPolicyStatus removal
Kubernetes-commit: ec997d5433afc09e79376e35936a027dc2ba8713
Configuration menu - View commit details
-
Copy full SHA for 224050a - Browse repository at this point
Copy the full SHA 224050aView commit details
Commits on Mar 1, 2023
-
improve remotecommand testing fuzzing the data stream
Change-Id: I1303bc79a8c43fc4fb04bf76afcf90653ceb9e14 Kubernetes-commit: 60d25c3ed77cbd8341fc7ae984e165e7046e5c9b
Configuration menu - View commit details
-
Copy full SHA for 9ed804b - Browse repository at this point
Copy the full SHA 9ed804bView commit details
Commits on Mar 14, 2023
-
api-machinery: replace intstr.FromInt with intstr.FromInt32
This touches cases where FromInt() is used on numeric constants, or values which are already int32s, or int variables which are defined close by and can be changed to int32s with little impact. Signed-off-by: Stephen Kitt <skitt@redhat.com> Kubernetes-commit: 94410ee8078971b8894e5c400ce3fc79f02bc510
Configuration menu - View commit details
-
Copy full SHA for 20433f9 - Browse repository at this point
Copy the full SHA 20433f9View commit details
Commits on Mar 18, 2023
-
Update k8s.io/utils version to v0.0.0-20230313181309-38a27ef9d749
Steps: 1) Manualy update go.mod with new version string 2) ./hack/update-vendor.sh 3) Fixup go.sum with new package hash 4) ./hack/update-vendor.sh Kubernetes-commit: 9f46cbc6fa475c420af3ccd654d4e59606375836
Configuration menu - View commit details
-
Copy full SHA for f4ef3f8 - Browse repository at this point
Copy the full SHA f4ef3f8View commit details
Commits on Mar 22, 2023
-
Add structured alternatives to strings in client-go/tools/cache
Kubernetes-commit: ec9515a828ec3907ffc66913947adf4e8ee7b9d6
Configuration menu - View commit details
-
Copy full SHA for 42799af - Browse repository at this point
Copy the full SHA 42799afView commit details -
Added conversions to/from NamespacedName
Also renamed file to something more on-point. Kubernetes-commit: 8d92cfb13163f596feddfe1b5e734fd1ba4f6323
Configuration menu - View commit details
-
Copy full SHA for 8301a60 - Browse repository at this point
Copy the full SHA 8301a60View commit details
Commits on Mar 23, 2023
-
Replace uses of diff.ObjectDiff with cmp.Diff
ObjectDiff is already a shim over cmp.Diff, so no actual output or behavior changes Kubernetes-commit: 29c0b73d640b6e50c4f2dfeee7b07ca66a530dbd
Configuration menu - View commit details
-
Copy full SHA for 7114041 - Browse repository at this point
Copy the full SHA 7114041View commit details -
Replace uses of ObjectGoPrintDiff with cmp.Diff
ObjectGoPrintDiff is already a shim over cmp.Diff, so no actual output or behavior changes Kubernetes-commit: 9627c50ef37f3b5274486e6f5ad37b73b1b69bf0
Configuration menu - View commit details
-
Copy full SHA for c4339ee - Browse repository at this point
Copy the full SHA c4339eeView commit details -
Replace uses of ObjectReflectDiff with cmp.Diff
ObjectReflectDiff is already a shim over cmp.Diff, so no actual output or behavior changes Kubernetes-commit: bc302fa4144d21a338683cd83701661f97be4aba
Configuration menu - View commit details
-
Copy full SHA for 1255301 - Browse repository at this point
Copy the full SHA 1255301View commit details
Commits on Mar 27, 2023
-
Merge pull request #116948 from MadhavJivrajani/fix-verify-vendor
.*: update vendor dir and cleanup Kubernetes-commit: 3a46f2611503b4d8a8ab557bf2541ac9c1be695a
Configuration menu - View commit details
-
Copy full SHA for 04ef61f - Browse repository at this point
Copy the full SHA 04ef61fView commit details
Commits on Mar 28, 2023
-
openapi: Make file client more easy to re-use
A few notes about the change: 1. I need to initialize the fileclient once, in an init function, so I don't have access to `testing.T` yet. 2. I want to be able to configure the openapi files that I use 3. We already have a "cache" client that wraps another client, we don't need to re-implement caching here, one can just do: `cache.NewClient(openapitest.NewFileClient("some/path"))` to do a cached client. Or initialize it in an init/global var. Since there is still some value to use the embedded file, make an alternative constructor while using fs.FS interface to be able to manipulate both virtual and disk-based filesystems. Kubernetes-commit: 29503fd8d45bc2c9438e92936bf4111162529b40
Configuration menu - View commit details
-
Copy full SHA for 12beb34 - Browse repository at this point
Copy the full SHA 12beb34View commit details
Commits on Apr 12, 2023
-
Merge pull request #114800 from haoruan/feature-8976-spew-sprintf-ref…
…actor Capture spew.Sprintf() with all our favorite config into a util func Kubernetes-commit: d0fc9d16ce1c8ac523e9dc90e14af542b09cd3b3
Configuration menu - View commit details
-
Copy full SHA for 20bcfef - Browse repository at this point
Copy the full SHA 20bcfefView commit details -
Merge pull request #116869 from MikeSpreitzer/add-structure
Add structured alternatives to strings in client-go/tools/cache Kubernetes-commit: 5052d31d6582c58cd82ccba084b11590fc82ba47
Configuration menu - View commit details
-
Copy full SHA for 8005e0d - Browse repository at this point
Copy the full SHA 8005e0dView commit details
Commits on Apr 13, 2023
-
replace spew methods with dump methods
Kubernetes-commit: c4e1b01416ec05e6a520a181d4ce3b4333adb4e4
Configuration menu - View commit details
-
Copy full SHA for ef522cc - Browse repository at this point
Copy the full SHA ef522ccView commit details -
Merge pull request #116896 from thockin/apimachinery_util_diff_cleanup
apimachinery util/diff cleanups Kubernetes-commit: c3e3ff989ac9abfb0dc3b958fcb698fcce952f8c
Configuration menu - View commit details
-
Copy full SHA for 46f9639 - Browse repository at this point
Copy the full SHA 46f9639View commit details -
dependencies: update gh/Azure/auto-test/{adal,validation}
Signed-off-by: Humble Chirammal <humble.devassy@gmail.com> Kubernetes-commit: 6d13cad2cf56d0bad77a6410a0c36b2cf8f0df57
Configuration menu - View commit details
-
Copy full SHA for 8b888b0 - Browse repository at this point
Copy the full SHA 8b888b0View commit details -
Merge pull request #117285 from humblec/azure-go-autorest
dependencies: update gh/Azure/auto-test/{adal,validation} Kubernetes-commit: ba0a8f9cceb513bc36bd803e9bf8f9a8c3912ff2
Configuration menu - View commit details
-
Copy full SHA for 4e89310 - Browse repository at this point
Copy the full SHA 4e89310View commit details
Commits on Apr 14, 2023
-
Merge pull request #117278 from haoruan/cleanup/replace-spew-with-dump
replace spew methods with dump methods Kubernetes-commit: d060d487dcd74bc1a557f9378035696db40c64c2
Configuration menu - View commit details
-
Copy full SHA for 1dc92da - Browse repository at this point
Copy the full SHA 1dc92daView commit details -
Dependencies Update google.golang.org/protobuf v1.28.1 to v1.30.0
Kubernetes-commit: 8efeb5afcfd006a48d6e1263a5cf8de3284797df
Configuration menu - View commit details
-
Copy full SHA for 1aeffb0 - Browse repository at this point
Copy the full SHA 1aeffb0View commit details -
Dependencies Update golang.org/x/tools v0.7.0 to v0.8.0
Kubernetes-commit: 6f90c5363301c9417a3a806cac69f3e79e66a66c
Configuration menu - View commit details
-
Copy full SHA for 23557e1 - Browse repository at this point
Copy the full SHA 23557e1View commit details
Commits on Apr 17, 2023
-
Dependencies Update golang.org/x/timet 90d013bbcef8 to v0.3.0
Kubernetes-commit: 4d73864026cde02f4a1cdf9e889a124174d38e38
Configuration menu - View commit details
-
Copy full SHA for 34d738f - Browse repository at this point
Copy the full SHA 34d738fView commit details
Commits on Apr 19, 2023
-
Merge pull request #117399 from mohitsharma-in/update/golang_time
dependencies : Update golang.org/x/time v0.3.0 Kubernetes-commit: cf89189ca3a3e5d280ba1cb09998c4b88dc1e127
Configuration menu - View commit details
-
Copy full SHA for c84a377 - Browse repository at this point
Copy the full SHA c84a377View commit details -
Signed-off-by: ArkaSaha30 <arkasaha30@gmail.com> Kubernetes-commit: 2cd23c8b17c93f75a30cf3f651369d7a932aef2d
Configuration menu - View commit details
-
Copy full SHA for 061a002 - Browse repository at this point
Copy the full SHA 061a002View commit details -
Signed-off-by: ArkaSaha30 <arkasaha30@gmail.com> Kubernetes-commit: 1d15354ccb56b2e367cc403777255125ef65b7df
Configuration menu - View commit details
-
Copy full SHA for e367d8e - Browse repository at this point
Copy the full SHA e367d8eView commit details
Commits on Apr 20, 2023
-
Merge pull request #117352 from mohitsharma-in/update/golang_x_tools
dependencies: Update golang.org/x/tools to v0.8.0 Kubernetes-commit: bda7e8979088614c60ee21fd2602d00786e2ea78
Configuration menu - View commit details
-
Copy full SHA for 861f50a - Browse repository at this point
Copy the full SHA 861f50aView commit details
Commits on Apr 21, 2023
-
Merge pull request #116972 from apelisse/update-openapi-file-client
openapi: Make file client more easy to re-use Kubernetes-commit: 065428befa06c1d99deb4160b4490a8bf1a377ee
Configuration menu - View commit details
-
Copy full SHA for bc93074 - Browse repository at this point
Copy the full SHA bc93074View commit details
Commits on Apr 24, 2023
-
chore: update cgroups and ttrpc versions
- update github.com/containerd/cgroups to v1.1.0 - update github.com/containerd/ttrpc to v1.2.1 Signed-off-by: Akhil Mohan <akhilerm@gmail.com> Kubernetes-commit: 76fe41a996ec78d9774e1f1ca9d1d7ec40522f98
Configuration menu - View commit details
-
Copy full SHA for a9d165e - Browse repository at this point
Copy the full SHA a9d165eView commit details -
Merge pull request #117482 from ArkaSaha30/bump-go-logr
dependencies:update `github.com/go-logr/logr` to v1.2.4 Kubernetes-commit: f77e570fbadbf91c05840a1f6f9b6aec860de400
Configuration menu - View commit details
-
Copy full SHA for e846cbe - Browse repository at this point
Copy the full SHA e846cbeView commit details -
Merge pull request #117483 from ArkaSaha30/bump-gofuzz
dependencies:update `github.com/google/gofuzz` to v1.2.0 Kubernetes-commit: 7fbe3cba41915cad69f376eb6b3d3a326d51cd11
Configuration menu - View commit details
-
Copy full SHA for d2b8784 - Browse repository at this point
Copy the full SHA d2b8784View commit details -
Remove support for EndpointsLeases and ConfigMapsLeases lock from lea…
…der election Kubernetes-commit: 2bd42061b6e8035c3def54545ccc4baf95bd6586
Configuration menu - View commit details
-
Copy full SHA for 27bbe76 - Browse repository at this point
Copy the full SHA 27bbe76View commit details
Commits on Apr 25, 2023
-
Merge pull request #117350 from mohitsharma-in/update/google-golang-p…
…rotobuf Dependencies: Update google.golang.org/protobuf v1.30.0 Kubernetes-commit: b925ce244638187dbf0f502ecb6e02db149970aa
Configuration menu - View commit details
-
Copy full SHA for b26f379 - Browse repository at this point
Copy the full SHA b26f379View commit details -
Refactors discovery content-type and helper functions
Kubernetes-commit: 2af662b05fe591083a029520e6da5b077cad8e31
Configuration menu - View commit details
-
Copy full SHA for 5c4e72c - Browse repository at this point
Copy the full SHA 5c4e72cView commit details -
Fix LocationOfOrigin shows up unexpectedly
Kubernetes-commit: 4d9261c7567a7498d16754b7c5bf3b9ea834e5a6
Configuration menu - View commit details
-
Copy full SHA for 1ec6a37 - Browse repository at this point
Copy the full SHA 1ec6a37View commit details -
Merge pull request #117558 from wojtek-t/remove_multi_lock
Remove support for EndpointsLeases and ConfigMapsLeases lock from leader election Kubernetes-commit: ff1e3ee26e94597f386b75fb60c5e2af6535a5be
Configuration menu - View commit details
-
Copy full SHA for 6c514ab - Browse repository at this point
Copy the full SHA 6c514abView commit details
Commits on Apr 26, 2023
-
stop watcher when error occurs
Kubernetes-commit: da3e7e3781650024e4cc7cb65082908c531e8efa
Configuration menu - View commit details
-
Copy full SHA for 5d5619d - Browse repository at this point
Copy the full SHA 5d5619dView commit details -
Merge pull request #116191 from aojea/spdy_passthrugh
improve remotecommand testing fuzzing the data stream Kubernetes-commit: 928adb27abf755b402be7594844e3c248b0b7670
Configuration menu - View commit details
-
Copy full SHA for 6aab784 - Browse repository at this point
Copy the full SHA 6aab784View commit details -
Merge pull request #117571 from seans3/agg-discovery-fix
Fixes bug when extra params added to discovery content-type Kubernetes-commit: c5c2806e233b9c5ff49ac4ad0c6d734b530771de
Configuration menu - View commit details
-
Copy full SHA for 68394bf - Browse repository at this point
Copy the full SHA 68394bfView commit details
Commits on Apr 27, 2023
-
Merge pull request #117534 from Mskxn/fix_watcher
stop watcher when error occurs Kubernetes-commit: 041bb9a56cb56ebf4ff9305f435a71c135bfc19c
Configuration menu - View commit details
-
Copy full SHA for f775857 - Browse repository at this point
Copy the full SHA f775857View commit details
Commits on Apr 29, 2023
-
Use absolute path instead requestURI in openapiv3 discovery (#117495)
Currently, openapiv3 discovery uses requestURI to discover resources. However, that does not work when the rest endpoint contains prefixes (e.g. `http://localhost/test-endpoint/`). Because requestURI overwrites prefixes also in rest endpoint (e.g. `http://localhost/openapiv3/apis/apps/v1`). Since `absPath` keeps the prefixes in the rest endpoint, this PR changes to absPath instead requestURI. Kubernetes-commit: d94c733ee2bfaedd9a1c45d58fbd56c99403c94d
Configuration menu - View commit details
-
Copy full SHA for fc96cec - Browse repository at this point
Copy the full SHA fc96cecView commit details
Commits on May 1, 2023
-
Kubernetes-commit: d0677f528c03ff5556830bc2e9b9c40824b160ee
Configuration menu - View commit details
-
Copy full SHA for 3b78b11 - Browse repository at this point
Copy the full SHA 3b78b11View commit details -
Update kube-openapi to fix race
Kubernetes-commit: de34540248a6cd4335a6aedd3f1d24c608d59c86
Configuration menu - View commit details
-
Copy full SHA for fa6d692 - Browse repository at this point
Copy the full SHA fa6d692View commit details -
Merge pull request #117253 from akhilerm/update-containerd-dependencies
dependencies: update cgroups, ttrpc, ebpf versions Kubernetes-commit: d33853edcfdb521c80cd9a659ed02b7fe52b40f4
Configuration menu - View commit details
-
Copy full SHA for 741627a - Browse repository at this point
Copy the full SHA 741627aView commit details -
Merge pull request #117576 from wzshiming/fix/clientcmd-localtion-of-…
…origin Fix LocationOfOrigin shows up unexpectedly Kubernetes-commit: 34d6b92a8ceaf0b2243dd62b1f3517878fc75e35
Configuration menu - View commit details
-
Copy full SHA for 337feac - Browse repository at this point
Copy the full SHA 337feacView commit details -
Merge pull request #117623 from skitt/intstr-fromint32-api-machinery
API machinery: use new intstr functions Kubernetes-commit: 32703dec0faa19762f3cde83cfefae981de62027
Configuration menu - View commit details
-
Copy full SHA for 757bbef - Browse repository at this point
Copy the full SHA 757bbefView commit details -
Merge pull request #117705 from Jefftree/update-openapi-fix-race
Update kube-openapi to fix race Kubernetes-commit: 3f8c4794eadf8aadd8a5bcb0b875bf0af5c2020b
Configuration menu - View commit details
-
Copy full SHA for 10f4062 - Browse repository at this point
Copy the full SHA 10f4062View commit details
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.