-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: long version of go dependency unable to inserted into software t…
…able (CVE-2020-36569) (#5229)
- Loading branch information
Showing
11 changed files
with
35 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,11 +25,14 @@ Copyright (c) 2017 Jeremy Long. All Rights Reserved. | |
<artifactId>dependency-check-plugin</artifactId> | ||
<name>Dependency-Check Plugin Archetype</name> | ||
<packaging>jar</packaging> | ||
<properties> | ||
<!--reproducible build--> | ||
<project.build.outputTimestamp>${git.commit.time}</project.build.outputTimestamp> | ||
</properties> | ||
<scm> | ||
<connection>scm:git:https://github.com/jeremylong/DependencyCheck.git</connection> | ||
<url>https://github.com/jeremylong/DependencyCheck/tree/main/archetype</url> | ||
<developerConnection>scm:git:[email protected]:jeremylong/DependencyCheck.git</developerConnection> | ||
<tag>v6.4.1</tag> | ||
</scm> | ||
<build> | ||
<plugins> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ALTER TABLE software ALTER COLUMN versionEndExcluding SET DATA TYPE VARCHAR(100); | ||
ALTER TABLE software ALTER COLUMN versionEndIncluding SET DATA TYPE VARCHAR(100); | ||
ALTER TABLE software ALTER COLUMN versionStartExcluding SET DATA TYPE VARCHAR(100); | ||
ALTER TABLE software ALTER COLUMN versionStartIncluding SET DATA TYPE VARCHAR(100); | ||
|
||
UPDATE Properties SET `value`='5.3' WHERE ID='version'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters