Import GNU Classpath (libgcj-import-20070727).
[gcc.git] / libjava / classpath / NEWS
1 New in release 0.96
2
3 Runtime interface changes:
4
5 * Add VMFloat.toString(float) and VMFloat.parseFloat(String). Default
6 implementations are the same as previous behavior.
7
8 New in release 0.95 (Apr 23, 2007)
9
10 * Full merge of 1.5 generics work.
11 * Added 1.6 java.util.ServiceLoader support.
12 * The ASM library is now included. A separate copy is no longer
13 needed. gjavah works out of the box now.
14 * The setReadTimeout and getReadTimeout methods have been added to
15 java.net.URLConnection. They are now fully implemented for http URLs.
16 * The java.lang.management implementation now includes the new features
17 added in 1.6
18 * java.util.TimeZone now reads time zone information from the system
19 zoneinfo files (see also runtime interface changes below).
20 * The collection classes have been updated to support all the 1.6
21 additions.
22 * java.util.spi 1.6 package has been added and is used in java.text.
23 * Bootstrappable with OpenJDK javac compiler
24 (use configure --with-javac).
25 * Large speedups (and locking behaviour updated) in Graphics2D cairo
26 and freetype support.
27 * Better detection of browser plugin mechanism for mozilla, iceweasel,
28 firefox on various platforms.
29 * Inclusion of generic javadoc classes in tools.zip to support more
30 javadoc processing tools.
31 * Added documentation for command lines options for the included GNU
32 Classpath Tools gjar, gjavah, gnative2ascii, gorbd, grmid,
33 grmiregistry, gserialver and gtnameserv.
34
35 Runtime interface changes:
36
37 * gnu.java.lang.management.VMThreadMXBeanImpl has gained three new
38 optional native methods to allow the 1.6 version of the threading
39 bean to be supported. One (getMonitorInfo) fills in information
40 about object monitor locks held by a thread and is only required
41 if the monitoring of object monitor locks is supported by the VM.
42 The other two (findDeadlockedThreads and getLockInfo) are related
43 to ownable synchronizers (part of the java.util.concurrent suite)
44 and only required if monitoring of locks relating to these is
45 supported by the VM.
46 * java.util.VMTimeZone and java.util.TimeZone have been refactored
47 to simplify the reference implementation. VMTimeZone.readtzFile()
48 and VMTimeZone.skipFully() have been removed, and a new method
49 VMTimeZone.readSysconfigClockFile() has been introduced.
50 * VMs need to set the system property "gnu.java.util.zoneinfo.dir"
51 to point to the directory where zoneinfo files live. In libgcj
52 this is set to the value of the TZDATA environment variable, or
53 "/usr/share/zoneinfo" if this is not set.
54 * VMFile has been extended to support new 1.6 methods (canExecute,
55 setReadable, setWritable, setExecutable).
56
57 New in release 0.93 (Dec 8, 2006)
58
59 * CORBA objects that exist on the same virtual machine and only are connected
60 to another ORB are now accessed directly and no longer via network. It is
61 the same feature that RMI implementation provides. These faster calls should
62 be completely transparent, as the parameters are cloned, where required.
63 Currently the direct calls are only possible for the non-deprecated objects
64 that are connected to the ORB via POA.
65 * The 'javah' tool has been added. It requires the ASM library
66 (see asm.objectweb.org); it can be enabled with the --with-asm
67 option to configure
68 * Added the rmi and corbaname URL context factories for JNDI.
69 * Fixes in the JNDI InitialContext now allows to plug-in user implementation.
70 * Removed currentClassLoader method from
71 vm/reference/java/io/ObjectInputStream.java.
72 * Added firstNonNullClassLoader method to
73 vm/reference/gnu/classpath/VMStackWalker.java. VMs are encouraged to
74 provide a more efficient implementation.
75 * Added aton method to vm/reference/java/net/VMInetAddress.java.
76 * NetworkInterface has been implemented for systems that provide the
77 `getifaddrs' function.
78 * java.nio.channels.Selector implementations have been added that use
79 the kqueue notification mechanism on Mac OS X and *BSD, and that use
80 the epoll notification mechanism on Linux 2.6.
81 * java.nio has been refactored to support more non-blocking operations
82 natively. Blocking IO classes have been refactored to call
83 non-blocking classes. Non-blocking accepts, connects, and
84 scatter-gather IO should now be better supported.
85 * HTML support for Swing has been greatly enhanced.
86
87 Runtime interface changes:
88
89 * java.net.VMNetworkInterface and java.net.NetworkInterface have been
90 updated to keep native-modified state in the former, and to simplify
91 the native code in our reference implementation.
92 * gnu.java.nio.VMChannel has been expanded to better support native
93 non-blocking IO. Most native state data (such as file descriptor
94 integers) has been abstracted away into private state in the runtime
95 interface.
96 * gnu.java.nio.VMPipe has been similarly changed.
97 * gnu.java.net.VMPlainSocketImpl has been changed to remove some
98 functionality now provided by VMChannel; datagram socket-specific
99 methods have also been moved here, deprecating VMPlainDatagramSocketImpl.
100 * gnu.java.net.VMPlainDatagramSocketImpl removed.
101
102 New in release 0.92 (Aug 9, 2006)
103
104 * GConf is used as a backend for java.util.prefs. GNU Classpath
105 thanks to Mario Torre for this contribution!
106 * libjawtgnu.so has been renamed libjawt.so for binary compatibility.
107 libjawt.so should be installed in a VM-specific directory rather
108 than directly in /usr/lib. Proprietary VMs put their libjawt.so
109 implementations in VM-specific directories but search /usr/lib first.
110 If GNU Classpath's libjawt.so is installed in /usr/lib it will create
111 problems for people who use a proprietary VM to run AWT Native
112 Interface applications.
113 * The GdkGraphics2D backend has been made the default. There is no
114 longer an explicit dependency on Cairo, the --enable-gtk-cairo
115 configure option is gone, and GTK 2.8 or higher is now required to
116 build the GTK peers.
117 * A Mozilla plugin, 'gcjwebplugin', is now included. It introduces a
118 dependency on the Mozilla plugin support headers and libraries.
119 * New java implementations of png and gif imageio readers and writers.
120 * A tools.texinfo document has been created and now includes
121 documentation about:
122 * appletviewer
123 * gcjwebplugin
124 * jarsigner
125 * keytool
126 * Several new tools are now included:
127 * appletviewer
128 * jar
129 * native2ascii
130 * serialver
131 * keytool
132 * jarsigner
133 A new configure option --enable-tool-wrappers causes wrapper
134 binaries to be built for VMs that support the JNI Invocation API.
135 * We've imported the JSR 166 (concurrency) reference implementation.
136 * javax.sound.midi providers have been added to read and
137 write standard MIDI files.
138 * A javax.sound.sampled .au and .wav file readers have been added.
139 * New Java Virtual Machine Tool Interface header, jvmti.h.
140 * AWT peers for X Windows based on Escher (a pure java X protocol
141 implementation) have been added. So far it supports AWT 1.1 style
142 Graphics, image loading via ImageIO (PNG, GIF and BMP images in this
143 release), top level components as well as mouse and keyboard input.
144 It is capable of running many Swing applications. Graphics2D and
145 AWT widgets are not yet supported with this peer set.
146 * GConf based util.peers backend (see the --enable-gconf-peer and
147 --enable-default-preferences-peer configure options).
148 * Support for batch importing trusted certificates for use with ssl
149 connections (see script/import-cacerts.sh).
150 * NIO scatter-gather channel support.
151
152 Runtime interface changes:
153
154 * A new class, VMURLConnection, is used to implement
155 URLConnection.guessContentTypeFromStream. The reference
156 implementation uses libmagic (and falls back to doing nothing if
157 libmagic is not available).
158 * The method gnu.java.io.PlatformHelper.toCanonicalForm() has been
159 replaced with a JNI implementation of VMFile.toCanonicalForm() for
160 GNU/Posix systems.
161 * A new class, VMRuntimeMXBeanImpl, is used to implement
162 the low-level support of the runtime management bean.
163 VMs should use it to supply the input arguments and start
164 time of the VM. In addition, one of sun.boot.class.path
165 or java.boot.class.path should be defined by the VM to
166 support the optional boot class path access functionality.
167 * The Unsafe class was moved back to the place expected by the JSR 166
168 reference implementation. We've also added a couple other new VM
169 classes to support the JSR 166 code -- sun.reflect.Reflection and
170 sun.reflect.misc.ReflectUtil.
171 * Another new class, VMClassLoadingMXBeanImpl, is used to implement
172 the low-level support of the class loading management bean.
173 VMs need to supply it with information about how many classes
174 are currently loaded, how many have been unloaded and whether
175 verbose class loading output is on or off. Provision should also
176 be made for the latter to be toggled at runtime.
177 * VMThreadMXBeanImpl is used to implement the low-level support
178 of the thread management bean. Providing this interface requires
179 providing a fair amount of information about threads, including
180 optional time and contention monitoring, and instances of the
181 new ThreadInfo class in java.lang.management. getState() has also
182 been added to the VMThread interface; this is required by the bean
183 as well as java.lang.Thread.
184 * VMMemoryMXBeanImpl is used to implement the low-level support
185 of the memory management bean. Providing this interface requires
186 providing information about the levels of heap and non-heap memory,
187 and the number of objects eligible for garbage collection.
188 * VMCompilationMXBeanImpl is used to allow for optional compilation
189 time support for Just-In-Time compilers.
190 * VMMemoryPoolMXBeanImpl is used to implement the low-level support
191 of the memory pool beans. Providing this interface requires
192 providing memory usage statistics for each supported bean.
193 * VMManagementFactory provides the names of the memory pools,
194 memory managers and garbage collectors maintained by the virtual
195 machine. These are used to create the beans by the ManagementFactory.
196 * VMMemoryManagerMXBeanImpl and VMGarbageCollectorMXBeanImpl provide
197 low-level support for memory managers (including the specific subclass
198 of garbage collecting memory managers). The interfaces for these
199 require no more than enumerating the number of collections and the
200 time spent (for garbage collectors) and a relationship to the memory
201 pools (for all), along with a validity check.
202
203 New in release 0.91 (May 15, 2006)
204
205 * Experimental activation (java.rmi.activation) support, including RMI
206 activation daemon and persistent naming service tools.
207 * Experimental printing support: The API implementation of the javax.print
208 packages has been finished and work on the printing provider implementation
209 started. Currently supported features from the Java Print Service API are
210 print service discovery (CUPS registered printers), single document print
211 jobs and support for client-formatted print data. An example application
212 (see: examples/gnu/classpath/examples/print/Demo) has been added to show
213 the API usage for service discovery and printing of files.
214 * The GTKToolkit now gives access to the both the system clipboard and
215 system selection.
216 * Custom mouse cursor support has been added to the gtk+ peers. And cursors
217 can now also be set on light-weight components.
218 * Free Swing improvements: Support for OceanTheme has been mostly completed
219 and turned on as default Metal theme. X11-style Copy and Paste behavior in
220 text components with the middle mouse button. Support cursor changes on
221 various components when resizing. Support for Look and Feel window
222 decorations has been added.
223 * Updated locale data information to CLDR 1.3.
224 * Various bugs in Classpath's SecureRandom implementations have been
225 fixed; that class now respects the "securerandom.source" security
226 property and the "java.security.egd" system property.
227 * Support for assistive technologies has been added to AWT and Swing.
228
229 Runtime interface changes:
230
231 * A new class, VMArray, is now available which separates the native
232 array creation method from java.lang.reflect.Array.
233 * A new class, gnu.classpath.Unsafe, is provided for handling the
234 new low-level operations required by java.util.concurrent.
235 * The reference implementations of Method, Constructor, and Field
236 now have a new native getModifiersInternal() method. The public
237 getModifiers() method in each case has been rewritten in terms of
238 this method.
239 * The reference implementation of VMThread has been updated to handle
240 the new Thread.UncaughtExceptionHandler support.
241 * A new class, java.security.VMSecureRandom, is now available that is
242 used to generate random numbers for seeding cryptographically-secure
243 pseudo-random number generators.
244 * VMClass and the reference implementations of Method, Constructor and Field
245 now include a number of 1.5 methods imported from the generics branch.
246 These are all optional (in the sense that the methods associated with them
247 merely fail on use if the VM doesn't provide them, rather than the
248 VM failing altogether), but VMs should aim to support them where possible.
249 * The implementation of java.lang.instrument has been merged to the main
250 branch from the generics branch.
251 * The VM interfaces of the main branch and the generics branch are now
252 consistent with one another. As a result, the main branch includes an
253 additional environ() function in VMSystem and an additional argument has
254 been added to nativeSpawn() in VMProcess.
255 * Annotation support is now available in the main branch, if the VM supports
256 it. The VM should implement VMClass.getDeclaredAnnotations,
257 Constructor.getAnnotation, Constructor.getDeclaredAnnotations,
258 Field.getAnnotation, Field.getDeclaredAnnotations, Method.getAnnotation and
259 Method.getDeclaredAnnotations.
260 * java.lang.Package now has a new constructor that takes the defining
261 ClassLoader as an extra argument. If you use a custom version of
262 VMClassLoader, please switch it to use this constructor.
263 * The reference implementation of VMClassLoader.getBootPackages() now
264 reads the META-INF/INDEX.LIST resource using the java.boot.class.path
265 system property.
266
267 New in release 0.90 (March 6, 2006)
268
269 * Free Swing improvements: JTable columns are rearrangeable and
270 resizeable with mouse. Painting and scrolling are now much
271 faster. Plain text components now support highlighting and
272 copy+paste to the system clipboard. Support for styled text has been
273 improved, including some very basic HTML support. JFileChooser is
274 now usable. Global event dispatching has been implemented. Memory
275 consumption of Swing components has been reduced. Lots of general
276 bugfixes. Added new system property to turn off Graphics2D use in
277 Swing, even if Graphics2D is available: gnu.javax.swing.noGraphics2D
278
279 * AWT. Improved support for mixing "lightweight" and "heavyweight"
280 Components in Containers. Better support for dynamically updated
281 menus. Better 1.0 event model support for Scrollbars. Better class
282 documentation of gtk+ awt peers.
283
284 * GNU Crypto and Jessie have been merged into GNU Classpath; this
285 provides Classpath with a wide array of cryptographic algorithms
286 (ciphers, message digests, etc.) and implementations of SSL version
287 3 and TLS version 1. These roughly complement the public
288 `java.security.' `javax.crypto,' and `javax.net.ssl' packages, and
289 are service providers implementing the underlying algorithms.
290
291 * Updated HTTP and FTP URLConnection protocol handlers. HTTPS support
292 out of the box.
293
294 * Unicode 4.0.0 is supported. Character now includes support for using
295 ether a char or an int to identify code points.
296
297 * More correct handling of Object methods and serialization support
298 for Proxy and abstract classes.
299
300 * The new folder tools includes GIOP and RMI stub and tie source code
301 generators, IOR parser and both transient and persistent GIOP naming
302 services.
303
304 * Added experimental support for dynamic creation of the RMI stubs
305 using proxy classes. The rmic compiler is no longer required (unless
306 for research and specific stubs).
307
308 * XML validaton support for RELAX NG and W3C XML schema namespace
309 URIs. RELAX NG pluggable XML schema datatype library API and an
310 implementation for XML Schema Datatypes
311 (http://www.w3.org/TR/xmlschema-2/).
312
313 * Updated StAX implementaton to be compatible with final JSWDP 2.0.
314
315 * The default back end for java.util.prefs has been changed. The new
316 default is capable of saving and restoring preferences to and from
317 the file system.
318
319 * javax.imageio.plugins.bmp implementation.
320
321 * Added --enable-collections configure option which builds
322 "collections.jar", a 1.1 VM compatibility jar.
323
324 * gnu.regexp updated from GNU/Posix syntax to support util.regex
325 syntax including various Unicode blocks, categories and properties.
326
327 Runtime interface changes:
328
329 * A new class, VMMath, is now available which separates the native
330 mathematical functions from java.lang.Math. The previous fdlibm
331 implementation now forms the reference material for this class.
332
333 * Updated VMObjectInputStream class to return Thread context class
334 loader if no other class loader is found.
335
336 * Updated documentation on InstrumentationImpl in vmintegration guide.
337
338 New in release 0.20 (Jan 13, 2006)
339
340 * New StAX pull parser and SAX-over-StAX driver. Lots of DOM, SAX/StAX,
341 XPath and XSLT improvements. Support for XInclude and XML Base added.
342 Conformance is now regularly tested against various test-suites at
343 http://builder.classpath.org/xml/ See also doc/README.jaxp.
344
345 * Full beans XMLEncoder implementation.
346
347 * javax.sound.sampled implementation.
348
349 * javax.print.attribute and javax.print.event implementated.
350
351 * Lots of new datatransfer, print swing and swing.text work and optimization.
352
353 * Additional 1.5 support. Including new (separate) generic branch release.
354
355 * SecurityManager cleanups and start of review of all Permission checks
356 (includes adding lots of new checks to the Mauve test-suite).
357
358 * Buildable on cygwin.
359
360 * Fully buildable as "in-workspace" library-plus-vm inside (native) Eclipse
361 see http://developer.classpath.org/mediation/ClasspathHackingWithEclipse
362
363 * Full example that shows a real world CORBA and Free Swing implementation.
364 See examples/gnu/classpath/examples/CORBA/swing/README.html
365
366 * A list of bug fixes can be found at:
367 http://gcc.gnu.org/bugzilla/buglist.cgi?product=classpath&target_milestone=0.20
368
369 Runtime interface changes:
370
371 * New method VMStackWalker.getClassLoader() was added to avoid an infinite
372 loop between getCallingClassLoader() and Class.getClassLoader().
373
374 * The included fdlibm implementation has seen several cleanups to handle
375 new architectures and namespacing issues (in particular for ppc, darwin
376 and non-C99 compilers). Please double check any arithmetic test against
377 new platforms/runtimes.
378
379 * The gnu.java.net.Plain[Datagram]Socket implementations have been
380 turned into VM reference classes with JNI/Posix implementations.
381
382 New in release 0.19 (Nov 2, 2005)
383
384 * The Swing RepaintManager has been reworked for more efficient painting,
385 especially for large GUIs.
386
387 * The Swing layout manager OverlayLayout has been implemented, the BoxLayout
388 has been rewritten to make use of the SizeRequirements utility class and
389 caching for more efficient layout.
390
391 * Improved accessibility support for Swing.
392
393 * The java.net.HttpURLConnection implementation no longer buffers the
394 entire response body in memory. This means that response bodies
395 larger than available memory can now be handled.
396
397 * The Andrew Watson, Vice President and Technical Director of the Object
398 Management Group, has officially assigned us 20 bit Vendor Minor Code Id:
399 0x47430 ("GC") that will mark remote Classpath - specific system exceptions.
400 Obtaining the VMCID means that GNU Classpath now is a recogniseable type of
401 node in a highly interoperable CORBA world.
402
403 * Classpath now includes the first working draft to support the RMI over
404 IIOP protocol. The current implementation is capable for remote invocations,
405 transferring various Serializables and Externalizables via RMI-IIOP protocol.
406 It can flatten graphs and, at least for the simple cases, is interoperable
407 with Sun's jdk 1.5.
408
409 * Qt4 configury switches for OS-X. Additional to the --enable-qt-peer, OS-X
410 users with a Qt4 installation can build the qt-peers with the argument
411 --with-qt4dir=<Qt4-installation-dir>.
412
413 * Significant progress has been made in the implementation of the
414 javax.swing.plaf.metal.* package, with most UI delegates in a working state
415 now. Please test this with your own applications and provide feedback that
416 will help us to improve this package.
417
418 * The GUI demo (gnu.classpath.examples.swing.Demo) has been extended to
419 highlight various features in our free-swing implementation. And includes
420 a look and feel switcher (Metal default, Ocean or GNU).
421
422 Runtime interface changes:
423
424 * Changed implementation of VMClassLoader.getPackage(s) : new method
425 VMClassLoader.getBootPackages should be implemented by the vm, and sould
426 return a string array of boot package names ("java.lang", "java.net", ...).
427 Feedback from vm implementors for usability and relevance of the
428 getBootPackages method would be greatly appreciated.
429
430 New in release 0.18 (Sep 6, 2005)
431
432 * GNU JAWT implementation, the AWT Native Interface, which allows direct
433 access to native screen resources from within a Canvas's paint method.
434 GNU Classpath Examples comes with a Demo, see examples/README.
435 * awt.datatransfer updated to 1.5 with supports for FlavorEvents.
436 The gtk+ awt peers now allow copy/paste of text, images, uris/files
437 and serialized objects with other applications and tracking
438 clipboard change events with gtk+ 2.6 (for gtk+ 2.4 only text and
439 serialized objects are supported). A GNU Classpath Examples
440 datatransfer Demo was added to show the new functionality.
441 * org.omg.PortableInterceptor and related functionality in other packages
442 is now implemented:
443 - The sever and client interceptors work as required since 1.4.
444 - The IOR interceptor works as needed for 1.5.
445 * The org.omg.DynamicAny package is completed and passes the prepared tests.
446 * The Portable Object Adapter should now support the output of the
447 recent IDL to java compilers. These compilers now generate servants and
448 not CORBA objects as before, making the output depended on the existing
449 POA implementation. Completing POA means that such code can already be
450 tried to run on Classpath. Our POA is tested for the following usager
451 scenarios:
452 - POA converts servant to the CORBA object.
453 - Servant provides to the CORBA object.
454 - POA activates new CORBA object with the given Object Id (byte array)
455 that is later accessible for the servant.
456 - During the first call, the ServantActivator provides servant for this
457 and all subsequent calls on the current object.
458 - During each call, the ServantLocator provides servant for this call
459 only.
460 - ServantLocator or ServantActivator forwards call to another server.
461 - POA has a single servant, responsible for all objects.
462 - POA has a default servant, but some objects are explicitly connected
463 to they specific servants.
464 The POA is verified using tests from the former cost.omg.org.
465 * The javax.swing.plaf.multi.* package is now implemented.
466 * Editing and several key actions for JTree and JTable were implemented.
467 * Lots of icons and look and feel improvements for Free Swing basic and
468 metal themes were added. Try running the GNU Classpath Swing Demo in
469 examples (gnu.classpath.examples.swing.Demo) with:
470 -Dswing.defaultlaf=javax.swing.plaf.basic.BasicLookAndFeel
471 -Dswing.defaultlaf=javax.swing.plaf.metal.MetalLookAndFeel
472 * Start of styled text capabilites for java.swing.text.
473 * NIO FileChannel.map implementation, fast bulk put implementation for
474 DirectByteBuffer (speeds up this method 10x).
475 * Split gtk+ awt peers event handling in two threads and improve gdk lock
476 handling (solves several AWT lock ups).
477 * Speed up awt Image loading.
478 * Updated TimeZone data against Olson tzdata2005l.
479 * Make zip and jar UTF-8 "clean".
480 * "native" code builds and compiles (warning free) on Darwin and Solaris.
481
482 Runtime interface changes:
483
484 * All native resource "pointers" in the VM interface classes are now exposed
485 as gnu.classpath.Pointer objects. This might impact runtimes that
486 optimize and support java.nio.DirectByteBuffers. Creating these classes
487 and accessing the contents as void * pointers for the native reference JNI
488 implementation is done through the JCL_NewRawDataObject and JCL_GetRawData
489 functions.
490 * Simplified the Class/VMClass interface.
491 * Removed loadedClasses map from ClassLoader. It's now the VMs responsibility
492 to manage the list of defined and loaded classes for each class loader.
493 * Moved native methods from java.lang.reflect.Proxy to VMProxy.
494 * Added hook to VMClassLoader to allow VM to do class caching.
495
496 New Untested/Disabled Features:
497
498 The following new features are included, but not ready for production
499 yet. They are explicitly disabled and not supported. But if you want
500 to help with the development of these new features we are interested
501 in feedback. You will have to explicitly enable them to try them out
502 (and they will most likely contain bugs). If you are interested in any
503 of these then please join the mailing-list and follow development in
504 CVS.
505
506 * QT4 AWT peers, enable by giving configure --enable-qt-peer.
507 * JDWP framework, enable by deleting the jdwp references from
508 lib/standard.omit and vm/reference/standard.omit. No default
509 implementation is provided. Work is being done on gcj/gij integration.
510 * StAX java.xml.stream, enable by deleting the gnu.xml.stream and
511 java.xml.stream references in lib/standard.omit.
512
513 New in release 0.17 (Jul 15, 2005)
514
515 * gnu.xml fix for nodes created outside a namespace context.
516 * Add support for output indenting and cdata-section-elements output
517 instruction in xml.transform.
518 * xml.xpath corrections for cases where elements/attributes might have
519 been created in non-namespace-aware mode. Corrections to handling of
520 XSL variables and minor conformance updates.
521 * DefaultMutableTreeNode preorder, postorder, depthFirst and breadthFirst
522 traversal enumerations implemented.
523 * JInternalFrame colors and titlebar draw properly.
524 * JTree is working up to par (icons, selection and keyboard traversal).
525 * JMenus were made more compatible in visual and programmatic behavior.
526 * JTable changeSelection and multiple selections implemented.
527 * JButton and JToggleButton change states work properly now.
528 * JFileChooser fixes.
529 * revalidate and repaint fixes which make Free Swing much more responsive.
530 * Correctly handle system call interrupts and timeouts in native nio
531 and net functions.
532 * MetalIconFactory implemented.
533 * Handle image loading errors correctly for gdkpixbuf and MediaTracker.
534 * Added Tree World to GNU Classpath examples Free Swing demo.
535 * FileChannel.lock() and FileChannel.force() implemented.
536 * java.util.logging.FileHandler now rotates files.
537 * Better handle GDK lock. Properly prefix gtkpeer native functions (cp_gtk).
538 * Corba bug fixes and documentation updates.
539 * Updated gcj build infrastructure.
540 * Documentation fixes all over the place.
541 See http://developer.classpath.org/doc/
542 * VM Integration Guide updates with a full section on VM/Classpath hooks.
543
544 New in release 0.16 (Jun 30, 2005)
545
546 * Better GTK scrollbar peer implementation when using GTK >= 2.6.
547 * GdkGraphics2D has been updated to use Cairo 0.5.x APIs.
548 * BufferedImage and GtkImage rewrites. All image drawing operations
549 should now work correctly (flipping requires gtk+ >= 2.6)
550 * Future Graphics2D, Image and Text work is documented at:
551 http://developer.classpath.org/mediation/ClasspathGraphicsImagesText
552 * Free Swing Top-Level Compatibility. JFrame, JDialog, JApplet,
553 JInternalFrame, and JWindow are now 1.5 compatible in the sense that you
554 can call add() and setLayout() directly on them, which will have the same
555 effect as calling getContentPane().add() and getContentPane().setLayout().
556 * The JTree interface has been completed. JTrees now recognizes mouse clicks
557 and selections work, but the visual implementation is not yet complete.
558 Work on expansion and collapsing of the tree nodes is being implemented.
559 * BoxLayout works properly now.
560 * Fixed GrayFilter to actually work.
561 * Metal SplitPane implemented.
562 * Lots of free swing text and editor stuff work now.
563
564 * When gtk+ 2.6 or higher is installed the default log handler will produce
565 stack traces whenever a WARNING, CRITICAL or ERROR message is produced.
566
567 * The CORBA implementation is now a working prototype that should support
568 features up till 1.3 inclusive.
569 We would invite groups writing CORBA dependent applications to
570 try Classpath implementation, reporting any possible bugs.
571
572 The CORBA prototype is interoperable with Sun's implementation v 1.4,
573 transferring object references, primitive types, narrow and wide
574 strings, arrays, structures, trees, abstract interfaces and
575 value types (feature of CORBA 2.3) between these two platforms.
576 The remote exceptions are transferred and handled correctly.
577 The stringified object references (IORs) from various sources are
578 parsed as required.
579 The transient (for current session) and permanent (till jre restart)
580 redirections work.
581 Both Little and Big Endian encoded messages are accepted.
582 The implementation is verified using tests from the former cost.omg.org.
583 The current release includes working examples (see the examples directory),
584 demonstrating the client-server communication, using either CORBA Request
585 or IDL-based stub (usually generated by a IDL to java compiler).
586 These examples also show how to use the Classpath CORBA naming service.
587 The IDL to java compiler is not yet written, but as our library must be
588 compatible, it naturally accepts the output of other idlj implementations.
589
590 * New --with-vm-classes configure option, and new 'build' setting
591 for --with-glibj. (Only for integrators.)
592
593 Runtime interface changes:
594
595 * Start of a generic JDWP framework in gnu/classpath/jdwp.
596 This is unfinished, but feedback (at classpath@gnu.org) from runtime
597 hackers is greatly appreciated. Although most of the work is currently
598 being done around gcj/gij we want this framework to be as VM neutral as
599 possible. Early design is described in:
600 http://gcc.gnu.org/ml/java/2005-05/msg00260.html
601 * Native method VMClass.getModifiers() now takes an additional
602 boolean parameter.
603 * Deprecated native method VMClassLoader.defineClass(ClassLoader,
604 String, byte[], int, int) has been replaced by
605 VMClassLoader.defineClass(ClassLoader, String, byte[], int, int,
606 ProtectionDomain)
607 * VMClassLoader.loadClass(String name, boolean resolve) is now native,
608 replacing the former version which just returned null.
609 * Deprecated native method VMClassLoader.getPrimitiveClass(String) has
610 been replaced by new native method VMClassLoader.getPrimitiveClass(char).
611 * Previously empty implementations of methods VMThread.countStackFrames(),
612 VMThrowable.fillInStackTrace(), and VMThrowable.getStackTrace() have
613 been removed; these methods are now native methods.
614 * Fields "exceptionTypes" and "parameterTypes" have been removed from
615 Contructor.java and getExceptionTypes() and getParameterTypes() are
616 now native methods.
617
618 New in release 0.15 (Apr 29, 2005)
619
620 * The old character encoding framework (gnu.java.io.EncodingManager)
621 has been replaced by a system based completely on nio.charset
622 providers. Many converters have been added, both the io, lang and nio
623 frameworks now use the same set of converters and the whole character
624 stream framework (Readers and Writers) have been optimized. For some
625 workloads this leads to 2x till 20x speedups.
626
627 The default charsets supported are:
628
629 Cp424, Cp437, Cp737, Cp775, Cp850, Cp852, Cp855, Cp857, Cp860, Cp861,
630 Cp862, Cp863, Cp864, Cp865, Cp866, Cp869, Cp874, ISO_8859_1, ISO_8859_13,
631 ISO_8859_15, ISO_8859_2, ISO_8859_3, ISO_8859_4, ISO_8859_5, ISO_8859_6,
632 ISO_8859_7, ISO_8859_8, ISO_8859_9, KOI_8, MS874, MacCentralEurope,
633 MacCroatian, MacCyrillic, MacDingbat, MacGreek, MacIceland, MacRoman,
634 MacRomania, MacSymbol, MacThai, MacTurkish, US_ASCII, UTF_16, UTF_16BE,
635 UTF_16Decoder, UTF_16Encoder, UTF_16LE, UTF_8, UnicodeLittle, Windows1250,
636 Windows1251, Windows1252, Windows1253, Windows1254, Windows1255,
637 Windows1256, Windows1257, Windows1258.
638
639 Many more encoding are supported through the new IconvProvider
640 depending on the platform iconv support. GNU libiconv is recommended.
641 The IconvProvider is currently not enabled by default. To enable it
642 define the system property gnu.classpath.nio.charset.provider.iconv=true.
643 Some runtimes might choose to enable this by default by setting it
644 through VMSystemProperties. We would like to get feedback on whether
645 enabling or disabling the IconvProvider by default results in the
646 highest speedups.
647
648 * Free swing metal and pluggable look and feels have been improved.
649 The GNU Classpath free swing example can now be run with different
650 "skins" by setting the system property swing.defaultlaf to the GNU,
651 Basic or Metal look and feel.
652
653 * Some of the org.omg.CORBA classes and packages have now been
654 implemented. The Savannah bug tracker contains additional tasks for
655 which we are seeking help.
656
657 * Fixed compatibility problems in the java.beans which affected
658 Eclipse's Visual Editor Project.
659
660 * New completely lock free (Inheritable)ThreadLocal implementation.
661
662 * javax.swing.text.rtf framework added which can handle simple (plain)
663 text tokens.
664
665 * Support for parsing html files into Level 2 Document Object Model
666 (org.w3c.dom.html2 and javax.swing.text.html.parser). And a start of
667 javax.swing.text.html framework added.
668
669 Runtime interface changes:
670
671 * jni.h changed to better support compiling runtimes implementing jni;
672 see VM integration guide for details.
673 * New --enable-default-toolkit option to configure can be used to set
674 the fully qualified class name of the default AWT toolkit to use.
675 If not given, the old default of gnu.java.awt.peerk.gtk.GtkToolkit
676 is used.
677 * New --disable-core-jni option can be used to disable building the
678 "core" JNI libraries. This is primarily useful if your VM can use the
679 Gtk peers but not the core JNI libraries.
680 * New system property "gnu.classpath.boot.library.path" can be specified
681 to define the location of the JNI libraries. It is by all means meant
682 ONLY for VM implementors and GNU Classpath hackers. See the hacking
683 guide for more information.
684 * The helper methods currentLoader() and allocateObject() for
685 java.io.ObjectInputStream have been moved to a VMObjectInputStream class.
686 Reference implementations are provided.
687 * java.net.InetAddress now uses VMInetAddress for runtime/platform
688 specific methods getLocalHostname(), getHostByAddr() and
689 getHostByName(). java.net.NetworkInterface now uses VMNetworkInterface
690 for runtime/platform specific getInterfaces() support. Default
691 (Posix/GNU JNI) implementations are provided.
692 * VMClass has a new method getModifiers(Class, boolean) which can be
693 used to get the real modifiers for an inner class or the ones
694 specified by the InnerClasses attribute.
695 * All (possible) runtime specific methods of Object and Double are now
696 in VMObject and VMDouble. Where possible generic reference
697 implementations are provided.
698 * The reference implementation of VMClassLoader now handles zip files
699 on the boot loader class path in getResources().
700
701 Other changes:
702
703 New in release 0.14 (Feb 25, 2005)
704
705 * Character encoders and decoders have been added for:
706 iso-8859-6 (arabic), iso-8859-7 (greek), iso-8859-8 (hebrew),
707 iso-8859-9 (latin-5), iso-8859-13, iso-8859-15 (latin-9), cp1047 (ebcdic),
708 ebcdic-xml-us,ascii, windows-1250, windows-1252, UTF-16BE (Big Endian),
709 UTF-16LE (Little Endian), UTF-32BE (Big Endian), UTF-32LE (Little Endian).
710 * Full documentation for all classes can be generated (again) by using
711 the --with-gjdoc configure option.
712 * javax.awt.imageio support through gdkpixbuf.
713
714 Runtime interface changes:
715
716 * VMSecurityManager has been replaced by gnu.classpath.VMStackWalker.
717 currentClassLoader() is no longer needed, and there are also two new
718 methods with non-native implementations. VM implementors are encouraged
719 to provide more efficient versions.
720 * VMRuntime.nativeLoad() now takes an additional ClassLoader parameter.
721
722 New in release 0.13 (Jan 6, 2005)
723
724 * The http url protocol handler has been replaced with a full HTTP/1.1
725 version from GNU inetlib.
726 * A new ftp url protocol handler has been added also from GNU inetlib.
727 * java.beans has been updated to 1.4 including support for XMLEncoder
728 and XMLDecoder.
729 * The java.util.Locale support is now based on the Common Locale Data
730 Repository (CLDR) Project (see http://www.unicode.org/cldr/).
731 GNU Classpath provides support for more than 250 locales now.
732 This new support is experimental and the GNU Classpath hackers are
733 working together with runtime developers and the unicode consortium
734 to improve them in the future.
735 If your runtime misdetects your locale or if the default locale gives
736 problems please try running with -Duser.language=en and -Duser.region=US
737 to fall back on a known good locale.
738 * Added implementations of javax.xml (JAXP 1.3), org.xml.sax (SAX2) and
739 org.w3c.dom (DOM Level 3) interfaces. It is possible to switch between
740 different implementations AElfred2, GNU DOM, GNU XSL, libxmlj SAX,
741 libxmlj DOM and libxmlj XSL by setting different system properties.
742 Also provided is a preliminary XPath 1.0 implementation.
743 The libxmlj versions are build around libxml2 and libxslt and have to
744 be enabled during build time by the --enable-xmlj configure flag.
745 The current support is equal to the last released GNU JAXP 1.3 release.
746 These packages will be maintained as part of the GNU Classpath core classes
747 in the future. For more information, conformance results and documentation
748 on selecting different implementations see doc/README.jaxp.
749 * More AWT accessible support.
750 * AWT gtk+ peers component layout, dialog placement, keyboard focus
751 handling and text positioning have been improved.
752 * ImageIO interfaces are more complete.
753 * JList, JTable and JTree have been hugely improved.
754 * java.awt.Robot support with GdkRobot in the gtk+ awt peers.
755 Needs XTest Extension (libXtst) XServer support.
756 * New --disable-examples configure argument.
757
758 Runtime interface changes:
759
760 * Added a new method (VMRuntime.enableShutdownHooks) that enables the VM
761 to lazily register an exit handler.
762 * The java.lang.Class constructor now automatically sets the protection
763 domain for array classes, based on the protection domain of the component
764 type class.
765 * New gnu.classpath.VMSystemProperties class. This replaces the
766 system properties initialization in VMRuntime. Note that it is
767 now the VMs responsibility to set one additional property:
768 gnu.cpu.endian should be set to "big" or "little".
769 * VMRuntime.nativeGetLibname() has been renamed to VMRuntime.mapLibraryName()
770 and has only one argument, the name of the library.
771 * String and StringBuffer now call VMSystem.arraycopy() directly and don't
772 go through java.lang.System. Be careful to not initialize java.lang.System
773 early in the bootstrap sequence in your VM runtime interface classes.
774 * Some (wrong) documentation about the behavior of VMThread.sleep(0, 0)
775 has been updated. Also, VMThread.sleep() now has a default non-native
776 implementation, but it is a generic implementation that ignores the
777 nano-seconds argument. Runtime hackers are encouraged to provide a more
778 efficient version.
779 * There is prelimenary support for nio direct byte buffers.
780 See VMDirectByteBuffer. Please contact the GNU Classpath mailinglist when
781 you add support for this to your runtime.
782
783 New in release 0.12 (Nov 14, 2004)
784
785 * GNU Classpath's JAR implementation now has preliminary support for
786 signed entries, for so called "signed JAR" file support. Signed JAR
787 files are one of the key security features of managed runtimes, and
788 allows code to run privileged given unforgeable proofs of identity.
789 * A much improved version of X.509 certificates has been added,
790 including a robust certificate path checking algorithm. Also
791 included is an implementation of the RSA signature scheme.
792 * Full java.awt.color implementation, with all standard ICC profiles,
793 except for PhotoYCC color space.
794 * java.beans 1.4 updates and bug fixes.
795 * java.awt.image support updated to 1.4.
796 * Improved build process. Uses less memory with gcj and C code is
797 buildable with -Werror on most platform. Please configure with
798 --enable-Werror and report any remaining issues.
799 * Big-endian (PowerPC) fixes for native awt GTK+ peers.
800 * Checkstyle support, see scripts/checkstyle-config.xml.
801 * Better AWT focus management fro GTK+ peers.
802 * Much faster and better fonts support
803 (for both gdk Graphics and cairo Graphics2D)
804 * AWT Choice fixes for hidden components.
805 * HTTP Connection Handler fixes for POST support.
806 * Much fuller collection documentation.
807 * Lots of Calendar bug fixes.
808 * More javax.imageio support.
809 * Better AWT Help MenuBar support.
810 * Lookahead support for regular expressions.
811 * Serialization object stream fixes for multiple ClassLoader scenarios.
812 * Swing TabbedPane, ColorChooser and ComboBox improvements.
813 * Start of JTree functionality.
814 * Improved Eclipse 3 support for GNU Classpath based runtimes.
815
816 Runtime interface Changes:
817
818 * New --enable-java-lang-system-explicit-initialization configuration
819 option. (Warning, will be replaced in next release, please consult
820 the mailinglist.)
821 * The reference implementation of VMClassLoader has default
822 implementations for getResource(s) and provides support for a new
823 default getSystemClassLoader implementation.
824
825 New in release 0.11 (Sep 13, 2004)
826
827 * javax.swing.Spring and SpringLayout support.
828 * Added pluggable look and feel support for BasicTextFieldUI and
829 BasicToolBarSeparatorUI.
830 * java.swing.text support for (Default and Layered) Highlighter, FieldView,
831 PlainView, TabExpander and TabableView added.
832 * Start of JTable and JTree implementation.
833 * Internal Swing frames work.
834 * JMenu and JPopupMenu work.
835 * New gtk+ AWT FileDialog peer now based on gtk+2.4 or higher.
836 * java.awt.image LookupTables and kernel support.
837 * Improved java.awt.image.BufferedImage support.
838 * AWT 1.0 event model support.
839 * GNU Classpath now comes with some example programs (see examples/README).
840 * New javax.crypto, javax.crypto.interfaces, javax.crypto.spec, javax.net,
841 javax.net.ssl, javax.security.auth, javax.security.auth.callback,
842 javax.security.auth.login, javax.security.auth.x500, javax.security.sasl
843 and org.ietf.jgss packages are now officially part of GNU Classpath.
844 Extra crypto algorithms can be obtained from the GNU Crypto project,
845 a full TLS implementation is provided by the Jessie project.
846 http://www.gnu.org/software/gnu-crypto/
847 http://www.nongnu.org/jessie/
848 * Frame.setIconImage() support.
849 * AWT GDKGraphics scaling.
850 * New configure flag --enable-gtk-cairo to build Graphics2D implementation
851 build on cairo and pangoft2. Enabled at runtime by defining the system
852 property gnu.java.awt.peer.gtk.Graphics=Graphics2D.
853 * javax.swing.JSpinner implemented.
854 * Extensive documentation update for java.util collection classes.
855 * java.awt.geom completed. Area, Arc2D, Ellipse2D and Line2D implemented.
856 * GNU JAXP is no longer included with GNU Classpath. Runtime, compiler and
857 tool integrators are encouraged to directly integrate GNU JAXP.
858 This release has been tested against GNU JAXP 1.1.
859 http://www.gnu.org/software/classpathx/jaxp/jaxp.html
860 * JColorChooser, JComboBox and JTextField implemented, including example
861 uses in GNU Classpath Examples swing Demo.
862
863 Runtime interface Changes:
864
865 * java.lang.Compiler now uses the new java.lang.VMCompiler; there is
866 a reference implementation that most VMs can use.
867 * java.lang.VMSystem has a new getenv(String) method and a reference C/JNI
868 implementation that should work on most Posix like systems.
869 * java.util.TimeZone has been split into a platform independent class and
870 a platform dependent class VMTimeZone. GNU Classpath comes with a generic
871 way to get at the default time zone for Posix/GNU-like platforms.
872 * [VM]AccessController improvements. In particular it handles
873 `doPrivileged' calls better, and allows for recursive `doPrivileged'
874 calls in the same Thread. (see vm/reference/java/security/)
875
876 New in release 0.10 (Jul 9, 2004)
877
878 * java.net.URL now uses application classloader to load URLStreamHandlers
879 and reuses URLStreamHandlers when URL is reset (but protocol isn't changed).
880 * java.io.File.deleteOnExit() implementation.
881 * java.text multiple new features and bug fixes
882 (only 2 out of the 1000+ java.text Mauve tests now fail).
883 * Better (non-black) default AWT System colors.
884 * AWT lists use GTK treeviews.
885 * Proper AWT focus management has been implemented.
886 * Swing menus and scrollpanes are beginning to work.
887 * Swing splitpanes, dialogs and internal frames were added.
888 * Swing repainting / double buffering was redone.
889 * Font management and Pango DPI conversion fixes.
890 * A lot of AWT imaging and event bugs have been picked out.
891 * More of javax.swing.text has been implemented.
892 * javax.swing.Timer has been reimplemented.
893 * java.security.AccessController has been implemented
894 (see runtime section).
895 * The default java.lang.SecurityManager now uses AccessController.
896 * New java.beans.Statement and Expression implementations.
897 * Small FileChannel implementation speed improvement for traditional
898 JNI based systems.
899 * Regenerated all included JNI header files with gcjh (3.5 CVS),
900 removes extra extern modifier and allows stricter compiler warning.
901 * More C code cleanups (-Wmissing-declarations, -Wmissing-prototypes and
902 -Wstring-prototypes) and jni.h fixes (a few funtion prototype fixes,
903 made it compilable with C++ compilers and jni.h got renamed from jni.h.in).
904 * Double.toString() and Float.toString() now work properly on 64-bit
905 PowerPC systems.
906 * PPC Darwin, arm, x86-64 and s/390 JNI C code compilation fixes.
907 * Build system refactored and removed old Japhar specific support.
908 * The gnu.java.awt.EmbeddedWindow class has been improved, and now
909 supports embedding AWT windows in other top-level X windows.
910 This functionality is required by gcjwebplugin.
911 * gcjwebplugin, an applet viewer that can be embedded into several web
912 browsers, has been extensively tested with this release of classpath.
913 (See http://www.nongnu.org/gcjwebplugin/)
914 * Runtime environments based on GNU Classpath 0.10 should be able to
915 start up Eclipse 3.0 out of the box now.
916
917 Runtime interface Changes:
918
919 * VMProcess.destroy() default implementation fixes.
920 * Fixed the "portable native sync" code; it had been broken since
921 Classpath release 0.06, when we upgraded to GTK+2.
922 Classpath's AWT peers use GTK+. GTK+ uses GLIB. GLIB by default uses
923 the platform's native threading model -- pthreads in most cases.
924 If the Java runtime doesn't use the native threading model, then you should
925 specify --portable-native-sync when configuring Classpath, so that GLIB will
926 use the Java threading primitives instead. (For a superior alternative,
927 see below.)
928 * The VM can set the system property
929 gnu.classpath.awt.gtk.portable.native.sync instead of using the
930 --portable-native-sync configure-type option.
931 See doc/vmintegration.texinfo for details.
932 * We intend that the next release of GNU Classpath will require the VM
933 to provide JNI 1.2. Classpath currently uses only JNI 1.1, except for
934 one JNI 1.2 function: GetEnv(), in the JNI Invocation API.
935 If this poses problems, please raise them on the classpath mailing list.
936 * The reference implementation of VMThread.holdsLock(Object) now has
937 a default implementation written in java. For efficiency and to
938 prevent spurious wakeups a real 'native' runtime version can be supplied.
939 * There is a new java.security.VMAccessController class that runtimes need
940 to implement to properly support SecurityManagers. The default
941 implementation that comes with GNU Classpath makes sure that ANY attempt
942 to access a protected resource is denied when a SecurityManager is
943 installed. Which is pretty secure, but also no very useful.
944 Please see the documentation in
945 vm/reference/java/security/VMAccessController.java,
946 and please give feedback on the GNU Classpath mailinglist whether or not
947 the current AccessController framework is flexible enough.
948
949 New in release 0.09 (May 2, 2004)
950
951 * Includes updated GNU JAXP version from 2004-02-01.
952 * Native C code is now -ansi -pedantic (C89) clean and (almost) -Wall clean.
953 * java.io is now implemented by delegating most tasks directly to java.nio.
954 * Reworked/Optimized implementations of java.nio.Buffer and subclasses.
955 * New javax.print, javax.print.attribute[.standard] and javax.print.event
956 packages and classes.
957 * java.text attributed iterators support.
958 * New javax.imageio, javax.imageio.event and javax.imageio.spi packages and
959 classes.
960 * GNU Classpath can now load service providers that are described via
961 META-INF/services/* resources in extension JARs. This is useful for
962 implementing the various APIs that are supposed to be extensible via
963 custom plugins. For details, please see the documentation of
964 gnu.classpath.ServiceFactory.
965 Application developers are strongly discouraged from calling glibj
966 internal packages. Instead, they might want invoke the newly implemented
967 javax.imageio.spi.ServiceRegistry.lookupProviders, which is a standard
968 method for loading plug-ins.
969 * New developers wanting to help the GNU Classpath project might want to
970 review the greatly expanded Hacker Guide included in the doc directory
971 or online at http://www.gnu.org/software/classpath/docs/hacking.html
972 Also the FAQ has been expanded. And when working from CVS you can now use
973 a simple autogen.sh script to get all autotools magic done automagically.
974 * New configure option --with-glibj which defines how to install the glibj
975 class files as zip, as flat directory files or both (zip|flat|both)
976 [default=zip]. When working with multiple runtimes some of which might
977 not support bootstrap classes in zip files the --with-glibj=both option
978 is recommended (this does take extra disc space).
979 * Two big code drops from the libgcj gui branch updating various java.awt
980 and javax.swing classes.
981 * Multiple java.net.InetAdress fixes and java.rmi fixes.
982 * ServerSocket.accept() now restarts listening when system call interrupted.
983 * Much cleanups to make standard API doc valid XHTML (not completed yet).
984 * A scan for unused variables and non-static invocation of static methods
985 turned up a couple of subtle bugs which have now all been fixed.
986 * The Mauve testsuite has been cleaned up considerable and lots of issues
987 in the GNU Classpath core class implementation have been fixed.
988
989 VM Interface changes:
990
991 * java.lang.Class/VMClass interface was changed. The interface now no
992 longer requires an instance of VMClass for each Class instance. Instead
993 the field vmdata in Class is now of type Object.
994 * GNU Classpath now assumes that JNI calls SetXField can modify final
995 fields. This was previously used silently for System.in/out/err and should
996 be considered as a feature now.
997 * A new VMProcess and a sample JNI C implementation are now provided to
998 make Runtime.exec() work out of the box on some systems. This requires
999 a small change to VMRuntime.exec() when a runtime wants to use it as the
1000 default java.lang.Process implementation.
1001 * The implementation of most of java.io through java.nio moved serveral
1002 runtime specific I/O methods. Most methods do have a generic default native
1003 C JNI implementation in native/jni/java-nio.
1004 * Runtime support methods for java.io.File have been moved to VMFile which
1005 also comes with a default JNI C implementation.
1006 * To support the new service provider mechanism runtimes must make sure that
1007 extension JARs are made accessible via the default context class loader.
1008
1009 New in release 0.08 (2004/12/03)
1010
1011 * java.util.regexp implementation through gnu.regexp wrappers.
1012 * java.net.URI implementation.
1013 * Working implementation of javax.swing.undo.
1014 * java.awt.geom.CubicCurve2D/QuadCurve2D: Can now solve cubic and quadratic
1015 equations; implementation adapted from the GNU Scientific Library.
1016 * Lots of java.awt and gtk+ peer improvements. Also more Swing work. Start
1017 of EmbeddedWindow support.
1018 * BufferedReader speed improvements.
1019 * Improved useabilty of java.text implementation for several applications.
1020 * ObjectInputStream is much faster and more compatible with other
1021 implementations.
1022 * Fix handling of alias methods, where a method has been deprecated in
1023 favour of a new one with the same funtion but a different name.
1024 (See Deprecated Methods section in the GNU Classpath Hacking Guide.)
1025 * javax.print.attribute.standard added.
1026 * Lots of java.nio, java.net, java.io
1027 * Depend on autoconf 2.59+ and automake 1.7+, GCJ 3.3+, jikes 1.18+.
1028
1029 VM Interface changes:
1030 * Split native methods in java.lang.Runtime into java.lang.VMRuntime.
1031 * Resources are now also loaded/needed through the bootstrap classloader
1032 (gnu.regexp needs MessageBundle included in glibj.zip
1033
1034 Fixed Classpath bugs:
1035 #6095 java.awt.geom.QuadCurve2D.solveQuadratic sometimes gives
1036 wrong results
1037 #7099 EventListenerList.getListenerCount should accept null argument
1038 #7104 EventListenerList.add does not work
1039 #7105 EventListenerList.remove does not work
1040 #7107 DefaultBoundedRangeModel.setValue and friends should not throw
1041 And lots more.
1042
1043 New in release 0.07 (2003/30/11)
1044
1045 * Works with libtool 1.5 (and 1.4.3).
1046 * java.awt gtk+ peers now depend on gtk+ 2.2.x and uses pango.
1047 Lots and lots improvements on the peers.
1048 * java.awt.geom.CubicCurve2D, java.awt.geom.QuadCurve2D:
1049 Subdivision and flatness calculation implemented.
1050 * java.awt.geom.FlatteningPathIterator: Working implementation.
1051 * gnu.java.awt.BitwiseXORComposite helper class.
1052 * New rmic compilers (jikes, kjc) support.
1053 * java.text bug fixing and 1.4 updates (Currency).
1054 * Hashtable and HashMap function more similar to other implementations.
1055 * javax.naming and java.beans classloader fixes.
1056 * URL parsing, URLConnection, protocol and (needed) permission fixes.
1057 * More java.nio implementation
1058 (API complete, but implementation not finished yet).
1059 * Lots of java.net code cleanup.
1060 * Improved documentation.
1061 * Numerous bug fixes in almost every package, and lots of updates for
1062 1.4 functionality.
1063 * Fixed Classpath bugs:
1064 #2944 Incorrect synchronization in java.util.logging.ErrorManager
1065 #6075 java.awt.geom.GeneralPath.getCurrentPoint returns wrong results
1066 #6076 java.awt.geom.GeneralPath constructor sometimes hangs
1067 #6089 java.awt.geom.GeneralPath.getPathIterator does not work
1068 [...]
1069
1070 VM Interface changes:
1071
1072 * Thread has been split in a VM-independent Thread class and a VM-dependent
1073 VMThread class.
1074
1075 New in release 0.06 (2003/22/08)
1076
1077 * Update java.awt peers to GTK+2.
1078 * java.awt.GridBagLayout implementation.
1079 * javax.swing.border implementation.
1080 * java.security and java.security.cert updated to 1.4 spec.
1081 * New JNI native target code layer. See native/target/readme.txt.
1082 * --enable-regen-headers configure flag for automatic jni .h file generation.
1083 * Removed workaround for gcj 3.2 and lower, gcj 3.3+ or jikes 1.18+ is now
1084 needed for compiling.
1085 * Lots of improvements and/or new classes for java.awt, java.awt.dnd,
1086 java.awt.font, java.awt.geom, java.awt.image, java.io, java.math, java.net,
1087 java.nio, java.rmi, java.text, java.util, javax.swing, javax.swing.plaf,
1088 javax.swing.text.
1089
1090 VM Interface changes:
1091
1092 * VMClassLoader.loadClass(), the bootstrap classloader called by
1093 Class.forName() and ClassLoader.loadClass(), may now return null when
1094 a class is not found instead of throwing a new ClassNotFoundException.
1095 This is a performance optimization in some cases. This also changes
1096 the Class.forName() reference code.
1097 * Native methods in Class have been moved to VMClass. A few additional
1098 methods are also available in VMClass to provide optional performance
1099 improvements.
1100 * A VM can now supply its own String.intern() strategy through the
1101 VMString class. The supplied VMString reference class implements the
1102 original WeakHashMap strategy.
1103 * Float and Double to/from bits conversion functions can now be supplied by
1104 the VM through VMFloat and VMDouble. Default JNI conversion methods are
1105 supplied.
1106
1107 New in release 0.05 (2003/02/15)
1108 * Supports free Java VMs Jikes RVM and Kissme out of the box, perhaps others.
1109 * Supports GNU Crypto 1.1 as the official provider of cryptographic primitives
1110 and tools for GNU Classpath, available separately from
1111 http://www.gnu.org/software/classpathx/crypto/crypto.html.
1112 * Supports GNU Classpath Tools sub-project of GNU Classpath, official provider
1113 of standard tools such as gjdoc, a javadoc replacement, and others. Future
1114 releases of GNU Classpath will begin to include these tools, available
1115 separately from http://www.gnu.org/software/cp-tools/.
1116 * Java primitives can be used to support AWT native threading, see
1117 the --enable-portable-native-sync configure option which may become the
1118 default in a future release.
1119 * Include file jni.h has been updated to the 1.4 specification.
1120 * VM specific internal types for jobject, jfieldID, and jmethodID are
1121 supported in jni.h. More details can be found by reading the comment
1122 in include/jni.h.in. By default the old definitions are used instead.
1123 * New VM helper class java.io.VMObjectStreamClass which should provide
1124 the hasClassInitializer() method. Previously ObjectStreamClass used
1125 Class.getDeclaredMethod("<clinit>") but according to the spec this
1126 should always throw NoSuchMethodException for class initialization methods.
1127 A JNI reference implementation is provided as
1128 vm/reference/java-io/java_io_VMObjectStreamClass.c
1129 * There have been numerous infrastructure improvements
1130 * Configure option --enable-gjdoc to generate javadoc-like output
1131 * Gjdoc output is included with distribution, see doc/api/html/
1132 * DESTDIR fully supported for install and uninstall
1133 * Runtime.execInternal contract changed to allow for null `env'
1134 and to accept `dir' argument.
1135 * VMObject.getClass() removed. It was never used.
1136 * java.lang.Throwable is now a 'normal' GNU Classpath class that uses the
1137 VM specific java.lang.VMThrowable to get at the VM state and (if needed)
1138 the StackTraceElements for a particular exception. A default implementation
1139 (that does nothing) is provided in vm/reference/java/lang/VMThrowable.java.
1140 * The vm/reference classes from the gnu.vm.stack and their counterparts
1141 ExecutionStack and StackFrame in gnu.java.lang have been removed since they
1142 are not actually part of the VM interface anyway.
1143 * The GPLed com.sun.javadoc classes have been moved to the gjdoc application
1144 from the GNU Classpath Tools project. See for more information the homepage
1145 at: <http://www.gnu.org/software/cp-tools/>.
1146
1147 New in release 0.04 (2002/05/05)
1148 * Additional configure options to disable zip creation and installation as
1149 well as disable gtk peer native compilation.
1150 * Addition of java.nio, java.util.logging, and javax.swing.
1151 * Integration of most or all of the ORP patches to date, the purpose of
1152 which are to make it possible to use JBOSS with ORP and Classpath. This
1153 is still in a testing phase however.
1154 * Significant changes in the reference VM interface that may require
1155 support from the JVMs.
1156 * Lots of bugfixes.
1157
1158 New in release 0.03 (2002/02/08)
1159 * More merges with libgcj have been performed including java.math which now
1160 provides a pure Java implementation of that package.
1161 Current status at <http://gcc.gnu.org/java/libgcj-classpath-compare.html>
1162 * A pure Java implementation (Jazzlib) of java.util.zip is available.
1163 * Added the java.rmi implementation that Transvirtual donated to the FSF.
1164 * Includes jni.h now, eliminating the need to specify a particular VM
1165 via configure.
1166 * No proprietary classes or programs are required to compile.
1167 Compiles out of the box with jikes or gcj.
1168 * Separation of compiling Java source and native libraries through the
1169 configure mechanism. If given no arguments, configure will setup the
1170 subsequent build to only produce Java bytecode (.class files). More
1171 information is available in INSTALLING.
1172 * Support for compiling in a separate directory, as an example you may
1173 cd classpath-0.03; mkdir build; cd build; ../configure; make
1174 * Works with Orp 1.0.9 out of the box. Build instructions can be found at
1175 <http://www.gnu.org/software/classpath/doc/orp.html>
1176 * Lots of bugfixes that were found by using Classpath with the gcj, Orp,
1177 SableVM, KissMe and Jaos VMs. Please use our bugdatabase at
1178 <http://savannah.gnu.org/support/?group_id=85>
1179 * Lots of updates to make Classpath more compliant with the 1.2, 1.3 and 1.4
1180 API specification. The current status can be found at
1181 <http://www.gnu.org/software/classpath/status.html>
1182 * All files are now distributed under the same terms. Added clarification to
1183 GPL exception.
1184
1185 New in release 0.02 (2001/01/06)
1186 * Support for printing exceptions with Japhar 0.09 + patch included in
1187 resource/japhar-0.09.patch.1.
1188 * Typos, assorted bugfixes.
1189
1190 New in release 0.01 (2000/11/20)
1191 * More packages are included now, though many remain untested.
1192 * Support for Japhar 0.09 included.
1193
1194 New in release 0.00 (1999/02/01)
1195 * First official development release of clean room class library for Java
1196 * Following packages included:
1197 -- java.beans
1198 -- java.io
1199 -- java.lang
1200 -- java.lang.reflect
1201 -- java.math
1202 -- java.net
1203 -- java.security (partial and non-functioning)
1204 -- java.security.acl
1205 -- java.security.interfaces
1206 -- java.util
1207 * Code is mostly Java 2 (see JDK 1.2) compatible with some functionality
1208 missing and/or untested.
1209 * Support for Japhar (http://www.japhar.org/) virtual machine is included.
1210 Requires the current Japhar from CVS.
1211 * Extensive javadoc comments for public API included
1212 * Licensed under the GNU Library General Public License (see COPYING.LIB)
1213 * Does not depend on any non-free code - developed in a "clean room"
1214 environment.
1215