diff --git a/pom.xml b/pom.xml
index eca5050432..1a6fa8379b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
org.apache.commons
commons-parent
- 78
+ 79
commons-fileupload
commons-fileupload
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 8f08842e51..782f17393a 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -33,9 +33,9 @@ property to the number of days since the last release.
The type attribute can be add,update,fix,remove.
-->
-
+ xsi:schemaLocation="http://maven.apache.org/changes/2.0.0 http://maven.apache.org/xsd/changes-2.0.0.xsd">
Apache Commons FileUpload Release Notes
Apache Commons Developers
@@ -53,7 +53,7 @@ The type attribute can be add,update,fix,remove.
Port to Java 1.4 Throwable APIs (!).
Bump Java from 6 to 8.
- Bump org.apache.commons:commons-parent from 62 to 78.
+ Bump org.apache.commons:commons-parent from 62 to 79, upgrades Doxia from 1 to 2.
Bump commons-io from 2.11.0 to 2.17.0.
Bump javax.servlet:servlet-api from 2.4 to 2.5.
Bump JUnit from junit:junit:4.13.2 org.junit.vintage:junit-vintage-engine from parent POM.
@@ -83,10 +83,10 @@ The type attribute can be add,update,fix,remove.
DiskFileItem.get() may not fully read the data
Make some MultipartStream private fields final
Site: added security report
- Improve performance for large multi-part boundaries
- Added the default character set to the DiskFileItem.
- Avoid using File.exists() on temporary files, if we know that the file has been created.
- Added .travis.yml, to fix build issues on Github.
+ Improve performance for large multi-part boundaries
+ Added the default character set to the DiskFileItem.
+ Avoid using File.exists() on temporary files, if we know that the file has been created.
+ Added .travis.yml, to fix build issues on Github.
@@ -434,18 +434,13 @@ fix as well as a small number of bugfixes." date="2014-02-07">
- Build updates:
-
- -
- Include NOTICE.txt in the jar file and distributions.
-
- -
- Include xdocs in source distribution.
-
- -
- Create MD5 checksums for distributions.
-
-
+ Build updates: Include NOTICE.txt in the jar file and distributions.
+
+
+ Build updates: Include xdocs in source distribution.
+
+
+ Build updates: Create MD5 checksums for distributions.
@@ -491,22 +486,14 @@ fix as well as a small number of bugfixes." date="2014-02-07">
Web site updates:
-
- -
Add detail pages for Source Repository and Issue Tracking, based on
those for IO and Validator.
-
- -
+
Improvements to FileUpload home page, based on similar recent
changes to IO and Validator home pages.
-
- -
+
The Bugzilla component name has a space in it. Fix the URLs.
-
- -
Add an FAQ page, using the Maven plugin to generate it.
-
-
@@ -544,39 +531,32 @@ fix as well as a small number of bugfixes." date="2014-02-07">
Substantial refactoring and additions:
-
- -
+
The core package is now independent of servlet / portlet / other
distinctions, as well as persistence schemes, other than deprecated
classes and methods retained for backwards compatibility.
-
- -
+
Servlet specific functionality has been moved to a new 'servlet'
package. Existing users should migrate to this as soon as possible,
since the servlet specific functionality in the generic package
will be removed in the release after FileUpload 1.1.
-
- -
+
Support for portlets (JSR 168) has been added, in a new 'portlet'
package. This is not well tested at this point, and feedback would
be very much appreciated. (This also resolves bug #23620.)
-
- -
+
The disk-based file item implementation has been moved into a 'disk'
package, and renamed from Default* to Disk* to reflect what it
really is. The Default* classes have been retained in the top level
package for backwards compatibility, but are now deprecated, and
will be removed in the release after FileUpload 1.1.
-
- -
+
The isMultipartRequest method is an unfortunate casualty of this
refactoring. That method should really be moved to ServletFileUpload,
but since the method is static, it can only exist in either
FileUploadBase or ServletFileUpload. Backwards compatibility dictates
the former for now, but the latter is the desired state, which
implies some future breakage. Fair warning...
-
-