Package: ruby-kubeclient / 4.13.0-2

Metadata

Package Version Patches format
ruby-kubeclient 4.13.0-2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
remove bundler.patch | (download)

test/test_helper.rb | 3 1 + 2 - 0 !
1 file changed, 1 insertion(+), 2 deletions(-)

 don't use bundler for tests

remove git in gemspec.patch | (download)

kubeclient.gemspec | 8 4 + 4 - 0 !
1 file changed, 4 insertions(+), 4 deletions(-)

 remove git usage in gemspec

disable expired certs test.patch | (download)

test/test_config.rb | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

---
0004 Add support to Minitest 5.22.patch | (download)

test/test_common.rb | 2 1 + 1 - 0 !
test/test_common_url_handling.rb | 2 1 + 1 - 0 !
test/test_component_status.rb | 2 1 + 1 - 0 !
test/test_config.rb | 2 1 + 1 - 0 !
test/test_endpoint.rb | 2 1 + 1 - 0 !
test/test_exec_credentials.rb | 2 1 + 1 - 0 !
test/test_gcp_command_credentials.rb | 2 1 + 1 - 0 !
test/test_google_application_default_credentials.rb | 2 1 + 1 - 0 !
test/test_guestbook_go.rb | 2 1 + 1 - 0 !
test/test_helper.rb | 2 1 + 1 - 0 !
test/test_kubeclient.rb | 2 1 + 1 - 0 !
test/test_limit_range.rb | 2 1 + 1 - 0 !
test/test_missing_methods.rb | 2 1 + 1 - 0 !
test/test_namespace.rb | 2 1 + 1 - 0 !
test/test_node.rb | 2 1 + 1 - 0 !
test/test_oidc_auth_provider.rb | 2 1 + 1 - 0 !
test/test_persistent_volume.rb | 2 1 + 1 - 0 !
test/test_persistent_volume_claim.rb | 2 1 + 1 - 0 !
test/test_pod.rb | 2 1 + 1 - 0 !
test/test_pod_log.rb | 2 1 + 1 - 0 !
test/test_process_template.rb | 2 1 + 1 - 0 !
test/test_real_cluster.rb | 2 1 + 1 - 0 !
test/test_replication_controller.rb | 2 1 + 1 - 0 !
test/test_resource_list_without_kind.rb | 2 1 + 1 - 0 !
test/test_resource_quota.rb | 2 1 + 1 - 0 !
test/test_secret.rb | 2 1 + 1 - 0 !
test/test_security_context_constraint.rb | 2 1 + 1 - 0 !
test/test_service.rb | 2 1 + 1 - 0 !
test/test_service_account.rb | 2 1 + 1 - 0 !
test/test_watch.rb | 2 1 + 1 - 0 !
30 files changed, 30 insertions(+), 30 deletions(-)

 add support to minitest 5.22

relax recursive open struct.patch | (download)

kubeclient.gemspec | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

---
mocha 3.patch | (download)

test/test_config.rb | 26 15 + 11 - 0 !
1 file changed, 15 insertions(+), 11 deletions(-)

 tests: fix mocha 3+ strict keyword-argument matching in auth provider tests
 With Mocha >= 3.0 (and Ruby 3+) strict_keyword_argument_matching defaults
 to true. The real code in GcpCommandCredentials.token and
 OIDCAuthProvider.token receives a *positional Hash* argument, while the
 test expectations used bare `key => value` syntax inside .with().