Skip to content

Commit 611b765

Browse files
Merge pull request #325 from kubernetes-client/release-3.0
Release 3.0.0-beta1
2 parents 2df55ef + 15622e9 commit 611b765

File tree

6 files changed

+31
-9
lines changed

6 files changed

+31
-9
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# 3.0.0-beta1
2+
3+
* feat (#137): Introduce builder generation.
4+
* Close watches more cleanly.
5+
* Avoid use SystemClassLoader on Yaml.
6+
* Add config file persistence.
7+
* Support refresh for Azure Active Directory tokens.
8+
* Regenerate client for Kubernetes 1.11
9+
10+
11+
# 2.0.0
12+
13+
Changes since 1.0.0:
14+
15+
* Update Guava dependency. #301
16+
* Added OSGi support and updated plugins #291 #292
17+
* Client overwriting my app's logback configuration #276 #284
18+
* Support equals() for IntOrString #283
19+
* Close the response body in the case of error. #281
20+
* Add a warning and an exception if a watch is created with debugging enabled. #280
21+
* Update to 1.10 API.
22+
123
# 1.0.0
224
* Fix a bug with HTML escaping byte arrays (#240)
325
* Fix a bug with YAML parsing IntOrString types (#242)

examples/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>io.kubernetes</groupId>
44
<artifactId>client-java-examples</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0-beta2-SNAPSHOT</version>
66
<packaging>bundle</packaging>
77
<name>client-java-examples</name>
88
<url>https://github.com/kubernetes-client/java</url>
99
<parent>
1010
<groupId>io.kubernetes</groupId>
1111
<artifactId>client-java-parent</artifactId>
12-
<version>3.0.0-SNAPSHOT</version>
12+
<version>3.0.0-beta2-SNAPSHOT</version>
1313
</parent>
1414
<dependencies>
1515
<dependency>

kubernetes/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>client-java-api</artifactId>
55
<packaging>bundle</packaging>
66
<name>client-java-api</name>
7-
<version>3.0.0-SNAPSHOT</version>
7+
<version>3.0.0-beta2-SNAPSHOT</version>
88
<url>https://github.com/kubernetes-client/java</url>
99
<description>Swagger Java</description>
1010
<prerequisites>
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>io.kubernetes</groupId>
1616
<artifactId>client-java-parent</artifactId>
17-
<version>3.0.0-SNAPSHOT</version>
17+
<version>3.0.0-beta2-SNAPSHOT</version>
1818
</parent>
1919

2020
<build>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<artifactId>client-java-parent</artifactId>
44
<groupId>io.kubernetes</groupId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0-beta2-SNAPSHOT</version>
66
<packaging>pom</packaging>
77
<name>Kubernetes Client API</name>
88
<url>https://github.com/kubernetes-client/java</url>

proto/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>io.kubernetes</groupId>
44
<artifactId>client-java-proto</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0-beta2-SNAPSHOT</version>
66
<packaging>bundle</packaging>
77
<name>client-java-proto</name>
88
<url>https://github.com/kubernetes-client/java</url>
99

1010
<parent>
1111
<groupId>io.kubernetes</groupId>
1212
<artifactId>client-java-parent</artifactId>
13-
<version>3.0.0-SNAPSHOT</version>
13+
<version>3.0.0-beta2-SNAPSHOT</version>
1414
</parent>
1515

1616
<dependencies>

util/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>io.kubernetes</groupId>
44
<artifactId>client-java</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0-beta2-SNAPSHOT</version>
66
<packaging>bundle</packaging>
77
<name>client-java</name>
88
<url>https://github.com/kubernetes-client/java</url>
99
<parent>
1010
<groupId>io.kubernetes</groupId>
1111
<artifactId>client-java-parent</artifactId>
12-
<version>3.0.0-SNAPSHOT</version>
12+
<version>3.0.0-beta2-SNAPSHOT</version>
1313
</parent>
1414
<dependencies>
1515
<dependency>

0 commit comments

Comments
 (0)