diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ba514ffea7..2e3e43a540 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -118,12 +118,12 @@ To use a local build of the `jib-gradle-plugin`: mavenCentral() } dependencies { - classpath 'com.google.cloud.tools:jib-gradle-plugin:2.0.1-SNAPSHOT' + classpath 'com.google.cloud.tools:jib-gradle-plugin:2.1.1-SNAPSHOT' } } plugins { - // id 'com.google.cloud.tools.jib' version '2.0.0' + // id 'com.google.cloud.tools.jib' version '2.1.0' } // Applies the java plugin after Jib to make sure it works in this order. diff --git a/examples/dropwizard/pom.xml b/examples/dropwizard/pom.xml index f9e9ff0657..78627a19fc 100644 --- a/examples/dropwizard/pom.xml +++ b/examples/dropwizard/pom.xml @@ -26,7 +26,7 @@ 1.5.0 /app - 2.0.0 + 2.1.0 diff --git a/examples/helloworld/build.gradle b/examples/helloworld/build.gradle index 5a629b9d64..4a0023760c 100644 --- a/examples/helloworld/build.gradle +++ b/examples/helloworld/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'com.google.cloud.tools.jib' version '2.0.0' + id 'com.google.cloud.tools.jib' version '2.1.0' } sourceCompatibility = 1.8 diff --git a/examples/helloworld/pom.xml b/examples/helloworld/pom.xml index 0019d73182..849e9dcd3c 100644 --- a/examples/helloworld/pom.xml +++ b/examples/helloworld/pom.xml @@ -9,7 +9,7 @@ UTF-8 - 2.0.0 + 2.1.0 3.8.0 diff --git a/examples/java-agent/build.gradle b/examples/java-agent/build.gradle index b4bfecdef3..af7eb318c8 100644 --- a/examples/java-agent/build.gradle +++ b/examples/java-agent/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'com.google.cloud.tools.jib' version '2.0.0' + id 'com.google.cloud.tools.jib' version '2.1.0' id 'de.undercouch.download' version '4.0.0' id "com.gorylenko.gradle-git-properties" version "2.2.0" } diff --git a/examples/java-agent/pom.xml b/examples/java-agent/pom.xml index 304c1c7a1f..c125c9b3e0 100644 --- a/examples/java-agent/pom.xml +++ b/examples/java-agent/pom.xml @@ -9,7 +9,7 @@ UTF-8 - 2.0.0 + 2.1.0 3.8.0 1.4.2 3.0.1 diff --git a/examples/ktor/build.gradle.kts b/examples/ktor/build.gradle.kts index 6e2ac6da23..2cc09ae0cd 100644 --- a/examples/ktor/build.gradle.kts +++ b/examples/ktor/build.gradle.kts @@ -1,7 +1,7 @@ plugins { application kotlin("jvm") version "1.3.10" - id("com.google.cloud.tools.jib") version "1.3.0" + id("com.google.cloud.tools.jib") version "2.1.0" } group = "example" diff --git a/examples/micronaut/build.gradle b/examples/micronaut/build.gradle index 04f86139eb..0698110fd2 100644 --- a/examples/micronaut/build.gradle +++ b/examples/micronaut/build.gradle @@ -3,7 +3,7 @@ plugins { id 'groovy' id 'io.spring.dependency-management' version '1.0.6.RELEASE' id 'net.ltgt.apt-idea' version '0.18' - id 'com.google.cloud.tools.jib' version '2.0.0' + id 'com.google.cloud.tools.jib' version '2.1.0' } version '0.1' diff --git a/examples/multi-module/pom.xml b/examples/multi-module/pom.xml index ca44ef718f..5e313410a8 100644 --- a/examples/multi-module/pom.xml +++ b/examples/multi-module/pom.xml @@ -41,7 +41,7 @@ com.google.cloud.tools jib-maven-plugin - 2.0.0 + 2.1.0 diff --git a/examples/spring-boot/build.gradle b/examples/spring-boot/build.gradle index f07415b141..46958b8a56 100644 --- a/examples/spring-boot/build.gradle +++ b/examples/spring-boot/build.gradle @@ -4,7 +4,7 @@ plugins { id 'idea' id 'org.springframework.boot' version '2.1.6.RELEASE' id 'io.spring.dependency-management' version '1.0.6.RELEASE' - id 'com.google.cloud.tools.jib' version '2.0.0' + id 'com.google.cloud.tools.jib' version '2.1.0' } repositories { diff --git a/examples/spring-boot/pom.xml b/examples/spring-boot/pom.xml index 56bd2368a3..23468f7850 100644 --- a/examples/spring-boot/pom.xml +++ b/examples/spring-boot/pom.xml @@ -29,7 +29,7 @@ com.google.cloud.tools jib-maven-plugin - 2.0.0 + 2.1.0 diff --git a/examples/vertx/build.gradle b/examples/vertx/build.gradle index 1c2e085e3d..74032231f4 100644 --- a/examples/vertx/build.gradle +++ b/examples/vertx/build.gradle @@ -1,6 +1,6 @@ plugins { id 'io.vertx.vertx-plugin' version '0.1.0' - id 'com.google.cloud.tools.jib' version '2.0.0' + id 'com.google.cloud.tools.jib' version '2.1.0' } repositories { diff --git a/jib-core/CHANGELOG.md b/jib-core/CHANGELOG.md index 50986bf790..adac524a87 100644 --- a/jib-core/CHANGELOG.md +++ b/jib-core/CHANGELOG.md @@ -9,6 +9,10 @@ All notable changes to this project will be documented in this file. ### Fixed +## 0.13.1 + +### Fixed + - Fixed authentication failure with error `server did not return 'WWW-Authenticate: Bearer' header` in certain cases (for example, on OpenShift). ([#2258](https://github.com/GoogleContainerTools/jib/issues/2258)) - Fixed an issue where using local Docker images (by `docker://...`) on Windows caused an error. ([#2270](https://github.com/GoogleContainerTools/jib/issues/2270)) diff --git a/jib-core/README.md b/jib-core/README.md index ac7366c054..3f68172f55 100644 --- a/jib-core/README.md +++ b/jib-core/README.md @@ -22,7 +22,7 @@ Add Jib Core as a dependency using Maven: com.google.cloud.tools jib-core - 0.13.0 + 0.13.1 ``` @@ -30,7 +30,7 @@ Add Jib Core as a dependency using Gradle: ```groovy dependencies { - compile 'com.google.cloud.tools:jib-core:0.13.0' + compile 'com.google.cloud.tools:jib-core:0.13.1' } ``` diff --git a/jib-core/examples/build.gradle/README.md b/jib-core/examples/build.gradle/README.md index 670d8bd232..dddf83d6b6 100644 --- a/jib-core/examples/build.gradle/README.md +++ b/jib-core/examples/build.gradle/README.md @@ -13,7 +13,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.google.cloud.tools:jib-core:0.13.0' + classpath 'com.google.cloud.tools:jib-core:0.13.1' } } diff --git a/jib-gradle-plugin/CHANGELOG.md b/jib-gradle-plugin/CHANGELOG.md index e17c77365b..0821ca7787 100644 --- a/jib-gradle-plugin/CHANGELOG.md +++ b/jib-gradle-plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### Added + +### Changed + +### Fixed + +## 2.1.0 + ### Added - Additionally reads credentials from `~/.docker/.dockerconfigjson` and legacy Docker config (`~/.docker/.dockercfg`). Also searches for `$HOME/.docker/*` (in addition to current `System.get("user.home")/.docker/*`). This may help retrieve credentials, for example, on Kubernetes. ([#2260](https://github.com/GoogleContainerTools/jib/issues/2260)) - New skaffold configuration options that modify how jib's build config is presented to skaffold ([#2292](https://github.com/GoogleContainerTools/jib/pull/2292)): @@ -11,8 +19,6 @@ All notable changes to this project will be documented in this file. - `jib.skaffold.watch.excludes`: a list of files to exclude from watching - `jib.skaffold.sync.excludes`: a list of files to exclude from sync'ing -### Changed - ### Fixed - Fixed authentication failure with error `server did not return 'WWW-Authenticate: Bearer' header` in certain cases (for example, on OpenShift). ([#2258](https://github.com/GoogleContainerTools/jib/issues/2258)) diff --git a/jib-gradle-plugin/README.md b/jib-gradle-plugin/README.md index 28a2e1271e..dce2de7cd6 100644 --- a/jib-gradle-plugin/README.md +++ b/jib-gradle-plugin/README.md @@ -47,7 +47,7 @@ In your Gradle Java project, add the plugin to your `build.gradle`: ```groovy plugins { - id 'com.google.cloud.tools.jib' version '2.0.0' + id 'com.google.cloud.tools.jib' version '2.1.0' } ``` diff --git a/jib-maven-plugin/CHANGELOG.md b/jib-maven-plugin/CHANGELOG.md index 7642757274..acce57fe5b 100644 --- a/jib-maven-plugin/CHANGELOG.md +++ b/jib-maven-plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### Added + +### Changed + +### Fixed + +## 2.1.0 + ### Added - Additionally reads credentials from `~/.docker/.dockerconfigjson` and legacy Docker config (`~/.docker/.dockercfg`). Also searches for `$HOME/.docker/*` (in addition to current `System.get("user.home")/.docker/*`). This may help retrieve credentials, for example, on Kubernetes. ([#2260](https://github.com/GoogleContainerTools/jib/issues/2260)) - New skaffold configuration options that modify how jib's build config is presented to skaffold ([#2292](https://github.com/GoogleContainerTools/jib/pull/2292)): @@ -11,8 +19,6 @@ All notable changes to this project will be documented in this file. - ``: a list of files to exclude from watching - ``: a list of files to exclude from sync'ing -### Changed - ### Fixed - Fixed a `skaffold init` issue with projects containing submodules specifying different parent poms. ([#2262](https://github.com/GoogleContainerTools/jib/issues/2262)) diff --git a/jib-maven-plugin/README.md b/jib-maven-plugin/README.md index 5c4f01c0cb..e54a366b46 100644 --- a/jib-maven-plugin/README.md +++ b/jib-maven-plugin/README.md @@ -42,7 +42,7 @@ For information about the project, see the [Jib project README](../README.md). You can containerize your application easily with one command: ```shell -mvn compile com.google.cloud.tools:jib-maven-plugin:2.0.0:build -Dimage= +mvn compile com.google.cloud.tools:jib-maven-plugin:2.1.0:build -Dimage= ``` This builds and pushes a container image for your application to a container registry. *If you encounter authentication issues, see [Authentication Methods](#authentication-methods).* @@ -50,7 +50,7 @@ This builds and pushes a container image for your application to a container reg To build to a Docker daemon, use: ```shell -mvn compile com.google.cloud.tools:jib-maven-plugin:2.0.0:dockerBuild +mvn compile com.google.cloud.tools:jib-maven-plugin:2.1.0:dockerBuild ``` If you would like to set up Jib as part of your Maven build, follow the guide below. @@ -68,7 +68,7 @@ In your Maven Java project, add the plugin to your `pom.xml`: com.google.cloud.tools jib-maven-plugin - 2.0.0 + 2.1.0 myimage