/hg/icedtea7: 2 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Tue Mar 12 13:05:07 PDT 2013


changeset e9f69abe7bba in /hg/icedtea7
details: http://icedtea.classpath.org/hg/icedtea7?cmd=changeset;node=e9f69abe7bba
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Tue Mar 12 20:03:18 2013 +0000

	PR1340: Simplify the rhino class rewriter to avoid use of concurrency

	2013-03-11  Andrew John Hughes  <gnu.andrew at member.fsf.org>

		PR1340: Simplify the rewriter, avoiding concurrency.
		* rewriter/com/redhat/rewriter/ClassRewriter.java:
		Always use the single threaded executor.


changeset 898867dc123e in /hg/icedtea7
details: http://icedtea.classpath.org/hg/icedtea7?cmd=changeset;node=898867dc123e
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Tue Mar 12 20:04:59 2013 +0000

	Add release notes for 2.1.7, 2.2.7 & 2.3.8.

	2013-03-12  Andrew John Hughes  <gnu_andrew at member.fsf.org>

		* NEWS: Add release notes for 2.3.8, 2.1.7 &
		2.2.7.


diffstat:

 ChangeLog                                       |  11 +++++
 NEWS                                            |  46 +++++++++++++++++++++++++
 rewriter/com/redhat/rewriter/ClassRewriter.java |   6 +-
 3 files changed, 60 insertions(+), 3 deletions(-)

diffs (95 lines):

diff -r 3506c375241e -r 898867dc123e ChangeLog
--- a/ChangeLog	Thu Feb 21 06:37:07 2013 +1100
+++ b/ChangeLog	Tue Mar 12 20:04:59 2013 +0000
@@ -1,3 +1,14 @@
+2013-03-12  Andrew John Hughes  <gnu_andrew at member.fsf.org>
+
+	* NEWS: Add release notes for 2.3.8, 2.1.7 &
+	2.2.7.
+
+2013-03-11  Andrew John Hughes  <gnu.andrew at member.fsf.org>
+
+	PR1340: Simplify the rewriter, avoiding concurrency.
+	* rewriter/com/redhat/rewriter/ClassRewriter.java:
+	Always use the single threaded executor.
+
 2013-02-21  Andrew John Hughes  <gnu_andrew at member.fsf.org>
 
 	* NEWS: Add release notes for 2.3.7, 2.1.6 &
diff -r 3506c375241e -r 898867dc123e NEWS
--- a/NEWS	Thu Feb 21 06:37:07 2013 +1100
+++ b/NEWS	Tue Mar 12 20:04:59 2013 +0000
@@ -679,6 +679,52 @@
   - Set UNLIMITED_CRYPTO=true to ensure we use the unlimited policy.
   - Set handleStartupErrors to ignoreMultipleInitialisation in nss.cfg to fix PR473
 
+New in release 2.3.8 (2013-03-11):
+
+* Security fixes
+  - S8007014, CVE-2013-0809: Improve image handling
+  - S8007675, CVE-2013-1493: Improve color conversion
+* Backports
+  - S8002344: Krb5LoginModule config class does not return proper KDC list from DNS
+  - S8004344: Fix a crash in ToolkitErrorHandler() in XlibWrapper.c
+  - S8006179: JSR292 MethodHandles lookup with interface using findVirtual()
+  - S8006882: Proxy generated classes in sun.proxy package breaks JMockit
+* Bug fixes
+  - PR1303: Correct #ifdef to #if
+  - PR1340: Simplify the rhino class rewriter to avoid use of concurrency
+  - Revert 7017193 and add the missing free call, until a better fix is ready.
+
+New in release 2.2.7 (2013-03-11):
+
+* Security fixes
+  - S8007014, CVE-2013-0809: Improve image handling
+  - S8007675, CVE-2013-1493: Improve color conversion
+* Backports
+  - S8002344: Krb5LoginModule config class does not return proper KDC list from DNS
+  - S8004344: Fix a crash in ToolkitErrorHandler() in XlibWrapper.c
+  - S8006179: JSR292 MethodHandles lookup with interface using findVirtual()
+  - S8006882: Proxy generated classes in sun.proxy package breaks JMockit
+* Bug fixes
+  - PR1303: Correct #ifdef to #if
+  - PR1340: Simplify the rhino class rewriter to avoid use of concurrency
+  - Revert 7017193 and add the missing free call, until a better fix is ready.
+
+New in release 2.1.7 (2013-03-11):
+
+* Security fixes
+  - S8007014, CVE-2013-0809: Improve image handling
+  - S8007675, CVE-2013-1493: Improve color conversion
+* Backports
+  - S8002344: Krb5LoginModule config class does not return proper KDC list from DNS
+  - S8004344: Fix a crash in ToolkitErrorHandler() in XlibWrapper.c
+  - S8006179: JSR292 MethodHandles lookup with interface using findVirtual()
+  - S8006882: Proxy generated classes in sun.proxy package breaks JMockit
+* Bug fixes
+  - PR1303: Correct #ifdef to #if
+  - Stop libraries being stripped in the OpenJDK build.
+  - PR1340: Simplify the rhino class rewriter to avoid use of concurrency
+  - Revert 7017193 and add the missing free call, until a better fix is ready.
+
 New in release 2.3.7 (2013-02-20):
 
 * Security fixes
diff -r 3506c375241e -r 898867dc123e rewriter/com/redhat/rewriter/ClassRewriter.java
--- a/rewriter/com/redhat/rewriter/ClassRewriter.java	Thu Feb 21 06:37:07 2013 +1100
+++ b/rewriter/com/redhat/rewriter/ClassRewriter.java	Tue Mar 12 20:04:59 2013 +0000
@@ -60,8 +60,8 @@
   /**
    * The executor for submitting rewriting jobs.
    */
-  private static final ExecutorService executor = DEBUG ?
-    Executors.newSingleThreadExecutor() : Executors.newCachedThreadPool();
+  private static final ExecutorService executor = 
+    Executors.newSingleThreadExecutor();
 
   /**
    * The source directory, set once by main.
@@ -290,4 +290,4 @@
     return null;
   }
 
-}
\ No newline at end of file
+}



More information about the distro-pkg-dev mailing list