-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #354 from gdams/1.8
Release 1.8.3
- Loading branch information
Showing
3 changed files
with
15 additions
and
4 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 |
---|---|---|
@@ -1,9 +1,14 @@ | ||
2019-08-02 George Adams <[email protected]> | ||
|
||
Release changes | ||
* configure.ac: (AC_INIT) bumped to 1.8.3 | ||
|
||
2019-06-26 Jiri Vanek <[email protected]> | ||
|
||
All files, except signatures files, are now checked for signatures - CVE-2019-10181 | ||
* netx/net/sourceforge/jnlp/tools/JarCertVerifier.java: (isMetaInfFile) fixed bug, when anything in META-INF was not | ||
checked for signature. Now only signature files are skipped | ||
* tests/netx/unit/net/sourceforge/jnlp/tools/JarCertVerifierTest.java: added tests for check if file should be skipped from | ||
* tests/netx/unit/net/sourceforge/jnlp/tools/JarCertVerifierTest.java: added tests for check if file should be skipped from | ||
signature check | ||
|
||
2019-06-26 Jiri Vanek <[email protected]> | ||
|
@@ -17,7 +22,7 @@ | |
2019-06-26 Jiri Vanek <[email protected]> | ||
|
||
Fixed bug when relative path (..) could leak up (even out of cache) - CVE-2019-10182 | ||
* netx/net/sourceforge/jnlp/cache/CacheUtil.java: if path or query contains .. is saved to cache via its hash | ||
* netx/net/sourceforge/jnlp/cache/CacheUtil.java: if path or query contains .. is saved to cache via its hash | ||
* netx/net/sourceforge/jnlp/util/FileUtils.java: added warning about different behavior on win/linux | ||
* tests/netx/unit/net/sourceforge/jnlp/cache/CacheUtilTest.java: added tests for hashing | ||
* tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPClassLoaderTest.java: added test for .. in path. Added test | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
AC_INIT([icedtea-web],[1.8.2],[[email protected]], [icedtea-web], [http://icedtea.classpath.org/wiki/IcedTea-Web]) | ||
AC_INIT([icedtea-web],[1.8.3],[[email protected]], [icedtea-web], [http://icedtea.classpath.org/wiki/IcedTea-Web]) | ||
AM_INIT_AUTOMAKE([1.9 tar-pax foreign]) | ||
AC_CONFIG_FILES([Makefile netx.manifest]) | ||
AM_MAINTAINER_MODE([enable]) | ||
|