From 055d686d8c5eae00b448d85faa728ae078beb563 Mon Sep 17 00:00:00 2001
From: Mridula <66699525+mpeddada1@users.noreply.github.com>
Date: Fri, 5 Apr 2024 13:26:39 -0400
Subject: [PATCH] chore: update docs for plugins 3.4.2 and core 0.27.0 (#4232)
---
examples/dropwizard/pom.xml | 2 +-
examples/helloworld/build.gradle | 2 +-
examples/helloworld/pom.xml | 2 +-
examples/java-agent/build.gradle | 2 +-
examples/java-agent/pom.xml | 2 +-
examples/ktor/build.gradle.kts | 2 +-
examples/micronaut/build.gradle | 2 +-
examples/multi-module/build.gradle | 2 +-
examples/multi-module/pom.xml | 2 +-
examples/spring-boot/build.gradle | 2 +-
examples/spring-boot/pom.xml | 2 +-
examples/vertx/build.gradle | 2 +-
jib-core/CHANGELOG.md | 9 +++++++--
jib-core/README.md | 4 ++--
jib-core/examples/build.gradle/README.md | 2 +-
jib-gradle-plugin/CHANGELOG.md | 11 ++++++++---
jib-gradle-plugin/README.md | 2 +-
jib-maven-plugin/CHANGELOG.md | 9 +++++++--
18 files changed, 38 insertions(+), 23 deletions(-)
diff --git a/examples/dropwizard/pom.xml b/examples/dropwizard/pom.xml
index 4a4e1f167f..ab09f99b0a 100644
--- a/examples/dropwizard/pom.xml
+++ b/examples/dropwizard/pom.xml
@@ -26,7 +26,7 @@
1.5.0
/app
- 3.4.1
+ 3.4.2
diff --git a/examples/helloworld/build.gradle b/examples/helloworld/build.gradle
index 4a5e74232e..c6c2225278 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 '3.4.1'
+ id 'com.google.cloud.tools.jib' version '3.4.2'
}
sourceCompatibility = 1.8
diff --git a/examples/helloworld/pom.xml b/examples/helloworld/pom.xml
index a91b885bb7..924c67a136 100644
--- a/examples/helloworld/pom.xml
+++ b/examples/helloworld/pom.xml
@@ -9,7 +9,7 @@
UTF-8
- 3.4.1
+ 3.4.2
3.8.0
diff --git a/examples/java-agent/build.gradle b/examples/java-agent/build.gradle
index 5c14bbacc8..ae272cdffd 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 '3.4.1'
+ id 'com.google.cloud.tools.jib' version '3.4.2'
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 9c888cc209..7fc43504e5 100644
--- a/examples/java-agent/pom.xml
+++ b/examples/java-agent/pom.xml
@@ -9,7 +9,7 @@
UTF-8
- 3.4.1
+ 3.4.2
3.8.0
1.4.2
3.0.1
diff --git a/examples/ktor/build.gradle.kts b/examples/ktor/build.gradle.kts
index aa300a358c..963c3fd418 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 "3.4.1"
+ id("com.google.cloud.tools.jib") version "3.4.2"
}
group = "example"
diff --git a/examples/micronaut/build.gradle b/examples/micronaut/build.gradle
index f8870dfa15..c0f0842bbd 100644
--- a/examples/micronaut/build.gradle
+++ b/examples/micronaut/build.gradle
@@ -2,7 +2,7 @@ plugins {
id "groovy"
id "com.github.johnrengelman.shadow" version "5.2.0"
id "application"
- id 'com.google.cloud.tools.jib' version '3.4.1'
+ id 'com.google.cloud.tools.jib' version '3.4.2'
}
version "0.1"
diff --git a/examples/multi-module/build.gradle b/examples/multi-module/build.gradle
index 4c5b0c406d..ea07fc421f 100644
--- a/examples/multi-module/build.gradle
+++ b/examples/multi-module/build.gradle
@@ -2,5 +2,5 @@
plugins {
id 'org.springframework.boot' version '2.0.3.RELEASE' apply false
id 'io.spring.dependency-management' version '1.0.6.RELEASE' apply false
- id 'com.google.cloud.tools.jib' version '3.4.1' apply false
+ id 'com.google.cloud.tools.jib' version '3.4.2' apply false
}
diff --git a/examples/multi-module/pom.xml b/examples/multi-module/pom.xml
index d4623fddc7..135e9a8c5e 100644
--- a/examples/multi-module/pom.xml
+++ b/examples/multi-module/pom.xml
@@ -41,7 +41,7 @@
com.google.cloud.tools
jib-maven-plugin
- 3.4.1
+ 3.4.2
diff --git a/examples/spring-boot/build.gradle b/examples/spring-boot/build.gradle
index de0f8530f6..5ce5d12ef1 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 '3.4.1'
+ id 'com.google.cloud.tools.jib' version '3.4.2'
}
repositories {
diff --git a/examples/spring-boot/pom.xml b/examples/spring-boot/pom.xml
index 37a5c3a6a6..6cf906c0da 100644
--- a/examples/spring-boot/pom.xml
+++ b/examples/spring-boot/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud.tools
jib-maven-plugin
- 3.4.1
+ 3.4.2
diff --git a/examples/vertx/build.gradle b/examples/vertx/build.gradle
index fb31b56708..956df52ea2 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 '3.4.1'
+ id 'com.google.cloud.tools.jib' version '3.4.2'
}
repositories {
diff --git a/jib-core/CHANGELOG.md b/jib-core/CHANGELOG.md
index 32b9adcabb..b0f8762566 100644
--- a/jib-core/CHANGELOG.md
+++ b/jib-core/CHANGELOG.md
@@ -4,13 +4,18 @@ All notable changes to this project will be documented in this file.
## [unreleased]
### Added
--
+
+### Changed
+
+### Fixed
+
+## 0.27.0
### Changed
- deps: bump org.apache.commons:commons-compress from 1.21 to 1.26.0 ([#4204](https://github.com/GoogleContainerTools/jib/pull/4204))
### Fixed
-- fix: image builds should become reproducible once again ([#4204](https://github.com/GoogleContainerTools/jib/pull/4204))
+- fix: set PAX headers to address build reproducibility issue ([#4204](https://github.com/GoogleContainerTools/jib/pull/4204))
## 0.26.0
diff --git a/jib-core/README.md b/jib-core/README.md
index 81cd0b1f77..cc6baf2d24 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.26.0
+ 0.27.0
```
@@ -30,7 +30,7 @@ Add Jib Core as a dependency using Gradle:
```groovy
dependencies {
- compile 'com.google.cloud.tools:jib-core:0.25.0'
+ compile 'com.google.cloud.tools:jib-core:0.27.0'
}
```
diff --git a/jib-core/examples/build.gradle/README.md b/jib-core/examples/build.gradle/README.md
index 2ab27e98e2..2211f37846 100644
--- a/jib-core/examples/build.gradle/README.md
+++ b/jib-core/examples/build.gradle/README.md
@@ -14,7 +14,7 @@ buildscript {
mavenCentral()
}
dependencies {
- classpath 'com.google.cloud.tools:jib-core:0.25.0'
+ classpath 'com.google.cloud.tools:jib-core:0.27.0'
}
}
diff --git a/jib-gradle-plugin/CHANGELOG.md b/jib-gradle-plugin/CHANGELOG.md
index 0f5cfb9371..c91b85fee8 100644
--- a/jib-gradle-plugin/CHANGELOG.md
+++ b/jib-gradle-plugin/CHANGELOG.md
@@ -3,14 +3,19 @@ All notable changes to this project will be documented in this file.
## [unreleased]
-### Added
--
+### Added
+
+### Changed
+
+### Fixed
+
+## 3.4.2
### Changed
- deps: bump org.apache.commons:commons-compress from 1.21 to 1.26.0 ([#4204](https://github.com/GoogleContainerTools/jib/pull/4204))
### Fixed
-- fix: image builds should become reproducible once again ([#4204](https://github.com/GoogleContainerTools/jib/pull/4204))
+- fix: set PAX headers to address build reproducibility issue ([#4204](https://github.com/GoogleContainerTools/jib/pull/4204))
- fix: (WAR Containerization) modify default entrypoint to `java -jar /usr/local/jetty/start.jar --module=ee10-deploy` for Jetty 12+ compatibility ([#4216](https://github.com/GoogleContainerTools/jib/pull/4216))
## 3.4.1
diff --git a/jib-gradle-plugin/README.md b/jib-gradle-plugin/README.md
index 72f92b3d9e..6bdf8aca96 100644
--- a/jib-gradle-plugin/README.md
+++ b/jib-gradle-plugin/README.md
@@ -53,7 +53,7 @@ In your Gradle Java project, add the plugin to your `build.gradle`:
```groovy
plugins {
- id 'com.google.cloud.tools.jib' version '3.4.1'
+ id 'com.google.cloud.tools.jib' version '3.4.2'
}
```
diff --git a/jib-maven-plugin/CHANGELOG.md b/jib-maven-plugin/CHANGELOG.md
index a1f5ff8b60..77a8f26045 100644
--- a/jib-maven-plugin/CHANGELOG.md
+++ b/jib-maven-plugin/CHANGELOG.md
@@ -4,13 +4,18 @@ All notable changes to this project will be documented in this file.
## [unreleased]
### Added
--
+
+### Changed
+
+### Fixed
+
+## 3.4.2
### Changed
- deps: bump org.apache.commons:commons-compress from 1.21 to 1.26.0 ([#4204](https://github.com/GoogleContainerTools/jib/pull/4204))
### Fixed
-- fix: image builds should become reproducible once again ([#4204](https://github.com/GoogleContainerTools/jib/pull/4204))
+- fix: set PAX headers to address build reproducibility issue ([#4204](https://github.com/GoogleContainerTools/jib/pull/4204))
- fix: (WAR Containerization) modify default entrypoint to `java -jar /usr/local/jetty/start.jar --module=ee10-deploy` for Jetty 12+ compatibility ([#4216](https://github.com/GoogleContainerTools/jib/pull/4216))
## 3.4.1