diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e77d156e37..976c1ee13b 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:1.5.2-SNAPSHOT' + classpath 'com.google.cloud.tools:jib-gradle-plugin:1.6.1-SNAPSHOT' } } plugins { - // id 'com.google.cloud.tools.jib' version '1.5.1' + // id 'com.google.cloud.tools.jib' version '1.6.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 5083f95dc2..95502c825e 100644 --- a/examples/dropwizard/pom.xml +++ b/examples/dropwizard/pom.xml @@ -26,7 +26,7 @@ 1.5.0 /app - 1.5.1 + 1.6.0 diff --git a/examples/helloworld/build.gradle b/examples/helloworld/build.gradle index 8aff3def17..7877a79711 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 '1.5.1' + id 'com.google.cloud.tools.jib' version '1.6.0' } sourceCompatibility = 1.8 diff --git a/examples/helloworld/pom.xml b/examples/helloworld/pom.xml index 74eea89290..763f16de29 100644 --- a/examples/helloworld/pom.xml +++ b/examples/helloworld/pom.xml @@ -9,7 +9,7 @@ UTF-8 - 1.5.1 + 1.6.0 3.8.0 diff --git a/examples/java-agent/build.gradle b/examples/java-agent/build.gradle index 62782fa7ad..85150c89c5 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 '1.5.1' + id 'com.google.cloud.tools.jib' version '1.6.0' id 'de.undercouch.download' version '3.4.0' id "com.gorylenko.gradle-git-properties" version "1.5.2" } diff --git a/examples/java-agent/pom.xml b/examples/java-agent/pom.xml index b65a55ef85..e25a48fe2c 100644 --- a/examples/java-agent/pom.xml +++ b/examples/java-agent/pom.xml @@ -9,7 +9,7 @@ UTF-8 - 1.5.1 + 1.6.0 3.8.0 1.4.1 2.2.5 diff --git a/examples/micronaut/build.gradle b/examples/micronaut/build.gradle index 3aa825b833..0397a77fd8 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 '1.5.1' + id 'com.google.cloud.tools.jib' version '1.6.0' } version '0.1' diff --git a/examples/multi-module/build.gradle b/examples/multi-module/build.gradle index ac0ff1a888..1ec017d76c 100644 --- a/examples/multi-module/build.gradle +++ b/examples/multi-module/build.gradle @@ -8,7 +8,7 @@ buildscript { dependencies { classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.3.RELEASE' classpath 'io.spring.gradle:dependency-management-plugin:1.0.6.RELEASE' - classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:1.5.1' + classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:1.6.0' } } diff --git a/examples/multi-module/pom.xml b/examples/multi-module/pom.xml index e95d58ccb0..35f4045b5f 100644 --- a/examples/multi-module/pom.xml +++ b/examples/multi-module/pom.xml @@ -40,7 +40,7 @@ com.google.cloud.tools jib-maven-plugin - 1.5.1 + 1.6.0 diff --git a/examples/spring-boot/build.gradle b/examples/spring-boot/build.gradle index 19ea6da2b0..7188175898 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 '1.5.1' + id 'com.google.cloud.tools.jib' version '1.6.0' } repositories { diff --git a/examples/spring-boot/pom.xml b/examples/spring-boot/pom.xml index e51c71a2b4..e04a640a92 100644 --- a/examples/spring-boot/pom.xml +++ b/examples/spring-boot/pom.xml @@ -29,7 +29,7 @@ com.google.cloud.tools jib-maven-plugin - 1.5.1 + 1.6.0 diff --git a/examples/vertx/build.gradle b/examples/vertx/build.gradle index 99aeba35f8..0457efdd3b 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 '1.5.1' + id 'com.google.cloud.tools.jib' version '1.6.0' } repositories { diff --git a/jib-core/CHANGELOG.md b/jib-core/CHANGELOG.md index 72bdc6881b..6eaf7fcb85 100644 --- a/jib-core/CHANGELOG.md +++ b/jib-core/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. ### Added +### Changed + +### Fixed + +## 0.11.0 + +### Added + - `Jib#from` and `JavaContainerBuilder#from` overloads to allow using a `DockerDaemonImage` or a `TarImage` as the base image ([#1468](https://github.com/GoogleContainerTools/jib/issues/1468), [#1905](https://github.com/GoogleContainerTools/jib/issues/1905)) - `Jib#from(String)` accepts strings prefixed with `docker://`, `tar://`, or `registry://` to specify image type diff --git a/jib-core/README.md b/jib-core/README.md index a6cadff315..b2d96fe4d9 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.10.1 + 0.11.0 ``` @@ -30,7 +30,7 @@ Add Jib Core as a dependency using Gradle: ```groovy dependencies { - compile 'com.google.cloud.tools:jib-core:0.10.1' + compile 'com.google.cloud.tools:jib-core:0.11.0' } ``` diff --git a/jib-core/examples/build.gradle/README.md b/jib-core/examples/build.gradle/README.md index 30ec935d84..3a92b3b8e6 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.10.1' + classpath 'com.google.cloud.tools:jib-core:0.11.0' } } diff --git a/jib-gradle-plugin/CHANGELOG.md b/jib-gradle-plugin/CHANGELOG.md index a84c657679..d469b29911 100644 --- a/jib-gradle-plugin/CHANGELOG.md +++ b/jib-gradle-plugin/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. ### Added +### Changed + +### Fixed + +## 1.6.0 + +### Added + - Support for local base images by prefixing `jib.from.image` with `docker://` to build from a docker daemon image, or `tar://` to build from a tarball image ([#1468](https://github.com/GoogleContainerTools/jib/issues/1468), [#1905](https://github.com/GoogleContainerTools/jib/issues/1905)) ### Changed diff --git a/jib-gradle-plugin/README.md b/jib-gradle-plugin/README.md index 0dea7ba2d9..c21bca6533 100644 --- a/jib-gradle-plugin/README.md +++ b/jib-gradle-plugin/README.md @@ -42,7 +42,7 @@ In your Gradle Java project, add the plugin to your `build.gradle`: ```groovy plugins { - id 'com.google.cloud.tools.jib' version '1.5.1' + id 'com.google.cloud.tools.jib' version '1.6.0' } ``` diff --git a/jib-maven-plugin/CHANGELOG.md b/jib-maven-plugin/CHANGELOG.md index de9546e6ab..ba247e1e9c 100644 --- a/jib-maven-plugin/CHANGELOG.md +++ b/jib-maven-plugin/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. ### Added +### Changed + +### Fixed + +## 1.6.0 + +### Added + - Support for local base images by prefixing `` with `docker://` to build from a docker daemon image, or `tar://` to build from a tarball image ([#1468](https://github.com/GoogleContainerTools/jib/issues/1468), [#1905](https://github.com/GoogleContainerTools/jib/issues/1905)) ### Changed diff --git a/jib-maven-plugin/README.md b/jib-maven-plugin/README.md index 6818b36d6d..53465e5a5a 100644 --- a/jib-maven-plugin/README.md +++ b/jib-maven-plugin/README.md @@ -37,7 +37,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:1.5.1:build -Dimage= +mvn compile com.google.cloud.tools:jib-maven-plugin:1.6.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).* @@ -45,7 +45,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:1.5.1:dockerBuild +mvn compile com.google.cloud.tools:jib-maven-plugin:1.6.0:dockerBuild ``` If you would like to set up Jib as part of your Maven build, follow the guide below. @@ -63,7 +63,7 @@ In your Maven Java project, add the plugin to your `pom.xml`: com.google.cloud.tools jib-maven-plugin - 1.5.1 + 1.6.0 myimage