releng: changes list in sync with latest issues on JIRA

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1460324 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index f1800df..0b0c250 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -51,6 +51,7 @@
  * [FILEUPLOAD-220] - replace package.html with package-info.java
  * [FILEUPLOAD-221] - FileItemHeadersImpl can now use LinkedHashMap
  * [FILEUPLOAD-222] - Mark @deprecated classes/methods with @Deprecated annotation
+ * [FILEUPLOAD-233] - Base64Decoder doesn't correctly implement RFC 4648
 
 Bug
 =============
@@ -70,6 +71,7 @@
  * [FILEUPLOAD-214] - ServletFileUpload only accepts POST requests
  * [FILEUPLOAD-228] - (Servlet|Portlet)RequestContext#contentLength() must return request.getContentLength() if Content-length header is not available
  * [FILEUPLOAD-229] - toLowerCase() is Locale-dependent; should use toLowerCase(Locale.ENGLISH) instead
+ * [FILEUPLOAD-232] - There are no unit tests for the new utils.mime classes
 
 Improvement
 =============
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 412100b..35591de 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -72,6 +72,9 @@
       <action issue="FILEUPLOAD-222" dev="simonetripodi" type="update">
         Mark @deprecated classes/methods with @Deprecated annotation
       </action>
+      <action issue="FILEUPLOAD-233" dev="sebb" type="fix" due-to="Simone Tripodi">
+        Base64Decoder doesn't correctly implement RFC 4648
+      </action>
       <!-- Bug -->
       <action issue="FILEUPLOAD-143" dev="jochen" type="fix" due-to="Luke Scott">
         "Stream ended unexpectedly" when posting from a Flash client
@@ -121,6 +124,9 @@
       <action issue="FILEUPLOAD-229" dev="simonetripodi" type="fix" due-to="seb">
         toLowerCase() is Locale-dependent; should use toLowerCase(Locale.ENGLISH) instead
       </action>
+      <action issue="FILEUPLOAD-229" dev="sebb,simonetripodi" type="fix" due-to="seb">
+        There are no unit tests for the new utils.mime classes
+      </action>
       <!-- Improvement -->
       <action issue="FILEUPLOAD-182" dev="simonetripodi" type="add" due-to="Chris Lott">
         Documentation: add simple HTML form example to fileupload user guide