diff --git a/README.md b/README.md index c109ca53..1ff3fb29 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,8 @@ You are encouraged to take a look! The microBean Helm project's version number tracks the Helm and Tiller release it works with, together with its own version semantics. For -example, a microBean Helm version of `2.12.3.0.0.1` means that the Helm -version it tracks is `2.12.3` and the (SemVer-compatible) version of +example, a microBean Helm version of `2.16.2.0.0.1` means that the Helm +version it tracks is `2.16.2` and the (SemVer-compatible) version of the non-generated code that is part of _this_ project is `0.0.1`. # Installation @@ -38,7 +38,7 @@ like this: org.microbean microbean-helm - 2.12.3.0.0.1 + 2.16.2.0.0.1 jar diff --git a/pom.xml b/pom.xml index 06adcfeb..1a6175cb 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.microbean microbean-helm - 2.12.3.0.0.1-SNAPSHOT + 2.16.2.0.0.1-SNAPSHOT org.microbean @@ -58,42 +58,42 @@ com.google.protobuf protobuf-java - 3.8.0 + 3.11.4 jar io.grpc grpc-netty - 1.21.0 + 1.27.2 jar io.grpc grpc-protobuf - 1.21.0 + 1.27.2 jar io.grpc grpc-services - 1.21.0 + 1.27.2 jar io.grpc grpc-stub - 1.21.0 + 1.27.2 jar io.fabric8 kubernetes-client - 4.3.0 + 4.8.0 jar @@ -101,7 +101,7 @@ io.netty netty-tcnative-boringssl-static - 2.0.25.Final + 2.0.29.Final jar ${os.detected.classifier} @@ -116,7 +116,7 @@ org.microbean microbean-development-annotations - 0.1.3 + 0.2.4 jar @@ -130,7 +130,7 @@ org.yaml snakeyaml - 1.24 + 1.26 jar @@ -334,7 +334,7 @@ ${project.build.directory}/generated-sources/helm scm:git:https://github.com/kubernetes/helm.git _proto/hapi/** - v2.12.3 + v2.16.2 tag @@ -382,10 +382,10 @@ true - io.grpc:protoc-gen-grpc-java:1.21.0:exe:${os.detected.classifier} + io.grpc:protoc-gen-grpc-java:1.27.2:exe:${os.detected.classifier} grpc-java ${project.build.directory}/generated-sources/helm/_proto - com.google.protobuf:protoc:3.8.0:exe:${os.detected.classifier} + com.google.protobuf:protoc:3.11.4:exe:${os.detected.classifier} @@ -398,7 +398,7 @@ <a href="${project.url}" target="_parent"><span style="font-family:Lobster, cursive;">µb</span> ${project.artifactId}</a> ${project.version} <a href="https://travis-ci.org/microbean/${project.artifactId}" target="_parent"><img src="https://travis-ci.org/microbean/${project.artifactId}.svg?branch=master"></a> - https://www.grpc.io/grpc-java/javadoc/,https://developers.google.com/protocol-buffers/docs/reference/java/,https://google.github.io/guava/releases/19.0/api/docs/,https://microbean.github.io/microbean-kubernetes/apidocs/,https://microbean.github.io/microbean-development-annotations/apidocs/,http://static.javadoc.io/com.github.zafarkhaja/java-semver/0.9.0,https://static.javadoc.io/io.fabric8/kubernetes-client/4.3.0,https://static.javadoc.io/io.fabric8/kubernetes-model/4.3.0,https://static.javadoc.io/org.kamranzafar/jtar/2.3,https://static.javadoc.io/org.yaml/snakeyaml/1.24 + https://www.grpc.io/grpc-java/javadoc/,https://developers.google.com/protocol-buffers/docs/reference/java/,https://google.github.io/guava/releases/19.0/api/docs/,https://microbean.github.io/microbean-kubernetes/apidocs/,https://microbean.github.io/microbean-development-annotations/apidocs/,http://static.javadoc.io/com.github.zafarkhaja/java-semver/0.9.0,https://static.javadoc.io/io.fabric8/kubernetes-client/4.8.0,https://static.javadoc.io/io.fabric8/kubernetes-model/4.8.0,https://static.javadoc.io/org.kamranzafar/jtar/2.3,https://static.javadoc.io/org.yaml/snakeyaml/1.26 css/stylesheet.css diff --git a/src/main/java/org/microbean/helm/Tiller.java b/src/main/java/org/microbean/helm/Tiller.java index f1e05f1d..e9b92d09 100644 --- a/src/main/java/org/microbean/helm/Tiller.java +++ b/src/main/java/org/microbean/helm/Tiller.java @@ -87,7 +87,7 @@ public class Tiller implements ConfigAware, Closeable { * *

This field is never {@code null}.

*/ - public static final String VERSION = "2.12.3"; + public static final String VERSION = "2.16.2"; /** * The Kubernetes namespace into which Tiller server instances are @@ -520,7 +520,7 @@ protected ManagedChannel buildChannel(final LocalPortForward portForward) { .idleTimeout(5L, TimeUnit.SECONDS) .keepAliveTime(30L, TimeUnit.SECONDS) .maxInboundMessageSize(MAX_MESSAGE_SIZE) - .usePlaintext(true) + .usePlaintext() .build(); } diff --git a/src/main/java/org/microbean/helm/TillerInstaller.java b/src/main/java/org/microbean/helm/TillerInstaller.java index 3eb08ff8..eabf4fba 100644 --- a/src/main/java/org/microbean/helm/TillerInstaller.java +++ b/src/main/java/org/microbean/helm/TillerInstaller.java @@ -128,7 +128,7 @@ public class TillerInstaller { /** * The version of Tiller to install. */ - public static final String VERSION = "2.12.3"; + public static final String VERSION = "2.16.2"; /* * Derivative static fields. diff --git a/src/main/java/org/microbean/helm/package-info.java b/src/main/java/org/microbean/helm/package-info.java index c0b6eaba..61180f4b 100644 --- a/src/main/java/org/microbean/helm/package-info.java +++ b/src/main/java/org/microbean/helm/package-info.java @@ -26,7 +26,7 @@ * * @see org.microbean.helm.ReleaseManager */ -@Version("2.12.3.0.0.1") +@Version("2.16.2.0.0.1") package org.microbean.helm; import org.microbean.development.annotation.Version;