Bumping versions
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
org.gradle.daemon=false
|
||||
verifierVersion=3.1.4-SNAPSHOT
|
||||
springBootVersion=2.6.7
|
||||
springBootVersion=2.6.8
|
||||
camelVersion=3.11.0
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.6.7</version>
|
||||
<version>2.6.8</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.6.7</version>
|
||||
<version>2.6.8</version>
|
||||
<relativePath /> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.6.7</version>
|
||||
<version>2.6.8</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.6.7</version>
|
||||
<version>2.6.8</version>
|
||||
<relativePath /> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -68,13 +68,13 @@ public final class ZipCategory {
|
||||
if (!entry.isDirectory()) {
|
||||
final File destinationFile = new File(destination, entry.getName());
|
||||
/*
|
||||
* If we see the relative traversal string of ".." we need to make sure
|
||||
* that the outputdir + name doesn't leave the outputdir.
|
||||
* If we see the relative traversal string of ".." we need to make
|
||||
* sure that the outputdir + name doesn't leave the outputdir.
|
||||
*/
|
||||
String zipEntryName = entry.getName();
|
||||
if (!destinationFile.toPath().normalize().startsWith(destination.toPath())) {
|
||||
throw new ZipException("The file " + zipEntryName +
|
||||
" is trying to leave the target output directory of " + destination);
|
||||
throw new ZipException("The file " + zipEntryName
|
||||
+ " is trying to leave the target output directory of " + destination);
|
||||
}
|
||||
if (destinationFile.getParentFile() != null) {
|
||||
destinationFile.getParentFile().mkdirs();
|
||||
|
||||
@@ -16,5 +16,5 @@
|
||||
wiremockVersion=2.30.1
|
||||
jsonAssertVersion=0.6.2
|
||||
verifierVersion=3.1.4-SNAPSHOT
|
||||
bootVersion=2.6.7
|
||||
bootVersion=2.6.8
|
||||
groovyVersion=2.4.17
|
||||
|
||||
@@ -16,5 +16,5 @@
|
||||
wiremockVersion=2.30.1
|
||||
jsonAssertVersion=0.6.2
|
||||
verifierVersion=3.1.4-SNAPSHOT
|
||||
bootVersion=2.6.7
|
||||
bootVersion=2.6.8
|
||||
groovyVersion=2.4.17
|
||||
|
||||
Reference in New Issue
Block a user