Skip to content

Releases: GoogleContainerTools/jib

jib-cli v0.9.0

19 Jan 20:17
Compare
Choose a tag to compare

Major Changes

  • For Java 17, changed the default base image of the Jib CLI jar command from the azul/zulu-openjdk to eclipse-temurin. (#3483)

See CHANGELOG.md for more details.

jib-cli v0.8.0

12 Nov 22:12
Compare
Choose a tag to compare

Major Changes

  • Increased robustness in registry communications by retrying HTTP requests (to the effect of retrying image pushes or pulls) on I/O exceptions with exponential backoffs. (#3351)
  • Now also supports username and password properties for the auths section in a Docker config (~/.docker/config.json). (Previously, only supported was a base64-encoded username and password string of the auth property.) (#3365)
  • Downgraded Google HTTP libraries to 1.34.0 to resolve network issues. (#3415, #3058, #3409)
  • Changed the default base image of the Jib CLI jar command from the adoptopenjdk images to the eclipse-temurin (for Java 8 and 11) and azul/zulu-openjdk (for Java 17) images on Docker Hub. Note that Temurin (by Adoptium) is the new name of AdoptOpenJDK. (#3491)

See CHANGELOG.md for more details.

jib-core v0.20.0

19 Aug 19:06
Compare
Choose a tag to compare

Major Changes

  • Increased robustness in registry communications by retrying HTTP requests (to the effect of retrying image pushes or pulls) on I/O exceptions with exponential backoffs. (#3351)
  • Downgraded Google HTTP libraries to 1.34.0 to resolve network issues. (#3415, #3058, #3409)

See CHANGELOG.md for more details.

jib-maven-plugin v3.1.4

16 Aug 22:35
Compare
Choose a tag to compare

Major Changes

  • Downgraded Google HTTP libraries to 1.34.0 to resolve network issues. (#3415, #3058, #3409)
  • If allowInsecureRegistries=true, HTTP requests are retried on I/O errors only after insecure failover is finalized for each server. (#3422)

See CHANGELOG.md for more details.

jib-gradle-plugin v3.1.4

16 Aug 22:36
Compare
Choose a tag to compare

Major Changes

  • Downgraded Google HTTP libraries to 1.34.0 to resolve network issues. (#3415, #3058, #3409)
  • If allowInsecureRegistries=true, HTTP requests are retried on I/O errors only after insecure failover is finalized for each server. (#3422)

See CHANGELOG.md for more details.

jib-maven-plugin v3.1.3

11 Aug 19:24
Compare
Choose a tag to compare

Major Changes

  • Increased robustness in registry communications by retrying HTTP requests (to the effect of retrying image pushes or pulls) on I/O exceptions with exponential backoffs. (#3351)
  • Now also supports username and password properties for the auths section in a Docker config (~/.docker/config.json). (Previously, only supported was a base64-encoded username and password string of the auth property.) (#3365)
  • Upgraded Google HTTP libraries to 1.39.2. (#3387)

See CHANGELOG.md for more details.

jib-gradle-plugin v3.1.3

11 Aug 19:24
Compare
Choose a tag to compare

Major Changes

  • Increased robustness in registry communications by retrying HTTP requests (to the effect of retrying image pushes or pulls) on I/O exceptions with exponential backoffs. (#3351)
  • Now also supports username and password properties for the auths section in a Docker config (~/.docker/config.json). (Previously, only supported was a base64-encoded username and password string of the auth property.) (#3365)
  • Upgraded Google HTTP libraries to 1.39.2. (#3387)

See CHANGELOG.md for more details.

jib-maven-plugin v3.1.2

08 Jul 21:38
Compare
Choose a tag to compare

Major Changes

  • Fixed the bug introduced in 3.1 that constructs a wrong Java runtime classpath when two dependencies have the same artifact ID and version but different group IDs. The bug occurs only when using Java 9+ or setting <container><expandClasspathDependencies>. (#3331)

See CHANGELOG.md for more details.

jib-gradle-plugin v3.1.2

08 Jul 21:38
Compare
Choose a tag to compare

Major Changes

  • Fixed the bug introduced in 3.1 that constructs a wrong Java runtime classpath when two dependencies have the same artifact ID and version but different group IDs. The bug occurs only when using Java 9+ or setting jib.container.expandClasspathDependencies. (#3331)

See CHANGELOG.md for more details.

jib-cli v0.7.0

24 Jun 14:46
Compare
Choose a tag to compare

Major Changes

  • Added the war command which can be used to containerize a standard WAR with $ jib war --target ... my-app.war. The command will explode out the contents of the WAR into optimized layers on the container. (#3285)

See CHANGELOG.md for more details.