Merge pull request #2220 from DOCGroup/revert-2217-jwi-inetwraning
[ACE_TAO.git] / TAO / NEWS
blobfaa25fda7ff3f0b7ccd052a6af580b4072360a7d
1 USER VISIBLE CHANGES BETWEEN TAO-3.1.4 and TAO-3.1.5
2 ====================================================
4 USER VISIBLE CHANGES BETWEEN TAO-3.1.3 and TAO-3.1.4
5 ====================================================
7 - None
9 USER VISIBLE CHANGES BETWEEN TAO-3.1.2 and TAO-3.1.3
10 ====================================================
12 - None
14 USER VISIBLE CHANGES BETWEEN TAO-3.1.1 and TAO-3.1.2
15 ====================================================
17 - TAO_IDL: Added support for the map data type, but this isn't supported in TAO
18   user applications except for local usage
20 USER VISIBLE CHANGES BETWEEN TAO-3.1.0 and TAO-3.1.1
21 ====================================================
23 - Removed deprecated -ORBResources flag
25 USER VISIBLE CHANGES BETWEEN TAO-3.0.11 and TAO-3.1.0
26 =====================================================
28 . Removed usage of ACE service configurator for all
29   POA internal strategy classes
31 USER VISIBLE CHANGES BETWEEN TAO-3.0.10 and TAO-3.0.11
32 ======================================================
34 . Fixed some compiler warnings given by newer compilers
36 . PortableGroup cleanup
38 USER VISIBLE CHANGES BETWEEN TAO-3.0.9 and TAO-3.0.10
39 =====================================================
41 . Various cleanup and using more C++11 features
43 USER VISIBLE CHANGES BETWEEN TAO-3.0.8 and TAO-3.0.9
44 ====================================================
46 . Various cleanup
48 USER VISIBLE CHANGES BETWEEN TAO-3.0.7 and TAO-3.0.8
49 ====================================================
51 . Moved operators<<= and >>= for CORBA::Any to the CORBA namespace.
52   This makes the code compatible with GCC 12 and removes the need for
53   both the -fdelayed-template-parsing workaround (for clang) and defining
54   ACE_ANY_OPS_USE_NAMESPACE in config-macos*.h.
56 . Removed unused configuration option ACE_ANY_OPS_USE_NAMESPACE
58 USER VISIBLE CHANGES BETWEEN TAO-3.0.6 and TAO-3.0.7
59 ====================================================
61 . Fixed an issue with handling spaces in paths for TAO_IDL
63 . TAO_IDL: Fix open file error not mentioning the filename and not checking if
64   the file is actually a directory.
66 USER VISIBLE CHANGES BETWEEN TAO-3.0.5 and TAO-3.0.6
67 ====================================================
69 . Various cleanup and using more C++11 features
71 . Fixed compilation error in the TAO core when using C++20
73 USER VISIBLE CHANGES BETWEEN TAO-3.0.4 and TAO-3.0.5
74 ====================================================
76 . TAO_IDL: Fix bug where floating point constant expressions fail to evaluate.
77   This bug was introduced in 3.0.3
79 USER VISIBLE CHANGES BETWEEN TAO-3.0.3 and TAO-3.0.4
80 ====================================================
82 . Various cleanup and using more C++11 features
84 USER VISIBLE CHANGES BETWEEN TAO-3.0.2 and TAO-3.0.3
85 ====================================================
87 . Support for IDL 4 explicitly-named integer types like `int64` in TAO_IDL.
88   Support for `uint8` and `int8` is limited in TAO. Unlike the larger types,
89   these are new distinct types that are not aliases of existing types covered
90   by the CORBA specification
92 . Added the `tao/idl_features.h` header file for getting the IDL features
93   supported by TAO_IDL. See the file for example usage
95 . TAO_IDL: Fix empty case evaluation on unions with enum discriminators
97 USER VISIBLE CHANGES BETWEEN TAO-3.0.1 and TAO-3.0.2
98 ====================================================
100 . Fix wstring coerce leak in tao_idl
102 . Support C++ Keywords in `DCPS_DATA_SEQUENCE_TYPE`
104 . Minor cleanup
106 USER VISIBLE CHANGES BETWEEN TAO-3.0.0 and TAO-3.0.1
107 ====================================================
109 . Minor cleanup
111 USER VISIBLE CHANGES BETWEEN TAO-2.5.12 and TAO-3.0.0
112 =====================================================
114 . C++11 is now a mandatory compiler feature which is
115   required for TAO
117 . Fixed some CORBA spec mismatches for the CORBA server
118   portable interceptors
120 . Add portspan support to DIOP
122 USER VISIBLE CHANGES BETWEEN TAO-2.5.11 and TAO-2.5.12
123 ======================================================
125 . Removed usage of narrow_from_decl and narrow_from_scope
126   from TAO_IDL, use dynamic_cast now that we have RTTI. Any
127   user that has a custom backend should make the similar
128   changes to their own TAO_IDL backend
130 USER VISIBLE CHANGES BETWEEN TAO-2.5.10 and TAO-2.5.11
131 ======================================================
133 . Simplified some code generated by tao_idl
135 USER VISIBLE CHANGES BETWEEN TAO-2.5.9 and TAO-2.5.10
136 =====================================================
138 . TAO IDL Frontend annotation support extended: (#1125)
139   . All the direct contents of interfaces
140   . Porttypes, eventtypes, components, and all their direct contents
141   . Valuetypes and most of their direct contents
143 . TAO IDL now supports anonymous types when using IDL4. (#1135)
145 USER VISIBLE CHANGES BETWEEN TAO-2.5.8 and TAO-2.5.9
146 ====================================================
148 . With C++11 we are now using (u)int8/16/32/64 to map all
149   CORBA types
151 USER VISIBLE CHANGES BETWEEN TAO-2.5.7 and TAO-2.5.8
152 ====================================================
154 . Fixed handling of transient errors with DII requests
156 . Renamed `VERSION` file to `VERSION.txt` to avoid conflicting with the
157   `version` standard header.
159 USER VISIBLE CHANGES BETWEEN TAO-2.5.6 and TAO-2.5.7
160 ====================================================
162 . Fixed deprecated-copy warnings in TAO_IDL generated code
164 . The TAO IDL Frontend now supports annotations on interfaces, operations, and
165   attributes. (#967)
167 . `idl_global->eval` in the TAO IDL Frontend will now produce error and warning
168   messages. This can be silenced by passing `true` as a second argument. (#967)
170 . Expanded documentation on what can be annotated and roughly how to extend
171   annotation support in `TAO_IDL/docs/annotations.md`. Also made various
172   corrections. (#967)
174 . Fixed invalid free in the TAO IDL Frontend while parsing an IDL wstring
175   literal. (#984)
177 USER VISIBLE CHANGES BETWEEN TAO-2.5.5 and TAO-2.5.6
178 ====================================================
180 . Fixed race condition in ImplRepo on server shutdown/restart (#889)
182 USER VISIBLE CHANGES BETWEEN TAO-2.5.4 and TAO-2.5.5
183 ====================================================
185 . Fixed Memory Leaks in TAO_IDL caused by the addition of Annotations (#811)
187 . Changes in the Annotations API in TAO_IDL, see
188   TAO/TAO_IDL/docs/annotations.md section titled "TAO 2.5.5" for details.
190 USER VISIBLE CHANGES BETWEEN TAO-2.5.3 and TAO-2.5.4
191 ====================================================
193 . Enhanced the ImR to better handle a huge number
194   of servers which use the ImR heavily and each of
195   them does a frequent shutdown/start cycle
197 . The TAO_IDL frontend library now parses all IDL4
198   annotation-related syntax: using and defining annotations.
199   Use the tao_idl command-line options --idl-version and
200   --unknown-annotations to control annotation parsing.
201   Documentation on this feature is located in
202   TAO/TAO_IDL/docs/annotations.md.
204 . TAO_IDL now will return an error status code when
205   passing an invalid command line argument.
206   Backends will have to support this behavior
207   explicitly, see TAO/TAO_IDL/include/idl_defines.h
208   for details.
209   TAO_IDL also accepts new options such as -h,
210   --help, --version, and --syntax-only, the latter
211   of which won't generate any files, just check
212   syntax of the IDL file(s).
213   See tao_idl -h for details.
215 . When using IDL_Files in MPC, generated files will
216   now be placed in the current directory by default,
217   instead of the directory of the IDL file.
218   Use
219     idlflags += -o <IDL_FILE_DIR>
220     gendir = <IDL_FILE_DIR>
221   to output generated files to where the IDL file
222   is.
224 USER VISIBLE CHANGES BETWEEN TAO-2.5.2 and TAO-2.5.3
225 ====================================================
227 . Enhance ssliop and uiop corbaloc parsers
229 USER VISIBLE CHANGES BETWEEN TAO-2.5.1 and TAO-2.5.2
230 ====================================================
232 . Enhance logging within the ImR
234 . Enhance the behavior of the ImR with a per-client
235   activation mode and multiple clients starting in
236   parallel
238 . Modified the SSLIOP::Protocol_Factory::init to
239   process an "-SSLEcName" argument to set the ECDH
240   curve name.
242 USER VISIBLE CHANGES BETWEEN TAO-2.5.0 and TAO-2.5.1
243 ====================================================
245 . Make use of std::atomic when C++11 or newer is enabled
246   for the CORBA reference counting
248 USER VISIBLE CHANGES BETWEEN TAO-2.4.8 and TAO-2.5.0
249 ====================================================
251 . The TAO core libraries now use std::unique_ptr instead
252   of std::auto_ptr when C++11 or newer is enabled
254 USER VISIBLE CHANGES BETWEEN TAO-2.4.7 and TAO-2.4.8
255 ====================================================
257 . Logging enhancements to the TAO core for some possible
258   error situations
260 USER VISIBLE CHANGES BETWEEN TAO-2.4.6 and TAO-2.4.7
261 ====================================================
263 . TAO_IDL parses and discards IDLv4 annotations (applying, not defining)
265 . Fixed Bug 1220 as it applies to the SHMIOP transport.
267 USER VISIBLE CHANGES BETWEEN TAO-2.4.5 and TAO-2.4.6
268 ====================================================
270 . Added support for IPv4-mapped IPv6 addresses in BiDirGIOP+SSLIOP.
272 . Fixed Bug 1220 as it applies to the SSLIOP transport.
274 USER VISIBLE CHANGES BETWEEN TAO-2.4.4 and TAO-2.4.5
275 ====================================================
277 . Extended TAO_IDL with a new -Gsd which enabled the generation of two
278   additional static operations for each interface. _desc_repository_id to
279   retrieve the repository id as string, second _desc_interface_name to
280   return the interface name. Both can be useful in template meta programming
281   use cases where we want to use the repository id or interface name
282   of a specific type.
284 USER VISIBLE CHANGES BETWEEN TAO-2.4.3 and TAO-2.4.4
285 ====================================================
287 . Minor cleanup and fixes to the code generated by TAO_IDL
289 USER VISIBLE CHANGES BETWEEN TAO-2.4.2 and TAO-2.4.3
290 ====================================================
292 . Added enhanced hot-standby feature to FT_Naming_Service. Use
293   tao_ft_naming -h to get a list of new configuration options.
294   This feature addresses performance problems on heavily loaded systems.
296 USER VISIBLE CHANGES BETWEEN TAO-2.4.1 and TAO-2.4.2
297 ====================================================
299 . Fixed some problems with versioned namespaces in the
300   tao_idl generated code
302 . Removed the non-const Any extraction operators which
303   are deprecated within the IDL to C++ specification
304   for a long time. Reduces footprint and simplifies the
305   code. Make sure you are using 'const Foo*' as extraction
306   type for Foo instead of 'Foo*'.
308 USER VISIBLE CHANGES BETWEEN TAO-2.4.0 and TAO-2.4.1
309 ====================================================
311 . Reduced amount of warnings given by newer gcc/clang
312   versions on the generated tao_idl code
314 USER VISIBLE CHANGES BETWEEN TAO-2.3.4 and TAO-2.4.0
315 ====================================================
317 . None
319 USER VISIBLE CHANGES BETWEEN TAO-2.3.3 and TAO-2.3.4
320 ====================================================
322 . ImR enhancement - Added a "force remove" option to the Implementation repository
323   that will remove a server entry from the ImR Locator repository and kill any
324   running instance with a single command.
326 . ImR enhancement - Fix to allow very large ( > 4K ) command line.
328 . ImR enhancement - Enhance the coordination between the Locator and the Activator
329   to tolerate running on heavily loaded systems, in particular when a server process
330   is slow to shut down, and a new server is started before the shutdown is complete
332 . LogWalker utility improvements for handling truncated GIOP buffer dumps, added
333   tracking thread first/last contact times.
335 . Fault-Tolerance improvement - Optimize performance on NFS mounted filesystems. First
336   a deadlock is resolved. Second, use of writer locks is minimized to only when writing
337   is necessary. Third, NFS occasionally causes transient EBADF errors on access, so
338   file access that results in a bad file error is retried before the error is reported
339   to the application.
341 USER VISIBLE CHANGES BETWEEN TAO-2.3.2 and TAO-2.3.3
342 ====================================================
344 . Extended SL2 Security Manager to easily allow non-secure collocated
345   invocations but still disallow non-secure remote invocations
347 . Relaxed upper limit on POA Thread pool size.
349 . Fixed PICurrent improper reset issue. Now slot data is retained through an
350   ImR forced retry.
352 . Bugzilla #4205 fixed.
354 . Defaulted IIOP endpoints on IPv6 enabled systems will no longer append localhost
355   to the IOR if there are no routable IPv6 addresses but there are routable IPv4
356   addresses available.
358 . Improved the performance of the FT-ImR while under very heavy loads.
360 . ImR now may be built on "uses_wchar" platforms.
362 . The temporary directory used by the tao_idl preprocessor may now
363   contain spaces.
365 USER VISIBLE CHANGES BETWEEN TAO-2.3.1 and TAO-2.3.2
366 ====================================================
368 . New SSLIOP Factory option -SSLPassword <password descriptor> facilitates
369   distributing password protected private keys.
371 . New SSLIOP Factory option -SSLVersionList <list> constrains the list of
372   cypher versions allowed.
374 . New SSLIOP Factory option -SSLCheckHost enables a second layer of
375   authentication by comparing the sending hostname to the name or names in
376   the supplied certificate
378 USER VISIBLE CHANGES BETWEEN TAO-2.3.0 and TAO-2.3.1
379 ====================================================
381 . TAO is now hosted on github (https://github.com/DOCGroup/ATCD).
382   As part of the release process we now generate a ChangeLog
383   for each release which is stored in the ChangeLogs directory
385 . Fixed incorrect server status shown by tao_imr after a
386   crashed server has been given a shutdown command
388 USER VISIBLE CHANGES BETWEEN TAO-2.2.8 and TAO-2.3.0
389 ====================================================
391 . New feature added to constrain client ORBs using IIOP to only use local TCP
392   ports spanning a supplied range. Use new ORB_init parameters
393   -ORBIIOPClientPortBase <base> and -ORBIIOPClientPortSpan <count> to specify
394   a range from base to base + count. A base supplied without a span indicates
395   the client may use only a single port. A span supplied without a base is
396   silently ignored.
398 . Fixed the manual activation mode of the Implementation Repository
400 . Reintroduced the restart attempt limiting of the Implementation Repository
402 . Fix a connection leak that occurred when the server side cache purged a
403   Thread-Per-Connection managed entry.
405 USER VISIBLE CHANGES BETWEEN TAO-2.2.7 and TAO-2.2.8
406 ====================================================
408 . Address a problem with Failover between primary and backup ImplRepo locators.
409   Access state information is now shared during a server restart allowing a client
410   to request a new server from either the ImR instance.
412 USER VISIBLE CHANGES BETWEEN TAO-2.2.6 and TAO-2.2.7
413 ====================================================
415 . Improved the performance of the load balancing feature of the tao_ft_naming
416   service. Now a global load balancing strategy may be set via the command line
417   using the new -l ["random"|"round_robin"] argument. The newly implemented
418   random strategy is lockless.
420 . Fixed active server detection when switching from the primary ImR locator to
421   the backup.
423 . Added a new command for the windows NT Naming service CLI to set the service's
424   start up argv list without invoking regedit.
426 . Added a new command for the windows NT Notify service CLI to set the service's
427   start up argv list without invoking regedit.
429 USER VISIBLE CHANGES BETWEEN TAO-2.2.5 and TAO-2.2.6
430 ====================================================
432 . Fix bug with mt_noupcall that allowed upcalls while waiting for a new connection
434 . Improved the performance of dynamic thread pool when activating new threads
436 . Improved the performance of the SYNC_WITH_SERVER oneway synchronization when
437   used in conjunction with the CSD framework and POA thread pools
439 . Fix support for long double types when used with dynamic Anys
441 . Improve functionality and stability of running tests on
442   Android Virtual Device (AVD).
444 USER VISIBLE CHANGES BETWEEN TAO-2.2.4 and TAO-2.2.5
445 ====================================================
447 . Implementation Repository new features added.
448   - New tao_imr kill command to signal an otherwise unresponsive server.
449   - New tao_imr link command to identify groups of POAs that share a server.
450   - ImR is better able to avoid errantly starting multiple server instances.
452 . Added support for Embarcadero C++Builder XE5 using
453   bcc32 in debug and release mode
455 . Added support for Embarcadero C++Builder XE6 using
456   bcc32 in debug and release mode
458 USER VISIBLE CHANGES BETWEEN TAO-2.2.3 and TAO-2.2.4
459 ====================================================
461 . Added a new Client Strategy Factory option, -ORBDefaultSyncScope which
462   takes the label "None", "Transport", "Server", or "Target" to define the
463   sync scope to be used when a Messaging SyncScopePolicy is not in use.
465 . Improved recursive typecode handling
467 . Ended maintenance for Solaris 10 with Sun Studio
469 USER VISIBLE CHANGES BETWEEN TAO-2.2.2 and TAO-2.2.3
470 ====================================================
472 . Fix for extra CDR padding bytes following a request header when there are no
473   IN or INOUT arguments in the request. This happened when a request had at least
474   one OUT argument, and also had a service context that ended off a CDR alignment
475   boundary. While this is not a problem for TAO-TAO messaging, some non-TAO
476   servers will reject such requests with a MARSHAL exception. See bug 4141 for more
477   information.
479 USER VISIBLE CHANGES BETWEEN TAO-2.2.1 and TAO-2.2.2
480 ====================================================
482 . None
484 USER VISIBLE CHANGES BETWEEN TAO-2.2.0 and TAO-2.2.1
485 ====================================================
487 . Implementation Repository is better able to handle high request volume
488   particularly when registered servers are going up and down.
490 . Fixed several memory leaks in the Trading Service
492 . Added support for Embarcadero C++BuilderXE4 using
493   bcc32 in release mode
495 USER VISIBLE CHANGES BETWEEN TAO-2.1.9 and TAO-2.2.0
496 ====================================================
498 . Feature enhancement for the Implementation Repository, the command to
499   list currently active servers, confirmed with a ping, is now asynchronous
500   along with the rest of the implementation.
502 . Added the new -ORBListenerInterface UIPMC option to provide detailed control
503   over which IP interfaces are to be listened on for which mutlicast addresses.
504   This works in a similar way to the existing -ORBPreferredInterfaces
505   ORB_init command line option but for UDP server listeners instead of client
506   senders. See the TAO_UIPMC_Protocol_Factory section in the
507   docs/release/TAO/Options.html document for details. This option allows
508   UIPMC/MIOP to control which interfaces are used by the server to listen
509   for broadcast messages instead of only using the "default" interface.
511   If TAO is built with the #define TAO_ALLOW_UNICAST_MIOP in effect, the
512   normal error checking on joins is short circuited, such that MIOP can
513   be used to send to a unicast address instead of a broadcast group. In general
514   I would not recommend building TAO with this option set, end users should
515   concider using the DIOP protocol instead.
517 . Fix for long standing Valuetype non-conformance (Bugzilla_1391):
519   tao_idl generated ValueType OBV_* classes now also provide a
520   _copy_value() method where this class is supposed to be the final
521   "most derived" class. It is still left to the end user to provide
522   such a method in their own most derived class when this is not
523   the case (as only the final implimentation of the Valuetype will
524   know how this duplication is performed).
526   TAO can be built specifically to treat _copy_value() as a pure virtual
527   function (as per the standard, and now the default behaviour) or,
528   if #define TAO_VALUETYPE_COPY_VALUE_IS_NOT_PURE is defined during the
529   building of TAO, a non-pure virtual function (in which TAO does not
530   require an implimentation to provide the _copy_value() function as per
531   the previous TAO implimentations).
533   TAO doesn't normally use the _copy_value() fuction itself, but if
534   #define TAO_VALUETYPE_COPYING_ANY_INSERTION_USES_COPY_VALUE
535   is in effect during the build, valuetypes "copy" inserted into an any
536   will call _copy_value() instead of increasing the reference count of the
537   actual valuetype being "copied". In such cases obviosuly the _copy_value()
538   method is required to be implemented. There are problems taking this
539   general approach however, as the automatically generated _copy_value() is
540   not capable of duplicating cyclic graphs held in valuetypes, which
541   realistially require the reference counting insertions to be utalised
542   and/or knowledge of the actual use of the valuetype itself. This setting
543   is not recommended.
545 USER VISIBLE CHANGES BETWEEN TAO-2.1.8 and TAO-2.1.9
546 ====================================================
548 . High performance implementation Repository [#4104] - The Implementation
549   Repository Locator has been reimplemented using AMI/AMH to avoid the
550   problem of nested upcalls under heavy load.
552 USER VISIBLE CHANGES BETWEEN TAO-2.1.7 and TAO-2.1.8
553 ====================================================
555 . Fault Tolerant Implementation Repository [#4091] - The Implementation
556   Repository Locator now supports a dual-redundant fault tolerant
557   configuration which provides replication and seamless failover between
558   the primary and backup locator servers.
560 . Implementation Repository interoperable with JacORB servers [#4101] -
561   The Implementation Repository can now be used to manage JacORB
562   3.3 or later application servers.
564 . Fault Tolerant Naming Service [#4092 & #4095] - A new Fault Tolerant
565   Naming Service (tao_ft_naming), provides dual-redundant fault tolerant
566   servers which utilize replication and seamless failover between the
567   primary and backup server. The Fault Tolerant Naming Service can be
568   used to provide load balancing capabilities (only the round-robin load
569   balancing strategy is currently supported) through the use object groups.
570   This feature is supported by a separate utility for managing the object
571   groups (tao_nsgroup) as well as a programatic interface via IDL.
573 . Configurable Persistence Mechanism [#4092] - Extracted persistence
574   mechanism used for storable naming context into Storable_* classes so
575   that it can be reused. Simplified use of storable read/write so that
576   it behaves more like C++ streams to read/write binary and CDR data.
577   Added support for creating a backup mechanism to accomodate
578   potentially corrupted files.  Providing configurable hooks so
579   applications can decide if files are obsolete and need to be written
580   to the persistence store.
582 . ORB Dynamic Thread Pool [#4093] - Added a new ORB thread pool strategy
583   to dynamically adjust the number of threads which the ORB uses to
584   service received calls based on several configuration parameters.
585   These parameters include initial threads, minimum pool threads,
586   maximum pool threads, request queue depth, thread stack size, and
587   thread idle time.
589 . POA Dynamic Thread Pool [#4094] - A new Dynamic Thread Pool and
590   Queuing strategy was created for POA usage. It leverages the
591   existing Custom Servant Dispatching framework for invocation and
592   activation. The strategy also dynamically adjusts the number of
593   threads using configuration parameters similar to the ORB Dynamic
594   Thread Pool. The Dynamic Thread Pool POA Strategy supports
595   applications in associating a single thread pool with either
596   1) a single POA in a dedicated configuration, or 2) multiple
597   POAs in a shared configuration.  The strategy controls a request
598   queue used to accept calls directed to an associated servant and
599   a pool of threads that wait to service calls coming in on a
600   particular queue.
602 . Multiple Invocation Retry [#4096] - Extended TAO to support multiple
603   retry in the presence of COMM_FAILURE, TRANSIENT, OBJECT_NOT_EXIST,
604   and INV_OBJREF exceptions. In addition, retries can occur if it has
605   been detected that a connection has closed while waiting for a reply
606   (currently not available under FreeBSD, OpenVMS, AIX, and Solaris). This
607   feature can be used to support fault tolerant services (specifically
608   the Fault Tolerant Naming and Implementation Repository services
609   described earlier).  The invocation retry support allows
610   configuration on how many times to try to connect to each server and
611   the delay between tries.
613 . Added MIOP configuration options -ORBSendThrottling and -ORBEagerDequeueing,
614   along with #define overrides for their default settings. See the descriptions
615   in the MIOP section of doc/Options.html for their use.
617 USER VISIBLE CHANGES BETWEEN TAO-2.1.6 and TAO-2.1.7
618 ====================================================
620 . Integrated several patches to simplify Debian/Ubuntu
621   packaging
623 . Fixed IDL compiler bug related to internal reinitialization
624   when processing multiple IDL files in a single execution.
626 USER VISIBLE CHANGES BETWEEN TAO-2.1.5 and TAO-2.1.6
627 ====================================================
629 . We only try to load the ObjRefTemplate library at POA
630   creation instead of trying to load it at each servant
631   activation
633 USER VISIBLE CHANGES BETWEEN TAO-2.1.4 and TAO-2.1.5
634 ====================================================
636 . None
638 USER VISIBLE CHANGES BETWEEN TAO-2.1.3 and TAO-2.1.4
639 ====================================================
641 . CORBA::string_dup() and CORBA::string_free() have been enhanced to use
642   non-allocated and shared static null strings. This allows for optimized
643   default null string initialization in CORBA string members and a
644   reduction in redundant dynamic memory management required for such.
645   This enhancement can be removed via the config.h by including
646     #define TAO_NO_SHARED_NULL_CORBA_STRING
648   NOTE that it is a (CORBA spec) requirement that all CORBA::strings are
649   deleted via the CORBA::string_free() and allocated via the
650   CORBA::string_dup() or CORBA::string_alloc() calls; you must not use
651   the c++ keywords new and delete[] directly. Previously it was possiable
652   to ignore this requirement, however if you do so now, this enhancement
653   for null strings will catch you out, as deleting these null
654   CORBA::strings will cause corrupt heap and/or segfaults.
656 . Add support for -ORBPreferredInterfaces option to UIPMC. The form follows
657   the same pattern as IIOP for IPv4 i.e. a local interface IP address should
658   be specified as the mapping. e.g. -ORBPreferredInterfaces 225.*=192.168.0.2.
659   For IPv6 the preferred interface should (neccessarily) be set as an interface
660   name (e.g. 'eth0' for linux, or 'Loopback Pseudo-Interface' on windows) or an
661   interface index number on windows. e.g. -ORBPreferredInterfaces FF01:*=eth0.
662   Also add support an -ORBListenOnAll 0|1 UIPMCFactory option that can
663   be specified in the svc.conf to make the acceptor listen on all multicast
664   enabled interfaces on platforms that this is not the default. This has been
665   observed to be required for the UIPMCAcceptor to open on the most recent
666   Linux distribs.
668   NOTE that there is an obvious elephant in the room in testing this option,
669   we can't rely on any build/test machine having more than one (or any?)
670   interfaces so the test (TAO/orbsvcs/tests/Miop/McastPreferredInterfaces),
671   such as it is, is relying on side effects which may not hold for all platforms.
672   Additionally the IPv6 behaviour isn't even consistent across platforms and
673   the build machines can't be relied upon to have a 'proper' (non-zero conf
674   link local) IPv6 configuration. Basically, if you want some confidence this is
675   actually working I'd advise testing this option before you use it, running it
676   on a machine with multiple interfaces with the debug level turned up.
678 . Enhanced the MIOP implementation; this protocol now supports MIOP message
679   fragmentation which is controlled via the new MIOP_Strategy_Factory.
680   For details see the MIOP_Strategy_Factory section in the docs/Options.html
681   document included with this distribution.
683 USER VISIBLE CHANGES BETWEEN TAO-2.1.2 and TAO-2.1.3
684 ====================================================
686 . Added OpenSSL configuration options SSLCipherList and
687   SSLServerCipherOrder to SSLIOP_Factory.  Allows SSL/TLS BEAST
688   exploit to be mitigated.
690 USER VISIBLE CHANGES BETWEEN TAO-2.1.1 and TAO-2.1.2
691 ====================================================
693 . Changed behavior of Receive-Wait client wait strategy with
694   ORBConnectionHandlerCleanup after oneway calls to register with
695   the reactor after the call to clean up after connection closure.
697 . Added an extension of the CosNotifyFilter::FilterFactory to
698   allow removal of filters created by the factory.  The extension
699   also has accessors for existing filters and ids.
701 USER VISIBLE CHANGES BETWEEN TAO-2.1.0 and TAO-2.1.1
702 ====================================================
704 . Correct ZIOP compression arbitration on the server reply
705   path. The server now responds with one of the clients
706   exposed compressors that the server also supports
707   according to the ZIOP specification.
709 . Enhanced the plugable transports such that the
710   send_message() api now provides an optional TAO_ServerRequest
711   object pointer to provide access to any client side
712   policies that are broadcast with each request. This enabled
713   the ZIOP compression correction to be coded.
715 USER VISIBLE CHANGES BETWEEN TAO-2.0.8 and TAO-2.1.0
716 ====================================================
718 . Added new rle compressor and enabled ZIOP by default
720 . Implimented DynValue, DynValueBox and DynValueCommon and their
721   creation/use by TAO_DynAnyFactory::
722     create_dyn_any (), create_dyn_any_from_type_code (),
723     create_dyn_any_without_truncation (), create_multiple_dyn_anys ()
724     and create_multiple_anys ().
726 . Correct the interaction of CORBA::ValueTypes and CORBA::Anys.
727     The insertion into an Any of a ValueType base pointer
728     used to set the Anys typecode to the fully derived valuetype.
729     This allowed the any to be marshaled correctly sending the
730     derived typecode and value over the wire. However it also
731     stopped the user from extracting the valuetype from the any
732     as the typecode for, or the actual pointer type being used for,
733     the extraction couldn't match the any's internal two different
734     types. The any's typecode is now simply set to match the base
735     pointer which allows for the correct insertion/extraction from
736     the any, whilst the marshalling code for anys containing
737     valuetypes now sends the fully derived typecode of the fully
738     derived data it is marshalling instead of the anys embedded
739     (possiably base valuetype) typecode.
741 USER VISIBLE CHANGES BETWEEN TAO-2.0.7 and TAO-2.0.8
742 ====================================================
744 . Added support for MPC's new feature that creates dependency files for IDL
745   files when generating '-type gnuace' projects. Turned off by default, it
746   can be enabled in a features file or on the command line with
747   '-features ace_idl_dependencies=1'.
749 . Fixed IDL compiler bug where a generated component servant method that
750   is called by the middleware to initialize a component's attributes
751   was not including attributes of supported interfaces.
753 USER VISIBLE CHANGES BETWEEN TAO-2.0.6 and TAO-2.0.7
754 ====================================================
756 . Added Time_Policy_Manager, a TIME_POLICY strategy manager configurable
757   through the service configurator framework.
758   This allows the dynamic configuration of the TIME_POLICY strategy used for
759   ORB timers and countdowns. TAO includes two default TIME_POLICY strategies as
760   statically linked service objects; TAO_System_Time_Policy_Strategy and
761   TAO_HR_Time_Policy_Strategy (the first being used as default strategy).
762   The docs/Options.html file describes the configuration options in detail.
763   Two new tests have been added exemplifying these new options; tests/Time_Policy
764   and tests/Time_Policy_Custom.
765   Furthermore two new compile time option macros have been added related to
766   TIME_POLICY strategies:
767   - TAO_USE_HR_TIME_POLICY_STRATEGY if defined will force the use of the new
768     TAO_HR_Time_Policy_Strategy as default time strategy instead of
769     TAO_System_Time_Policy_Strategy;
770   - TAO_HAS_TIME_POLICY if explicitly defined as 0 ('#define TAO_HAS_TIME_POLICY 0')
771     will build TAO without the new TIME_POLICY strategy support.
773 USER VISIBLE CHANGES BETWEEN TAO-2.0.5 and TAO-2.0.6
774 ====================================================
776 . Added new define TAO_DEFAULT_COLLOCATION_STRATEGY (default = thru_poa)
777   which is used as -ORBCollocationStrategy isn't specified.
779 . Added new -ORBCollocationStrategy best. TAO tries to perform the best
780   possible collocation, first direct if possible, then through_poa if possible
781   else no collocation.
783 . Enhanced the RW -ORBWaitStrategy and the EXCLUSIVE -ORBTransportMuxStrategy
784   to also work with AMI requests.
786 . mt_noupcall has been improved and generically speaking the handling of client
787   leader threads in LF has been improved and fixed of potential deadlock
788   situations
790 . The TAO skeletons got refactored to reduced footprint, a footprint saving
791   for the skeletons between 10 and 60% has been achieved. For the full
792   distribution including CIAO, DAnCE, OpenDDS, and DDS4CCM using RTI DDS this
793   resulted in a reduction of 650,000 lines of code. Also the S.inl files are
794   not generated anymore
796 USER VISIBLE CHANGES BETWEEN TAO-2.0.4 and TAO-2.0.5
797 ====================================================
799 . Updated several TAO tests for automatic testing on Android
801 USER VISIBLE CHANGES BETWEEN TAO-2.0.3 and TAO-2.0.4
802 ====================================================
804 . Added new IFR_Client_skel library that is now used by the IFR_Service
806 . Moved TAO_IDL generation of argument traits from the stub and
807   skeleton .cpp files to the corresponding .h files.
809 USER VISIBLE CHANGES BETWEEN TAO-2.0.2 and TAO-2.0.3
810 ====================================================
812 . Improved support for mt_noupcall but this is still not optimal due to a 2ms
813   wait delay
815 . Addressed several Coverity reported issues
817 USER VISIBLE CHANGES BETWEEN TAO-2.0.1 and TAO-2.0.2
818 ====================================================
820 . Remove support for already deprecated -ORBConnectionCachingStrategy
822 . Removed -ORBObjectKeyTableLock and -ORBPOALock, very risk options and this
823   way the regular invocation path can be optimized much more
825 . Improved support for mt_noupcall wait strategy. Upcall detection has been
826   improved and the transport is polled each 2ms to see if we can do the
827   upcall.
829 . Improved performance of the Parallel Connect Strategy in TAO.
831 . tao_catior does a better job with JacORB generated IORs.
833 . tao_cosnaming can now be multithreaded.
835 USER VISIBLE CHANGES BETWEEN TAO-2.0.0 and TAO-2.0.1
836 ====================================================
838 . Fixed IDL compiler bug that caused illegal references to items
839   in the scope of a template module to be overlooked.
841 USER VISIBLE CHANGES BETWEEN TAO-1.8.3 and TAO-2.0.0
842 ====================================================
844 . Improved support for abstract
846 USER VISIBLE CHANGES BETWEEN TAO-1.8.2 and TAO-1.8.3
847 ====================================================
849 . TAO IDL compiler now generates attribute members for generated CCM
850   executor implementation classes, as well as full implementations for
851   the associated set/get operations.
853 . Add TAO IDL compiler command line option -iC, which overrides the
854   default include path (current directory or $TAO_ROOT/tao) for
855   *C.h files included in generated *A.h files.
857 . Removed autoconf support for TAO, it is really not tested, unstable, and
858   unmaintainable at this moment
860 . The TAO IDL compiler now gives the following error when anonymous
861   types are used: 'anonymous types are deprecated by OMG spec'.
862   One can changes this error into a warning. There's also a possibility
863   to silence the TAO IDL compiler about this message. One of the following
864   defines can be added to your config.h file in order to change the behavior
865   of the TAO IDL compiler:
866   * IDL_ANON_ERROR:   The TAO IDL generates an error when it encounters
867                       an anonymous type (default behavior).
868   * IDL_ANON_WARNING: The TAO IDL generates a warning when it encounters
869                       an anonymous type.
870   * ANON_TYPE_SILENT: The TAO IDL doesn't generate a warning nor an error
871                       when it encounters an anonymous type.
873 . Renamed ALL ORB services executables. This because of
874   the fact that the TAO ORB services should be recognizable
875   between the ORB services of other CORBA vendors. There are
876   systems where ORB services of several CORBA vendors are
877   installed (mainly via the installed packages). The following
878   rename actions have been taken place:
879   * 'LifeCycle_Service'       to 'tao_coslifecycle'
880   * 'Dump_Schedule'           to 'tao_dump_schedule'
881   * 'NT_Notify_Service'       to 'tao_nt_cosnotification'
882   * 'Notify_Service'          to 'tao_cosnotification'
883   * 'FT_ReplicationManager'   to 'tao_ft_replicationmanager'
884   * 'IFR_Service'             to 'tao_ifr_service'
885   * 'TAO_Service'             to 'tao_service'
886   * 'Fault_Detector'          to 'tao_fault_detector'
887   * 'Scheduling_Service'      to 'tao_cosscheduling'
888   * 'Basic_Logging_Service'   to 'tao_tls_basic'
889   * 'Notify_Logging_Service'  to 'tao_tls_notify'
890   * 'Event_Logging_Service'   to 'tao_tls_event'
891   * 'RTEvent_Logging_Service' to 'tao_tls_rtevent'
892   * 'Naming_Service'          to 'tao_cosnaming'
893   * 'NT_Naming_Service'       to 'tao_nt_cosnaming'
894   * 'CosEvent_Service'        to 'tao_cosevent'
895   * 'Event_Service'           to 'tao_rtevent'
896   * 'LoadManager'             to 'tao_loadmanager'
897   * 'LoadMonitor'             to 'tao_loadmonitor'
898   * 'Trading_Service'         to 'tao_costrading'
899   * 'Time_Service_Server'     to 'tao_costime_server'
900   * 'Time_Service_Clerk'      to 'tao_costime_clerk'
901   * 'ImplRepo_Service'        to 'tao_imr_locator'
902   * 'ImR_Activator'           to 'tao_imr_activator'
903   * 'Fault_Notifier'          to 'tao_fault_notifier'
904   * 'Concurrency_Service'     to 'tao_cosconcurrency'
906 . Fixed several bugs related to recursive typecodes
908 USER VISIBLE CHANGES BETWEEN TAO-1.8.1 and TAO-1.8.2
909 ====================================================
911 . Extended logging related to the POA active object map
913 USER VISIBLE CHANGES BETWEEN TAO-1.8.0 and TAO-1.8.1
914 ====================================================
916 . IDL compiler
918   - Added code generation for an empty implementation of
919     the reply handler interface generated as part of an
920     AMI4CCM connector, triggered by the same option, -Gex,
921     that generates a similar implementation for a
922     component executor.
924   - Added flags that can be defined in config.h to output
925     an error or warning if an anonymous IDL construct is
926     seen by the IDL compiler. Also added IDL compiler
927     options to do the same (or override a global flag)
928     for individual IDL files.
930 USER VISIBLE CHANGES BETWEEN TAO-1.7.9 and TAO-1.8.0
931 ====================================================
933 . Added minimal exploratory support for alternate IDL->C++
934   mapping: IDL string->std::string and IDL sequence->std:vectors.
935   We are talking with sponsors to see if we can raise funds
936   to make a full new IDL to C++ mapping proposal that uses
937   all new C++0x features
939 . Fixed bugzilla #3853.
941 . Improved the speed of tao_idl when processing
942   large input files with many module re-openings.
944 . Removed MCPP support from TAO_IDL.
946 . Extended support for CIAO DDS4CCM and AMI4CCM in TAO_IDL
948 USER VISIBLE CHANGES BETWEEN TAO-1.7.8 and TAO-1.7.9
949 ====================================================
951 . TAO's default makefiles (traditional ACE/GNU, not autoconf/automake)
952   now support installation with "make install".
953   Please see the ACE-INSTALL.html file for instructions.
955 . Refactored several parts of TAO_IDL
957 USER VISIBLE CHANGES BETWEEN TAO-1.7.7 and TAO-1.7.8
958 ====================================================
960 . Added -ORBHandleLoggingStrategyEvents option. Given
961   that ORB is run in user application this option allows
962   to easily add log file rotation.
964 . Added a new option -ORBIgnoreDefaultSvcConfFile.
965   This allows TAO to ignore only svc.conf file while
966   processing normally other user provided configuration
967   files or directives.
969 USER VISIBLE CHANGES BETWEEN TAO-1.7.6 and TAO-1.7.7
970 ====================================================
972 . Add IDL3+ support to TAO_IDL
974 . Cleanup in TAO_IDL. Part of this cleanup closes
975   (Bugzilla 2200).
977 USER VISIBLE CHANGES BETWEEN TAO-1.7.5 and TAO-1.7.6
978 ====================================================
980 . Added support for iPhone/iPod Touch/iPad. The following
981   environment variables are needed:
983   IPHONE_TARGET, should be set to either SIMULATOR or
984   HARDWARE. Set to HARDWARE if you want to deploy
985   on the iPhone/iPod Touch/iPad device.
987   IPHONE_VERSION, should be set to 3.1.2 or 3.2. One can
988   set the version to any future or past versions, but
989   only 3.1.2 and 3.2 have been tried.
991   Note that one has to compile ACE/TAO statically as
992   it is believed that the iPhone OS does not support
993   dynamic loading of external libraries. The usual
994   procedure of cross compiling ACE/TAO applies
995   (such as setting HOST_ROOT environment variable).
997 . Added support for IDL template modules in the IDL
998   compiler front end. This is partly tested, some
999   parts do work, some not yet
1001 . Fixed bug in optional ostream operator generation
1002   for IDL arrays.
1004 . Added member validation feature to LoadBalancer.
1006 . Add support for valuetype repository id and value
1007   on both input and output streams.
1009 . Added support for Embarcadero C++ Builder 2010
1011 . Added method TAO_Leader_Follower::set_new_leader_generator().
1013 . Fixed missing request id in logging of LocateRequest/LocateReply &
1014   CancelRequest.
1016 . Fixed problems with ORB shutdown in combination with active
1017   requests.
1019 USER VISIBLE CHANGES BETWEEN TAO-1.7.4 and TAO-1.7.5
1020 ====================================================
1022 . Converted a lot of TAO tests to use the new test framework
1024 . Fix problem in the IDL compiler where set/get methods for
1025   attributes in a local interface derived from a non local interface
1026   where not regenerated as pure virtual
1028 . Fixed some bugs concerning spaces within roots, to allow TAO_IDL
1029   to be used by user projects that are installed on windows paths
1030   such as "c:\Project Files\..." or "c:\Documents and Settings\.."
1031   etc.
1033 . The IDL3+ keywords porttype/port/mirrorport are now fully
1034   implemented and tested
1036 . Fixed bug in code generation for components, where a derived
1037   component or home with more than one generation of ancestors
1038   was missing inherited operations in its operation table
1040 . Merged in changes from OCI's distribution which originate from
1041   OCI request ticket [RT 13596, RT 13704].
1043   - Added queue-overflow statistics to the Notification Service MC.
1044   - Modified Notification Service MC to work in static builds.
1045   - Corrected an error that caused Notification Service MC statistics
1046     to fail when -AllocateTaskPerProxy is used.
1047   - QueueDepth have been changed to measure the number of entries
1048     rather than attempting unsuccessfully to estimate the amount of
1049     memory used by the queue.
1050   - Added TAO_EXPLICIT_NEGOTIATE_CODESETS macro to improve the ease
1051     of including optional codeset support to Notify_Service in static
1052     builds.
1053   - Added new MPC features (notify_monitor_control and
1054     negotiate_codesets).
1055   - fixed ACE_Logging_Stragey service loading issue in static builds.
1057 USER VISIBLE CHANGES BETWEEN TAO-1.7.3 and TAO-1.7.4
1058 ====================================================
1060 . Initial support for IDL3+ in the TAO_IDL compiler front end.
1061   IDL3+ is an extension to IDL3 driven by the DDS4CCM draft
1062   standard. IDL3+ adds a porttype which is a logical grouping
1063   of CCM ports and a concept of templates (like C++)
1065 . Changed behaviour of -Glem and -Glfa
1067 . Ported a large set of TAO tests to the new test framework
1069 . Added a capability to throw BAD_PARAM exception in case
1070   there is an attempt to access sequence elements above
1071   sequence length. By default this capability is turned on
1072   in debug builds with defining TAO_CHECKED_SEQUENCE_INDEXING.
1073   BAD_PARAM exception is also thrown in case a new sequence
1074   length for bounded sequence is greater than the bound
1075   defined in IDL.
1077 USER VISIBLE CHANGES BETWEEN TAO-1.7.2 and TAO-1.7.3
1078 ====================================================
1080 . Merged in changes from OCI's distribution which
1081   originate from OCI request ticket [RT 12994]. Added
1082   following ORB options.
1084     -ORBForwardOnceOnObjectNotExist [0|1]
1085     -ORBForwardOnceOnCommFailure [0|1]
1086     -ORBForwardOnceOnTransient [0|1]
1087     -ORBForwardOnceOnInvObjref [0|1]
1089   The -ORBForwardOnceOnObjectNotExist ORB option is added
1090   to avoid side effect from
1091   -ORBForwardInvocationOnObjectNotExist that could cause
1092   the request fall into forward loop in some use cases
1093   (e.g. client sends request while servant is deactivated).
1094   The other options are added for the same purpose to avoid
1095   possible forward loop upon specified exceptions.
1097 . Corrected TAO_IDL dds code generation to count WChar size for wstring
1098   marshal size.
1100 USER VISIBLE CHANGES BETWEEN TAO-1.7.1 and TAO-1.7.2
1101 ====================================================
1103 . Extended IDL compiler to take over all code generation from
1104   the CIAO CIDL compiler, which has been eliminated.
1105   See $TAO_ROOT/docs/compiler.html for details.
1107 . Added code generation for export header files. See
1108   $TAO_ROOT/docs/compiler.html for details.
1110 USER VISIBLE CHANGES BETWEEN TAO-1.7.0 and TAO-1.7.1
1111 ====================================================
1113 . Improved Unicode compatibility.
1115 . Improved service configuration processing.
1117 USER VISIBLE CHANGES BETWEEN TAO-1.6.9 and TAO-1.7.0
1118 ====================================================
1120 . Merged in changes from OCI's distribution which originate from
1121   OCI request ticket [RT 12912]. In their totality, the changes
1122   added new features for IMR to support the capability of client
1123   automatically reconnects servers within same port range upon
1124   server restart. The ServerId is added to ServerInfo in IMR to
1125   help identify server process. The -UnregisterIfAddressReused
1126   option is added to IMR to enable the address reuse checking
1127   upon server registering. The servers that address is reused
1128   are unregistered from IMR. The -ORBForwardInvocationOnObjectNotExist
1129   option is added to forward request to next available profile
1130   upon receiving OBJECT_NOT_EXIST exception reply.
1132 . The -ORBRunThreads of the notification service has been renamed
1133   to -RunThreads and the notification service can now be loaded
1134   as dll.
1136 . Updated ZIOP to match the OMG Beta 2 specification
1138 . Added a new utility, tao_logWalker, see utils/logWalker for details.
1139   This tool analises a collection of log files containing output of
1140   TAO running with -ORBDebuglevel 10, and generates a report showing
1141   process, thread and invocation summaries.
1143 . Fixed bug in Notification Service that the filter constraint expressions
1144   are ignored when event type domain_name or type_name is specified
1145   (see bug 3688).
1147 . The MCPP version optionally used by TAO_IDL has been updated to 2.7.2.
1148   Efforts have been taken to port this to as many platforms as possible,
1149   however, since it is not currently the default configuration it may
1150   not work across all platforms.
1152 USER VISIBLE CHANGES BETWEEN TAO-1.6.8 and TAO-1.6.9
1153 ====================================================
1155 . Reply Dispatchers are refactored. No deadlock occurs when an
1156   (a)synchronous CORBA call is made during dispatching a reply.
1158 . Fixed IDL compiler bug that in some cases caused code generation for
1159   inherited operations to be skipped.
1161 . The Transport Cache Size maximum is now a hard maximum.
1163 . Fixed several bugs related to the purging of transports when the cache
1164   is almost full.
1166 . New TAO-specific feature of Notification service improves management
1167   of proxies when peer goes away without disconnecting from proxy.  See
1168   orbsvcs/Notify_Service/README for details in the svc.conf section.
1170 . Improved Notification topology persistence, now persists filters.
1172 . Updated ZIOP to match the beta 1 OMG specification.
1174 USER VISIBLE CHANGES BETWEEN TAO-1.6.7 and TAO-1.6.8
1175 ====================================================
1177 . Fixed race condition when multiple threads make a connection to the
1178   same server (bugzilla 3543)
1180 . Updated several tests to the new test framework
1182 . Fixed several memory leaks and make sure the TAO singletons are
1183   destructed when the TAO DLL gets unloaded
1185 . Improved WinCE unicode support and extended the number of tests that
1186   can be run with WinCE
1188 . Fixed some race conditions in the transport cache. There are several
1189   known issues resolved in the transport cache when it starts purging.
1191 . Fixed memory leak in string and object reference sequences.
1193 . Bugs fixed: 3078, 3499, 3524, 3543, 3549, 3557, 3559.
1196 USER VISIBLE CHANGES BETWEEN TAO-1.6.6 and TAO-1.6.7
1197 ====================================================
1199 . Added a fix for bug 2415.  Added -DefaultConsumerAdminFilterOp and
1200   -DefaultSupplierAdminFilterOp TAO_CosNotify_Service options for setting
1201   the default filter operators.
1203 . The full TAO distribution compiles with unicode enabled. Work is ongoing
1204   to make the TAO runtime results comparable with the ascii builds.
1206 . Added two new ORB parameters, -ORBIPHopLimit and -ORBIPMulticastLoop. The
1207   first one controls number of hops an IPv4/IPv6 packet can outlive. The
1208   second one is related to MIOP only and it takes boolean value which
1209   directs whether to loop multicast packets to the originating host or not.
1211 . Added the "TAO" and "TAO/orbsvcs" OCI Development Guide Examples under the
1212   directories /DevGuideExamples and /orbsvcs/DevGuideExamples.  NOTE this is
1213   an ongoing port of the original version x.5.x examples and some are not yet
1214   100% compatiable with the current version of TAO.
1216 . Split CosLifeCycle library into separate client stub and server
1217   skeleton libraries.  Fixes bugzilla issue #2409.
1219 . Split CosTime library into separate client stub, server skeleton,
1220   and server implementation libraries.  Fixes bugzilla issue #3433.
1222 . Avoid core dumps when evaluating TCL and ETCL expressions containing
1223   divisions by zero.  Partial fix for bugzilla issue #3429.
1225 USER VISIBLE CHANGES BETWEEN TAO-1.6.5 and TAO-1.6.6
1226 ====================================================
1228 . Added a new text based monitor to the Notify_Service to keep track of
1229   consumers that were removed due to a timeout.
1231 . Repaired the -ORBMuxedConnectionMax <limit> option on the resource factory.
1232   This service configurator option defines an upper limit to the number of
1233   connections an orb will open to the same endpoint.
1235 . Repaired a problem that caused the ORB to open too many connections to
1236   an endpoint.
1238 . Added a -Timeout option to the Notify_Service to allow the user to apply a
1239   relative round-trip timeout to the ORB.  This option requires that the
1240   'corba_messaging' MPC feature be enabled during building of the
1241   Notify_Service, which it is by default.
1243 . Added ZIOP support to TAO. ZIOP adds the ability to compress the
1244   application data on the wire. This is a join effort of Remedy IT, Telefonica,
1245   and IONA. We are working on getting this standardized through the OMG.
1246   Until this has been formally standardized we don't guarantee
1247   interoperability with other ORBs and between different versions of
1248   TAO that support ZIOP, this is done after this has been accepted
1249   by the OMG. If you want to experiment with ZIOP you need to add
1250   TAO_HAS_ZIOP 1 as define to your config.h file. See TAO/tests/ZIOP
1251   for an example how to use it. All policies are not checked on all
1252   places so it can happen that the ORB sends uncompressed data when
1253   it could have compressed it. This is because of limitations in the
1254   policy mechanism in the ORB which will take a few weeks to rework.
1255   Also note that ZIOP doesn't work together with RTCORBA
1257 . Added a -m option to the ImplRepo (ImR, Implementation Repository) Activator,
1258   which specifies the maximum number of environment variables which will be
1259   passed to the child process.  The default (and previous behavior) is 512.
1261 USER VISIBLE CHANGES BETWEEN TAO-1.6.4 and TAO-1.6.5
1262 ====================================================
1264 . Updated TAO to comply with the IDL to C++ mapping v1.2. As a result
1265   CORBA::LocalObject is now refcounted by default
1267 . Added a new ORB parameter, -ORBAcceptErrorDelay, that controls the amount
1268   of time to wait before attempting to accept new connections when a
1269   possibly transient error occurs during accepting a new connection.
1271 . Fixed a bug which could lead to an ACE_ASSERT at runtime when a TAO
1272   is used from a thread that is not spawned using ACE
1274 . Added new Monitoring lib that can be used to retrieve values from
1275   the new Monitoring framework in ACE. This is disabled by default
1276   because it is not 100% finished yet, with the next release it
1277   will be enabled by default
1279 . Extended the -ORBLaneListenEndpoints commandline option to support
1280   *, for details see docs/Options.html
1282 . VxWorks 6.x kernel mode with shared library support
1284 USER VISIBLE CHANGES BETWEEN TAO-1.6.3 and TAO-1.6.4
1285 ====================================================
1287 . Service Context Handling has been made pluggable
1289 . Improved CORBA/e support and as result the footprint decreased when
1290   CORBA/e has been enabled
1292 . Added the ability to remove consumer and supplier proxies and consumer and
1293   supplier admins through the Notify Monitor and Control interface.
1295 . Changed Interface Repository's IOR output file from being
1296   world writable to using ACE_DEFAULT_FILE_PERMS.
1298 . Add support for a location forward with a nil object reference.
1300 USER VISIBLE CHANGES BETWEEN TAO-1.6.2 and TAO-1.6.3
1301 ====================================================
1303 . Fixed send side logic (both synchronous and asynchronous) to honor
1304   timeouts. An RTT enabled two-way invocation could earlier hang
1305   indefinately if tcp buffers were flooded.
1307 . Bug fix for cases where the IDL compiler would abort but with an
1308   exit value of 0.
1310 . Bug fix in IDL compiler's handling of typedef'd constants having
1311   a bitwise integer expression as the value.
1313 . Bug fix that ensures valuetypes and their corresponding supported
1314   interfaces have parallel inheritance hierarchies.
1316 . Fix for possible out-of-order destruction of Unknown_IDL_Type's
1317   static local lock object (bugzilla 3214).
1319 . Added list() iterator functionality for the Naming Service when
1320   using the -u persistence option.
1322 . Various bug fixes to the IFR service and compiler.
1324 . New option (-T) to IFR compiler that permits duplicate typedefs with
1325   warning.  Although not encouraged, this allows IDL that used to pass
1326   through the IFR compiler to still pass through rather than having to
1327   be changed.
1329 . Fix crashing of _validate_connection on an invalid object reference
1331 . Add support for TAO on VxWorks 5.5.1
1333 . _get_implementation has been removed from CORBA::Object, it was
1334   deprecated in CORBA 2.2
1336 . Improved CORBA/e support
1338 . Fixed SSLIOP memory leaks
1340 USER VISIBLE CHANGES BETWEEN TAO-1.6.1 and TAO-1.6.2
1341 ====================================================
1343 . Added support for handling Location Forward exceptions caught when using
1344   AMI with DSI. These exceptions may also be raised from within DSI servants
1345   using AMH.
1347 . Added -RTORBDynamicThreadRunTime which controls the lifetime of dynamic
1348   RTCORBA threads
1350 . Changed the PI code so that send_request is also called at the moment
1351   we don't have a transport (bugzilla 2133)
1353 . Fixed memory leak that occured for each thread that was making CORBA
1354   invocations
1356 . Updated several tests to work correctly on VxWorks
1358 . Removed support for pluggable messaging. As a result the code in the
1359   core of TAO is much cleaner and we are about 5 to 10% faster
1361 . Improved CORBA/e support
1363 . Added gperf's exit code to the error message output if it exits
1364   unsuccessfully when spawned by the IDL compiler to generate an
1365   interface's operation table
1367 . Fixed bug in Interface Repository's handling of base valuetypes
1368   and base components (Bugzilla 3155)
1370 . Fixed code generation bug that occurs when there is both a C++
1371   keyword clash in the IDL and AMI 'implied IDL' code generation
1373 . Fixed IDL compiler bug wherein some cases of illegal use of a
1374   forward declared struct or union wasn't caught
1376 . Improved support for VxWorks 6.4 kernel and rtp mode
1378 USER VISIBLE CHANGES BETWEEN TAO-1.6 and TAO-1.6.1
1379 ====================================================
1381 . Made TAO more compliant to CORBA/e micro
1383 . Fixed invalid code generation by the IDL compiler when the options -Sa -St
1384   and -GA are combined
1386 USER VISIBLE CHANGES BETWEEN TAO-1.5.10 and TAO-1.6
1387 =====================================================
1389 . Added a new interface that allows monitoring of activities within the
1390   Notification Service.  Completely configurable through the Service
1391   Configurator, the monitoring capabilities are only in effect when chosen
1392   by the user.  When the monitoring capabilities are enabled, an outside
1393   user can connect to a service that allows querying statistics gathered by
1394   the Notification Service.
1396 . Moved the BufferingConstraintPolicy to the Messaging lib
1398 . Made it possible to disable not needed IOR parsers to reduce footprint
1400 . Reworked several files to get a smaller footprint with CORBA/e and
1401   Minimum CORBA. This could lead to a reduction of more then 20% then
1402   with previous releases
1404 . Removed the Domain library, it was not used at all and only
1405   contained generated files without implementation
1407 USER VISIBLE CHANGES BETWEEN TAO-1.5.9 and TAO-1.5.10
1408 =====================================================
1410 . Added support for forward declared IDL structs and unions to the
1411   Interface Repository loader
1413 . A new securty option is available using the Access_Decision interface
1414   defined by the CORBA Security Level 2 specification. This enables the
1415   implementation of servers using mixed security levels, allowing some
1416   objects to grant unrestricted access while others require secure
1417   connections. See orbsvcs/tests/Security/mixed_security_test for
1418   details on using this feature.
1420 . Removed GIOP_Messaging_Lite support for all protocols
1422 . Fixed a hanging issue in persistent Notify Service during disconnection.
1424 . Added IPv6 support to DIOP
1426 . Added -Gos option to the IDL compiler to generate ostream
1427   operators for IDL declarations
1429 USER VISIBLE CHANGES BETWEEN TAO-1.5.8 and TAO-1.5.9
1430 ====================================================
1432 . When using AMI collocated in case of exceptions they are deliverd
1433   to the reply handler instead of passed back to the caller
1435 . Added support for IPv6 multicast addresses when federating RTEvent
1436   channels.
1438 . Fixed a bug in the IDL compiler's handling of octet constants where
1439   the rhs consists of integer literals and infix operators (Bugzilla 2944).
1441 . TAO_IDL enhancements for built in sequence support in TAO DDS.
1443 . Provide support for TAO DDS zero-copy read native types.
1445 . TAO_IDL fix for lock-up and incorrect error message generation for
1446   missing definitions within local modules. This fix also stops the
1447   erronious look-up in a parent scoped module (with the same name as
1448   a locally scoped module) that should have been hidden by the local
1449   scope definition.
1451 . The TAO_IORManip library now has a filter class that allows users to
1452   create new object references based on existing multi-profile object
1453   references by filtering out profiles using user defined criteria.  The
1454   use of -ORBUseSharedProfile 0 is required for this to function.
1456 . A problem in TAO_Profile::create_tagged_profile was fixed. This problem
1457   triggered only when MIOP in multi-threaded application was used.
1459 . Added IPv6 support in MIOP so that IPv6 multicast addresses can be used in
1460   addition to those IPv4 class D addresses. DSCP support is implemented in
1461   MIOP as well. However, since MIOP only allows one way communication then it
1462   makes sense to use DSCP on the client side only.
1464 USER VISIBLE CHANGES BETWEEN TAO-1.5.7 and TAO-1.5.8
1465 ====================================================
1467 . Fixed bug in IDL compiler related to abstract interfaces
1469 . Fixed several issues in the AMI support
1471 . Added new -ORBAMICollocation 0 which disables AMI collocated calls
1473 . Improved a lot of test scripts to work with a cross host test
1474   environment where client and server are run on different hosts.
1475   This is used for automated testing with VxWorks
1477 . Fixed handled of a forward request when doing a locate
1478   request call
1480 . Added an option, -a, to the Event_Service to use the thread-per-consumer
1481   dispatching strategy instead of the default dispatching strategy.
1483 . Improved wide character compilation support.
1485 . Fixed IDL compiler to run on both OpenVMS Alpha and OpenVMS IA64.
1487 . Fixed memory leaks in the ImpleRepo_Service.
1489 . Fixed a bug in the IDL compiler relating to include paths.
1491 . Fixed Trader Service issues related to CORBA::Long and CORBA::ULong.
1493 USER VISIBLE CHANGES BETWEEN TAO-1.5.6 and TAO-1.5.7
1494 ====================================================
1496 . Removed ACE_THROW_RETURN.
1498 . Fixed a memory crash problem when using ETCL IN operator with
1499   Notify Service filter.
1501 . Remove exception specifications from ORB mediated operations (C++
1502   mapping requirement)
1504 . New diffserv library to specify diffserv priorities
1505   independent of RTCORBA
1507 . Addressed Coverity errors in core TAO libraries, TAO_IDL compiler,
1508   stubs and skeletons generated by TAO_IDL and the TAO Notification
1509   Service.
1511 . Extended current DynamicInterface to allow DII+AMI+DSI+AMH.
1512   (Thanks to OMC <www.omesc.com> for the sponsorship.)
1514 . Fixed bug in IDL compiler code generation for a comma-separated list of
1515   sequence typedefs.
1517 . TAO no longer sets the unexpected exception handler.
1519 USER VISIBLE CHANGES BETWEEN TAO-1.5.5 and TAO-1.5.6
1520 ====================================================
1522 . Removed all exception environment macros except ACE_THROW_RETURN
1523   and ACE_THROW_SPEC
1525 USER VISIBLE CHANGES BETWEEN TAO-1.5.4 and TAO-1.5.5
1526 ====================================================
1528 . Added an IDL compiler option to generate an explicit instantiation
1529   and export of template base classes generated for IDL sequences,
1530   sometimes necessary as a workaround for a Visual Studio compiler bug
1531   (Bugzilla 2703).
1533 . Beefed up error checking in the IDL compiler when processing
1534   #pragma version directives.
1536 . Modified IDL compiler's handling of a syntax error to eliminate
1537   the chance of a crash (Bugzilla 2688).
1539 . Fixed a bug in code generation for a valuetype when it inherits
1540   an anonymous sequence member from a valuetype in another IDL file.
1542 . Extended tests in tests/IDL_Test to cover generated code for
1543   tie classes.
1545 . Modified tao_idl to emit code to set the exception data in the
1546   Messaging::ExceptionHolder in the AMI _excep operation.  This has the
1547   effect of allowing user defined exceptions to be recognized when
1548   raising an exception without collocation.  This fixes Bug 2350.
1550 . Added hooks to enable custom Object to IOR conversion or allowing local
1551   objects (such as Smart Proxies) to be converted to an IOR string.
1553 . Removed warning issued when using corbaloc with a default object key.
1555 . Added implementation of Dynamic Any methods insert_*_seq() and
1556   get_*_seq() (spec-defined for sequences of IDL basic types),
1557   as well as implementation of insert and get methods for abstract
1558   interfaces.
1560 . Added support for CORBA/e compact
1562 . Added support for CORBA/e micro
1564 . Fixed issues relating to the CosTrading Server library.  The constraint
1565   language lexer now allow negative floating point values, 64-bit signed and
1566   unsigned integers (which can currently be represented as octal or decimal).
1567   Also, fixed a bug where negative integers were being stored and compared as
1568   unsigned integers which resulted in -3 > 0 evaluating to true.
1570 . Added Compression module that delivers the infrastructure
1571   classes with which data can be compressed. This can be used
1572   by regular applications but then also by the ORB in the future.
1574 . Removed support for -Ge 0 and -Ge 1 from the IDL compiler. In practice
1575   this means that the IDL compiler doesn't generate any environment macros
1576   anymore.
1578 . Fixed a problem where TAO mistakenly considered ALL messages
1579   with zero-length payload to be errors and was thus not properly
1580   parsing and handling the GIOP CloseConnection message.  This is
1581   tested via Bug_2702_Regression.
1583 . Added an optimization to servant activation to eliminate calls to
1584   check_bounds() on the object key sequence.  This has been observed
1585   to yield a 30% decrease in activation time for debug builds on VC71
1586   and linux gcc.
1588 . Merged in changes from OCI's distribution which originate from
1589   OCI request tickets [RT 8449] and [RT 8881]. In their totality,
1590   these changes add a feature whereby the notification service
1591   implementation can utilize a separate ORB for dispatching events to
1592   consumers.
1594 . Contributed the Transport::Current support - a TAO-specific
1595   feature providing IDL interfaces which enables users to obtain
1596   information about the Transports used to send or receive a
1597   message.  The basic intent is to provide (typically) a
1598   read-only interface to obtaining data like the number of bytes
1599   transferred or the number of messages sent and received.
1600   Since specific Transports may have very different
1601   characteristics, a simple generic implementation for
1602   Transport::Current is insufficient.  This implementation also
1603   provides support for specific Transport implementations. See
1604   the TC_IIOP implementation, which is an IIOP-specific
1605   Transport::Current. It extends the generic interface with
1606   operations providing information about IIOP endpoints, like
1607   host and port.  By default, TAO builds with support for this feature.
1608   Define "transport_current=0" in your default.features file to disable
1609   it. For more details of how the feature is intended
1610   to be used, see docs/transport_current/index.html
1612 USER VISIBLE CHANGES BETWEEN TAO-1.5.3 and TAO-1.5.4
1613 ====================================================
1615 . Added support for ACE_Dev_Poll_Reactor to Advanced_Resource_Factory.
1617 . Improved tao_idl performance, particularly over networked
1618   filesystems.
1620 . Added new option for the RTEC, -ECDispatchingThreadsFlags, that
1621   allows the user to pass in a list of thread creation flags and
1622   priority for dispatching threads.  These can be used for either the
1623   MT dispatching strategy or the TPC dispatching strategy.  See
1624   docs/ec_options.html for usage information.
1626   Also added -ECDebug option to enable debugging output from the RTEC.
1627   Only the option and variable was added, but no messages.  Therefore,
1628   at the moment, this does not generate much output.
1630 . Resolved Bugzilla #2651 to eliminate incompatibility with the new
1631   mechanism, allowing per-ORB configurations.
1633 . Fixed Bugzilla #2686, which involved correctly managing memory during
1634   exceptional situations.  Throwing an exception during the creation of the
1635   Root POA would cause a leak of a TAO_Adapter and POA manager related
1636   objects.
1638 . Fixed Bugzilla #2699, by uninlining generated code for the
1639   TIE template classes. Inlining of virtual functions in this
1640   code was causing problems with RTTI on some compilers. As a side
1641   result, the idl compiler doesn't generate a S_T.inl file anymore.
1643 . Fixed a bug where calling _set_policy_overrides() on a collocated servant
1644   would return an unusable object reference.
1646 . Addressed a number of Coverity errors (CHECKED_RETURN, DEADCODE, LOCK,
1647   USE_AFTER_FREE, RESOURCE_LEAK, FORWARD_NULL).  In particular, missing
1648   return value checks and unreachable code in the ACE CDR stream
1649   implementation were addressed.  Memory and resource management in the ACE
1650   Configuration classes was corrected.  A potential deadlock upon error was
1651   fixed in ACE_OS::rw_unlock().  Missing return value checks were addressed
1652   in ACE_OS::open() on Windows and ACE_Thread_Manager::wait().  A potential
1653   dereference of a null pointer in ACE_OS::scandir_emulation() was
1654   corrected.  Lastly, the ACE_UUID::lock() accessor interface and
1655   implementation was cleaned up so that it would not return a lock whose
1656   memory had been freed.
1658 USER VISIBLE CHANGES BETWEEN TAO-1.5.2 and TAO-1.5.3
1659 ====================================================
1661 . Added new options, -CECConsumerOperationTimeout and
1662   -CECSupplierOperationTimeout, to the CosEvent service.  See Bugzilla #2594
1663   and $TAO_ROOT/docs/cec_options.html for details.  The purpose of these
1664   options is to use the relative round-trip timeout feature from the TAO
1665   Messaging library to detect clients that are "hung" in push() or pull()
1666   operations but would otherwise not be detetcted as "bad" by the
1667   -CECReactive*Control options (since they have a thread available in
1668   orb->run()).
1670 . The Tk/Fl/Qt/Xt resource factories have been moved to subdirectories
1671   to make maintenance easier. If you are using these you have to update
1672   your include paths.
1674 . Fixed a compatibility problem between TAO and ORBs using Valuetype ID
1675   indirection, such as JacORB. This problem was inadvertently introduced
1676   in 1.5.2.
1678 . Oneway requests when using SYNC_NONE, SYNC_DELAYED_BUFFERING, or
1679   SYNC_EAGER_BUFFERING will be queued until the connection is completed.
1680   Connection completion occurs when one of the following occurs:
1681    a) A one-way request that does NOT use one of the sync-scopes mentioned
1682         above is sent via the same transport
1683    b) A two-way request is sent via the same transport
1684    c) orb->run() is called
1685   Applications that do not currently do one of the above will no longer
1686   establish a connection and therefore no data will be sent.
1688 . Fixed a problem with location forward objects being raised by colocal
1689   ServerInterceptors. This problem did not occure interacting with remote
1690   servers.  Now the raised object-reference will take effect on the object
1691   reference being held by client.
1693 . Fixed a problem with properly shutting down socket connections by
1694   explicitly calling release_os_resources from the destructor of protocol
1695   specific connection handlers. Maintainers of third-party (non-DOC)
1696   pluggable protocols must verify they are releasing any resources they
1697   acquired. The base Connection_Handler destructor can't do it for them.
1699 . Added COIOP as pluggable protocol. This stands for Collocated Only IOP
1700   and it only allows collocated calls. Can be used for embedded systems that
1701   do use corba but don't make any remote calls.
1703 . Notication service works with Microsoft Visual C++ 8.
1705 . Fixed Bugzilla #2582, related to IDL compiler generation of arg traits
1706   template specialization for typedefs.
1708 . Fixed Bugzilla #2583, a bug in the recursive check for local type
1709   containment that controls CDR operator generation in the IDL compiler.
1711 . Addressed Bugzilla #2603, which called for a -oS option for the IDL
1712   compiler to set the output directory for skeleton files.
1714 . Fixed Bugzilla #2634, which reported a bug in code generation for some
1715   escaped IDL identifiers.
1717 . Eliminated the dependency of the TAO Interface Repository IDL3 test on
1718   CIAO libraries.
1720 . Added output message to the IDL compiler, containing the name of the IDL
1721   file being processed.
1723 . Fixed IDL compiler to recognize CORBA::AbstractBase as a pseudo object.
1725 . Fixed a regression on Bugzilla #2074 caused by a reference
1726   counting problem on the Connection Handler.  This change
1727   affects all pluggable transport protocol implementations.
1728   Maintainers of third-party (non-DOC) pluggable protocols will
1729   need to make similar changes to their *_Connection_Handler
1730   implementations.
1732 . Fixed parsing of explicitly wildcarded IIOP endpoints.
1733   These might be iiop://[::]:, iiop://[]: or iiop://0.0.0.0:
1734   The first two examples are useful only when IPv6 is supported.
1735   The last example forces only IPv4 endpoints even when IPv6 is
1736   supported. Use iiop://: to get both IPv4 and IPv6 endpoints.
1738 . Fixed Bugzilla #2651 to properly handle order of destruction
1739   of Codeset Manager instances owned by the Default Resource
1740   Factory.  The ORB_Core is now responsible for managing the
1741   lifecycle of the Codeset Manager instance instead of the
1742   Resource Factory.  The Resource Factory now gives up ownership
1743   of the objects it creates.
1745 . Fixed Bugzilla #2545 so collocated DII oneway requests do not
1746   crash in get_in_arg().
1748 . Added a new "-b" option to the IDL compiler to control whether
1749   or not arguments on oneway invocations are "cloneable".  If the
1750   arguments are cloneable, and Custom Servant Dispatching (CSD)
1751   strategy is in use, the arguments for collocated oneways can be
1752   cloned during the copy of the TAO_Server_Request, which gives a
1753   performance improvement over the old method of copying the
1754   arguments using marshaling.
1756 . Fixed Bugzilla #2604 so the Implementation Repository can
1757   properly keep track of servers it launched in PER_CLIENT
1758   activation mode.
1760 . Fixed build warnings from some 64-bit compilers in code in which
1761   unsigned long and ACE_CDR::ULong were mixed.
1763 . Added various performance enhancements.  Many thread mutex/integer
1764   reference counts were replaced with ACE_Atomic_Op<unsigned long>.  Some
1765   buffers are allocated on the stack instead of the heap where possible.
1767 USER VISIBLE CHANGES BETWEEN TAO-1.5.1 and TAO-1.5.2
1768 ====================================================
1770 . To be able to support CORBA/e the pidl files within the core libs are
1771   now compiled during the building of the core libs. This means that gperf
1772   and TAO_IDL must be build before you can build the core libs!
1774 . Changed NT_Naming_Service project to require new MPC feature variable
1775   "winnt".  Avoids building and installing this on non-Windows systems.
1776   Fixes bugzilla bug #2412.
1778 . Changed NT_Notify_Service project to require new MPC feature variable
1779   "winnt".  Avoids building and installing this on non-Windows systems.
1780   Fixes bugzilla bug #2411.
1782 . Changed Telecom Log Service plug-in Strategy Interface.
1784   Added get_record_attribute(), set_record_attribute(), and
1785   set_records_attribute(); removed remove(), retrieve(), and update().
1786   This will allow plug-in Strategies to handle these high-level
1787   operations more efficiently.
1789   Added get_gauge() and reset_gauge(), to maintain "gauge" used for
1790   capacity threshold alarms when log channel's LogFullActionType is
1791   DsLogAdmin::wrap.  This resolves bugzilla 2420.
1793 . Allow different ORB instances to use a different sets of Service
1794   Objects in their own Service Repository instances. This resolves
1795   bugzilla #2486.
1797 . Integrate new sequence implementation made by Carlos O'Ryan. This
1798   also includes a rework of the TAO_String_Managers and CORBA::(W)String
1799   implementations.
1801 . Store Value Factories per orb instead of per process and made the
1802   storage thread safe.
1804 . Add on demand write functionality that writes out GIOP fragments to
1805   reduce the memory usage
1807 . The TIE files (_S.*) are not generated by default anymore by the
1808   IDL compiler. If you need these for your project, add -GT to the
1809   idl compiler flags.
1811 . Added optional support for implicitly typed values. When the Valuetype
1812   library is compiled with TAO_HAS_OPTIMIZED_VALUETYPE_MARSHALING defined
1813   TAO will skip the marshaling of the value's type when it is allowed to
1814   do so. It is allowed by the spec to do so when the value's actual type
1815   matches the formal type for the parameter through which the value is
1816   passed. As older versions of TAO did not correctly unmarshal implicitly
1817   typed values, the default behavior is for TAO to always marshal the
1818   type id for values.
1820 . Added support for CORBA specified truncatable valuetypes.
1822 . Added support for CORBA specified POAManagerFactory.
1824 . Added TAO-proprietary EndpointPolicy. This is used as a filter to limit
1825   which of an ORBs endpoints are inserted into an object reference. The
1826   endpoint policy is applied to POAManagers created via the POAManagerFactory
1827   and affect all POAs associated with that POAManager.
1829 . Added a client-side connection optimization, the Parallel Connect Strategy
1830   This strategy makes the client evaluate all endpoints in profile at the same
1831   time when trying to connect to the server. For this to work the server must
1832   be run with -ORBUseSharedProfile 1 and the client must be run with
1833   -ORBUseParallelConnect 1.
1835 . Fixed several bugs related to asynchronous connection establishment. These
1836   are represented by the AMI_Buffering tests and bug 2417's regression test.
1838 . Refactored PICurrent, removing PICurrent_Copy_Callback classes, subsuming
1839   this functionality inside PICurrent_Impl where it can be controlled
1840   correctly. The copying of PICurrent objects still performs lazy/deferred
1841   copying where possible, only taking a real physical copy when modifications
1842   are attempted. Interest in PICurrent objects where lazy copies have been
1843   taken can now be correctly reversed when the lazy copy is destroyed fixing
1844   a range of call-back bugs that were performed on already destroyed objects.
1845   (For detail see bugzilla 2552.)
1847 . Updated/Enhanced TAO/utils/nslist utilities nslist,nsadd and nsdel.
1848   These tools now allow for full ID.Kind processing (the separating character
1849   is user controlled, defaulting to .) and sub-context path processing (the
1850   separating character is also user controlled, defaulting to /).
1851   nsadd allows for (re)binding naming contexts in addition to final objects
1852   nsdel allows for destroying naming contexts when unbinding.
1853   nslist output has been prittyfide with user controlled character drawing
1854   of the naming context tree or sub-tree of full or limited depth.
1855   For full usage details execute these utilities with a ? parameter.
1857 . Add the ability to use the sendfile API to send out data
1858   on the transport
1861 USER VISIBLE CHANGES BETWEEN TAO-1.5 and TAO-1.5.1
1862 ====================================================
1864 . Fixed LOCATION_FORWARD_PERM handling. See bugzilla #1777 for full details.
1866 . Fixed bug in detecting name clashes between existing identifiers and
1867   extra code generated for AMI and AMH.
1869 . Fixed bug in connection closure. See bugzilla # 2391
1871 . Added support for the --enable-fl-reactor configure option to the
1872   autoconf build infrastructure to build the TAO_FlResource library.
1874 . Added support for the --enable-qt-reactor configure option to the
1875   autoconf build infrastructure to build the TAO_QtResource library.
1877 . Added support for the --enable-xt-reactor configure option to the
1878   autoconf build infrastructure to build the TAO_XtResource library.
1880 . Fixed a race condition involving two threads active in the same
1881   connection handler at the same time. See bug# 1647 for details.
1883 . Changed #include "..." preprocessor directives to use fully
1884   qualified (from $(ACE_ROOT), $(TAO_ROOT), or $(TAO_ROOT)/orbsvcs)
1885   paths.  We had been depending on non-standard behavior where files
1886   #included with "..." are first looked for in the current directory
1887   and then in the same directories used by #include <...>.  See bug
1888   #2448 for details.
1890 USER VISIBLE CHANGES BETWEEN TAO-1.4.10 and TAO-1.5.0
1891 ====================================================
1893 . Fixed Transport to handle incoming fragmented messages propperly, abstract
1894   interfaces TAO_Pluggable_Messaging and TAO_Transport have been
1895   modified. Custom transport/messaging implementations require
1896   interface modification.
1898 . Fix collocation optimisation when a location forward is received directing a
1899   client to a collocated object.
1901 . Prevent an OBJ_ADAPTER exception when using an object reference containing
1902   an ObjectID that corresponds to a collocated IORTable entry.
1904 . Reverted solution that allowed POA-level control over access to
1905   security-enabled objects due to conflicts with the specification,
1906   i.e. the  Security::SecQoP* are not server-side policies.
1908 . When suppressing any and typecodes during IDL compilation this will not
1909   trigger compile errors due to missing any insert operations
1911 . Bug fix in IFR when creating typecodes for nested structs and unions.
1913 . Added support for the --enable-tk-reactor configure option to the
1914   autoconf build infrastructure to build the TAO_TkResource library.
1916 IDL COMPILER
1917 ------------
1919 . Fix problem with missing includes in the skeleton files for imported arg
1920   trait declarations.
1922 USER VISIBLE CHANGES BETWEEN TAO-1.4.9 and TAO-1.4.10
1923 ====================================================
1925 . Fixed a bug, which allowed security unaware clients to make
1926   invocations on secure objects, when the ORB was configured with
1927   support for Security::SecQoPNoProtection.
1929 . Fixed Bugzilla #2145, which was preventing the building of
1930   the IDL compiler on HPUX.
1932 . Added boxed valuetype support to the Interface Repository
1933   loader.
1935 . Fixed several bugs in the PICurrent implementation
1937 . Fixed GOA factory name
1939 . Fixed -ORBConnectionHandlerCleanup arguments to accept 0 and 1.
1941 . Improved Portable Interceptor implementation.
1943 . Autoconfig improvements.
1945 . Improved Real-time CORBA support for dynamic threads.
1947 IDL COMPILER:
1948 -------------
1950 . Some bug fixes. See bug #2375 and #2390.
1952 USER VISIBLE CHANGES BETWEEN TAO-1.4.8 and TAO-1.4.9
1953 ====================================================
1955 . Added new endpoint selector implementation - Optimized
1956   Connection Endpoint Selector. A member of the tao/Strategies library,
1957   use svc.conf file to load the OC_Endpoint_Factory object. See
1958   tests/AlternateIIOP/svc.conf for an example.
1960 . Continued splitting ORB Services into stub, skeleton, and
1961   implementation libraries.  Changes to the Concurrency Service,
1962   Property Service, and RTEventLog Admin Service (TAO's RTEvent
1963   varient of the OMG Telecom Log Service) have been committed.
1965 . Added a new ORB run-time option "-ORBUseLocalMemoryPool [0|1]" which
1966   controls an individual application's use of TAO's Local Memory Pool.
1967   TAO can use a local memory pool to satisfy some of its needs for
1968   heap storage, as it is often more efficient than using the
1969   platform's default memory allocator. The pool will always grow as
1970   large as necessary to satisfy memory allocations, but it will never
1971   shrink. This means that sometimes a process can retain memory that
1972   it no longer needs. If the default allocator is used then TAO gives
1973   memory back as soon as it is not needed.
1974   The UseLocalMemoryPool option selects between using the local memory
1975   pool or using the default allocator, where 0 means don't use the pool,
1976   1 means use the pool. The default is still controlled by the original
1977   compile-time option controlled by the #define TAO_USE_LOCAL_MEMORY_POOL
1978   which defaults to 1 if not specified.
1980 . Add a property -ORBKeepalive to allow a user to specify that
1981   SO_KEEPALIVE is set on IIOP connections. See docs/Options.html
1982   and Bugzilla #2374.
1984 . Add support for RTCORBA::TCPPrototocolProperties::keep_alive, when
1985   RTCORBA is used, and the application is using a Server or Client
1986   ProtocolPolicy.
1988 . Refined the Telecom Log Service Strategy Interface.  Added methods
1989   to fetch/store capacity alarm thresholds, log QoS, and "week mask".
1990   Rework locking to avoid race conditions and to improve performance.
1992 IDL COMPILER:
1993 -------------
1995 . Fixed bug in computation of repository ids for predefined types.
1997 . Fixed bug in the handling of TAO_IDL_INCLUDE_DIR.
1999 Interface Repository:
2000 ---------------------
2002 . Fixed bug in the lookup of a valuetype member's type using its
2003   repository id.
2005 . Fixed bug in IFR loader in checking for pre-existence before
2006   creating an entry corresponding to an IDL typedef.
2008 . Fixed bug in lookup when checking for a local name clash.
2010 . Fixed bug in the describe_interface() operation when the IDL
2011   interface being described has multiple parents.
2013 USER VISIBLE CHANGES BETWEEN TAO-1.4.7 and TAO-1.4.8
2014 ====================================================
2016 . Fixed bugs in code generation for interfaces that inherit from both
2017   concrete and abstract interfaces.
2019 . Subset Anys and TypeCodes to a separate library. If you use Any/TypeCode
2020   or one of the core TAO libs uses it you should link the AnyTypeCode
2021   library with your application
2023 . PICurrent is moved to the PI library
2025 . POACurrent has been moved back from PI_Server to PortableServer
2027 . Added IPv6 support for IIOP
2029 . When Any and TypeCode generation is suppressed when compiling IDL
2030   no typecodes are generated anymore for user exceptions, they are not
2031   needed for the operation of the ORB
2033 . When making AMI invocation and the send blocks we buffer the message
2034   and send it out when the transport is available again
2036 . Emulated C++ exceptions are not maintained anymore. We are keeping
2037   the macros in the TAO code until x.5.1 is out, if nobody sponsors
2038   maintenance at that moment the macros will be removed from TAO.
2039   See also http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=2256
2041 . Support the latest AMI mapping, the old mapping will be kept working
2042   until 1.5.1 has been released. If you need the old mapping add
2043   the define TAO_HAS_DEPRECATED_EXCEPTION_HOLDER to your config.h
2044   file before you build TAO and the TAO_IDL compiler
2046 . Added CodecFactory::create_codec_with_codesets to create a codec with
2047   a specific codeset. See OMG issue 6050 for the background.
2049 . PortableInterceptor::IORInterceptor has been splitted in IORInterceptor
2050   and IORInterceptor_3_0. If you use IORInterceptors read the ChangeLog for
2051   the details, maybe you have to update your code!
2053 . Added the new Custom Servant Dispatching (CSD) feature to provide user
2054   applications with the ability to implement and "plug-in" custom strategies
2055   to handle the dispatching of requests to servants. This new feature is not
2056   currently tested for VxWorks. See TAO release notes for more information.
2058 . Added support for an TAO "versioned" namespace.  When enabled, TAO
2059   library sources will be placed within a namespace of the user's
2060   choice or a namespace of the form TAO_1_4_7 by default, where
2061   "1_4_7" is the TAO major, minor and beta versions.  The default may
2062   be overridden by defining the TAO_VERSIONED_NAMESPACE_NAME
2063   preprocessor symbol.  Enable overall versioned namespace support by
2064   adding "versioned_namespace=1" to your MPC default.features file.
2066 . Changed generated signatures of some valuetype member
2067   accessor/mutator pairs to be consistent with IN
2068   parameter semantics.
2070 . Added spec-required generation of member-initializing
2071   constructor for valuetypes. See C++ mapping (03-06-03)
2072   section 1.17.2. Closes Bugzilla #2270.
2074 . Added default include paths $TAO_ROOT, $TAO_ROOT/tao,
2075   $TAO_ROOT/orbsvcs, and $CIAO_ROOT/ciao to IDL compiler
2076   execution, eliminating the need to add them explicitly
2077   to the command line.
2079 . Added immediate exits to IDL compiler when some name clash
2080   errors are encountered, avoiding a crash if parsing is
2081   continued. Closes Bugzilla #2281.
2083 . Changed the behavior of the _default() method (generated
2084   for IDL unions that have an explicit or implicit default
2085   case label) to clean up memory used by the freed member,
2086   if necessary.
2088 . Fixed bug in IDL compiler when handling a native exception
2089   in an operation declared in Messaging::ExceptionHolder.
2091 . Although not presently supported by CIAO, added error
2092   checking to the IDL compiler's parsing of IDL home
2093   primary keys, which constrain the basic valuetype
2094   syntax in several ways.
2096 . Fixed order of generated base class stub constructor calls
2097   when the IDL interface has both concrete and abstract parents.
2099 . Fixed a bug in the handling of forward declared interfaces
2100   that have both concrete and abstract parents.
2102 . Fixed the command line parsing to preserve the literal
2103   quotes if they are used in an include path that has a space.
2104   Closes Bugzilla #2219.
2106 . Many changes related to refactoring of Anys and Typecodes
2107   into a separate library (POC is Johnny Willemsen
2108   <jwillemsen@remedy.nl>).
2110 . Merging of many Notification Service changes/fixes from OCITAO to
2111   the DOC version.  These generally addressed stability issues such as
2112   memory leaks, thread leaks, etc.
2114 . Introduction of the versioned namespaces changed the name of the
2115   factory function used for dynamically loading the Notification
2116   Service persistence mechanisms.  See the service configurator file
2117   in orbsvcs/tests/Notify/XML_Persistence for an example.
2119 USER VISIBLE CHANGES BETWEEN TAO-1.4.6 and TAO-1.4.7
2120 ====================================================
2122 . The Telecom Logging Service now supports dynamically loaded Strategies
2123   which can be used to implement a persistent log record store.  If none
2124   are specified, a default in-memory hash table implementation is used.
2126 . The CodecFactory is moved to its own library. If you use this in your
2127   application include tao/CodecFactory/CodecFactory.h and link the
2128   TAO_CodecFactory with your app
2130 . The ORBInitializer registry, PolicyFactory registry and ORBInitInfo
2131   are moved to the new PI library. If you use these clases include
2132   tao/PI/PI.h in your application code and link the new TAO_PI
2133   library with your application.
2135 . All server side PortableInterceptor support is moved to the new
2136   TAO_PI_Server library. If you use this, include tao/PI_Server/PI_Server.h
2137   in your application code and link the new TAO_PI_Server lib
2139 . A new set of examples and support code that show how to set up a
2140   multicast-based federation of  Notification Services is now available
2141   in $TAO_ROOT/orbsvcs/examples/Notify/Federation.
2143 . Hard coded loading of services with Service Configurator now uses the
2144   ACE_DYNAMIC_SERVICE_DIRECTIVE macro which also works when the xml
2145   version of service config is enabled.
2147 . The Codeset negotiation support is in its own library. The hooks are
2148   still present in the ORB Core to dynamically load the codeset support
2149   if needed. This behavior is overridden by the new ORB_init option
2150   -ORBNegotiateCodesets 0.
2152 . The Boxed Value Type as specified by the OMG is now accepted by the
2153   TAO_IDL compiler.
2155 . TAO clients now parse the OMG specified TAG_ALTERNATE_IIOP_ADDRESS
2156   profile component. To generate IORs using that component, add the
2157   new ORB_init option, -ORBUseSharedProfiles 1.
2159 . Refactored TAO's codeset negotiation feature to be optionally loadable.
2160   The implementation is now in a separate library, TAO_Codeset. Applications
2161   not wishing to use codeset support may pass -ORBNegotiateCodesets 0 to
2162   ORB_init() to avoid loading the library. When building dynamic applications
2163   codeset negotiation is available by default. For static applications, the
2164   default is to *not* include codeset negotiation. Staticly linked apps
2165   needing codeset negotiation support must do two things:
2166   - Define the new MPC feature "negotiate_codesets=1" in default.features
2167     and regenerate makefiles
2168   - Add "#include <tao/Codeset/Codeset.h>" somewhere in their application
2169     source. Placing this in the source file that includes calling ORB_init()
2170     is probably the best place.
2172 . Added CORBA::Object::_repository_id() and CORBA::Object::_get_orb()
2173   as described by the spec.
2175 USER VISIBLE CHANGES BETWEEN TAO-1.4.5 and TAO-1.4.6
2176 ====================================================
2178 . The RTOldEvent library has been removed. The RTEvent library has been
2179   split in a stub/skel and serv library.
2181 . Support for bi-directional communication over SSLIOP.
2183 . Servants are now always reference counted, in accordance with changes
2184   to the CORBA specification.
2186 . Added a -x option to catior that works like -f except that it reads
2187   the IOR from standard input rather than from a file. This makes catior
2188   much more like the unix "cat" command, and enables it to be used in a
2189   pipeline.
2191 . Changed the precedence rules for the -ORBListenEndpoints (aka
2192   -ORBEndpoint) so that the host identifier (either hostname or IP
2193   address) that appears in IIOP profiles is determined thus:
2195     1. value from hostname_in_ior (if specified);
2196     2. setting of -ORBDottedDecimalAddresses option;
2197     3. value for hostname in -ORBListenEndpoints specification;
2198     4. whatever TAO magically comes up with based on system
2199        configuration
2201   A new test (TAO/tests/IOR_Endpoint_Hostnames) verifies the
2202   operation of this feature.
2204 . Changed the way that Bidirectional endpoint processing happens when
2205   -ORBDottedDecimalAddresses 1 is in effect. The previous behavior
2206   always used the setting of the receiver, but that caused problems when
2207   the sender and receiver were not using the same dotted decimal
2208   addresses setting.  Bidirectional endpoint processing now uses
2209   whatever the sender provides as the hostname since that's also what
2210   will be in that sender's IORs.
2212 . Added a configuration property -ORBIMREndpointsInIOR [0|1] that
2213   controls whether ImR endpoints are written into persistent IORs. See
2214   $(TAO_ROOT)/docs/Options.html and bugzilla #2123 for usage.
2216 . Increment the refcount on the servant in the id_to_servant and
2217   reference_to_servant methods of the POA.
2219 . Improved g++ 4.0 support.  A number of RTTI related problems have been
2220   fixed, in addition to removal of duplicate internal ORB related
2221   singleton instances.
2223 . Fixed assertion that occured in some thru-POA collocated calls.
2225 . Fixed CORBA::UnknownUserException Any insertion problem.
2227 . Fixed TypeCode equivalence failure when comparing aliased and
2228   unaliased TypeCodes of the same type.
2230 USER VISIBLE CHANGES BETWEEN TAO-1.4.4 and TAO-1.4.5
2231 ====================================================
2233 . The POA is rewritten so that it uses strategies for its implementation.
2235 . The ImR handling is moved to the new ImR_Client library. If your server
2236   needs to register itself to the ImR you have to link the new ImR_Client
2237   library
2239 . The MIOP part of the POA is moved to the GOA. See the latest version of the
2240   MIOP specification. You have to link now with the PortableGroup
2241   library and retrieve a GOA instead of the RootPOA.
2243 . Implemented several missing parts of POA functionality as described
2244   by the latest corba specification. Missing functionality, incorrect
2245   exceptions, incorrect minor codes and much more.
2247 . Splitted the huge PortableServer.pidl file in several smaller files
2248   and regenerated all the generated files in the repository.
2250 . Move TAO_ORB_Manager from PortableServer to Utils library, this is a
2251   helper class.
2253 . The POA has been split in Root_POA and Regular_POA, on this we will more
2254   in the future so that the Root_POA just pulls in the minimal set of things
2255   needed.
2257 . The RootPOA now has "RootPOA" as its adapter name, previously it had
2258   an empty string.  This is required by the CORBA specification, you can
2259   overrule this by defining TAO_DEFAULT_ROOTPOA_NAME if you want to
2260   reduce the "RootPOA" string to be shorter, e.g., "".
2262 . Added support for GNU G++ 4.0.  Additional details in ACE `NEWS' file.
2264 . Explicit template support has been dropped for TAO and it is not possible
2265   to use it anymore.
2267 . CORBALOC/CORBANAME patched a memory leak and fixed performance related
2268   to the use of defaulted object keys.
2270 . Added support for Visual Age on AIX
2272 . Made it possible to run most ORB core test with VxWorks in a cross host
2273   scenario where one part of the test runs on the host and the other part
2274   of the test runs on the VxWorks target
2276 . The skeletons generated by the TAO_IDL compiler have been refactored
2277   to significantly reduce the size of server applications.  Please see
2279   http://www.dre.vanderbilt.edu/Stats/
2281   for metrics that illustrate the magnitude of the reduction.
2283 . New TypeCode implementation that reduces the size of TypeCodes in
2284   memory at run-time.
2286 USER VISIBLE CHANGES BETWEEN TAO-1.4.3 and TAO-1.4.4
2287 ====================================================
2289 . Reimplemented the way that TAO_Transport deals with GIOP headers.  In
2290   some cases partial GIOP message headers were read and used as if a full
2291   GIOP header were received. [Bug 1681]
2293 . GIOP fragment handling has changed where a single large allocation and
2294   copy occurs at the end of a fragment chain instead of an allocation and
2295   copy for every fragment received.
2297 . The tao-config script has been replaced by pkg-config metadata files
2298   which are installed in ${prefix}/lib/pkgconfig by the automake build.
2300 . SHMIOP respects now the dotted decimal addresses setting. When this is
2301   set it uses ip addresses instead of hostnames.
2303 . Removed the usage of the ACE_x_cast macros, we are using the C++ casts
2304   from now on.  The TAO core libraries will be updated before the x.4.5
2305   release.
2307 . Removed MPC code that creates unused and unnecessary subfolders in
2308   Visual Studio projects and makefiles.
2310 . Fixed unclosed temporary file created by the IDL compiler on platforms that
2311   lack mkstemp. [BUGID:2026]
2313 . Fixed IDL compiler bug related to handling null object references in a
2314   sequence. [BUGID:2027]
2316 . Made behavior when marshaling null value of an abstract interface similar
2317   to the behavior of CORBA::Object.
2319 . Made use of 'true' and 'false' with CORBA::Boolean more consistent in TAO
2320   source code and generated code.
2322 . Fixed bug in code generation for typedefs of IDL arrays that are not declared
2323   at global scope or in a module (i.e., in an interface, valuetype, eventtype
2324   or home).
2326 . Fixed bug in code generation of parent operations in AMI ReplyHandler
2327   interfaces.
2329 . Changed remaining instances of C-style casts in generated code to the
2330   appropriate C++-style cast.
2332 . Fixed typo in code generation of bounded sequences of CORBA::Object.
2334 . Fixed bug in code generation for attributes which are unaliased bounded
2335   (w)strings.
2337 . Changed implementation of TAO::Unknown_IDL_Type (a subclass of TAO::Any_Impl
2338   used when an Any is first decoded from the wire or created from a Dynamic
2339   Any) to contain its value in a TAO_InputCDR stream rather than an
2340   ACE_Message_Block*, thus cleaning up alignment and memory management code
2341   related to this type.
2343 USER VISIBLE CHANGES BETWEEN TAO-1.4.2 and TAO-1.4.3
2344 ====================================================
2346 . New pluggable protocol for GIOP over HTBP, known as HTIOP.  Source in
2347   orbsvcs/orbsvcs/HTIOP.
2349 . All TAO-specific vendor IDs are now found in the "TAO" namespace.
2350   Documentation for these constants has also been improved in a number
2351   of cases.
2353 . Further reduced inter-header dependencies, which should improve
2354   compilation times for TAO and TAO applications.
2356 . Fixed memory leak in CDR encapsulation Codec's encode_value() method.
2358 . Modified PerlACE scripts for Tests/test environment to allow
2359   per-platform customization of process startup delay.  Used the changes
2360   in various run_test scripts.
2362 . SyncScope::NONE blocks during connects [Bug 1476].
2364 . Improved compatibility with JDK orb.
2366 . Added Wait on LF No Upcalls (MT_NOUPCALLS) wait strategy.  However,
2367   recent experiences with it indicate there may be problems in scenarios
2368   other than its original motivating case (see ChangeLog).  This feature
2369   should be considered EXPERIMENTAL, and use it at your own risk.
2371 . New CORBALOC parsing is available. This feature allows TAO clients to
2372   use any third-party pluggable protocol in corbaloc strings.
2374 . Fixed bug that caused memory fault when incoming object reference
2375   contains an unknown profile.
2377 . Fixed problem in some modules when platform lacks unsigned long long
2378   support.
2380 . Modified catior to allow decoding of additional protocols.
2382 . The PortableServer library isn't depended anymore on the
2383   ObjRefTemplate and IORInterceptor libraries.  ObjRefTemplate and
2384   IORInterceptor are loaded on demand and depend on PortableServer.
2386 . IDL compiler can be built for environments that lack unsigned long
2387   long.
2389 . Reduced the amount of code generated by the TAO_IDL compiler when
2390   using forward declarations.
2392 . Naming Service implementation memory leak fixes.
2394 . Split ORB Services into stub, skeleton, and implementation libraries.
2395   Changes to the Naming, Trading, Event, Notification, and Logging
2396   Services have been committed.
2398 . Common utilities (tao_imr, tao_ifr, nslist, nsadd, nsdel,
2399   NamingViewer) now installed in $ACE_ROOT/bin.
2401 . Changed #includes of orbsvcs header files to be consistent.  The
2402   pathname now always contains a "orbsvcs/" prefix.
2404 . Notification Service EventReliability and ConnectionReliability QoS
2405   have been added to bring the DOC version of Notification Service
2406   into feature parity (in this area) with OCITAO's 1.3a version of the
2407   Notification Service.  Note that due to changes between 1.3a's
2408   source base and DOC's 1.4.3 source base, this is a re-implementation
2409   of the changes and not a simple port.
2411   In addition to the changes made directly to the Notification Service
2412   a number of test and example programs have been created for the
2413   reliable notification service. These programs may be found in
2414   subdirectories of $TAO_ROOT/orbsvcs/tests/Notify. A README file
2415   in each directory provides more detailed information, and a run_test.pl
2416   script is included to run the example or test.
2418 . A change has been made to the Notification Service IDL to improve build
2419   times and reduce the Notification Service footprint. The change suppresses
2420   the generation proxy and stub code for the many interfaces that are
2421   specified by the OMG, but are not implemented in TAO.
2423 . Implementation Repository refactored to allow the locator and
2424   activator to be used as services in the ACE Service Configurator
2425   framework.  The locator and activator services have been split into
2426   separate libraries and executables.  There have also been
2427   miscellaneous bugs fixed and performance enhancements made.
2429 . Fixed Load Balancer binary generation problem.  Libraries were being
2430   created rather than executables.
2432 . Work around MSVC++ 6 namespace brain damage in new Security/SSLIOP
2433   code.
2435 . Fixed memory management problem in SecurityLevel3 code.
2438 USER VISIBLE CHANGES BETWEEN TAO-1.4.1 and TAO-1.4.2
2439 ====================================================
2441 . Overall
2442   - Support for g++ 3.4.1.
2443   - Support added for latest HP aCC compiler.
2444   - Improved Doxygen documentation.
2445   - Reduced header file dependencies, which should speedup compilation
2446     and help minimize static footprint.
2448 . ORB
2449   - Fixed memory leak in DII exception handling.
2450   - Fixed insertion of label values when creating a union type code
2451     with create_union_tc().
2452   - Support for retrieving AMI and AMH reply handlers from a local
2453     memory pool.
2454   - Fixed location forwarding to collocated objects.
2456 . POA
2457    It is now possible to pass user-defined policies unknown to the
2458     POA with corresponding registered policy factories to the
2459     POA::create_POA() method via its policy list parameter, as
2460     required by the CORBA specification.
2462 . TAO_IDL
2463   - Closed security hole on platforms that support mkstemp() function.
2464   - Fixed potential buffer overrun problem.
2465   - A number of scoped name bugs have been fixed, including some
2466     workarounds for MSVC++ 6 scope resolution problems.
2467   - Fixed mixing of *Implicit and *Explicit inheritance lines when the
2468     there is a chain of inheritance in component homes.
2469   - Improved error checking of component and home declarations.
2470   - Code generation for valuetypes that support one or more abstract
2471     interfaces.
2472   - Added new "-GA" option that causes CORBA::Any operators and
2473     TypeCode bodies to be generated in a separate "fooA.cpp" file.
2474     Helps reduce footprint for applications that do not use Anys or
2475     TypeCodes.
2476   - Added required _downcast() method to generated value factories.
2477   - Disabled generation of implementation class for abstract
2478     interfaces.
2479   - Removed support for reading an IDL file from stdin.  This feature
2480     is legacy code used for debugging the IDL compiler in the early
2481     days of its implementation, and is not useful in application
2482     situations.
2483   - Generated stub/skeleton inline files now end in ".inl" instead of
2484     ".i".  The latter is generally used as the extension for
2485     pre-processed C sources.
2486   - Process multiple IDL files in a single execution by iteration
2487     in a single process, rather than spawning a process for each
2488     file as before.
2489   - Added the remaining spec-defined sequences of predefined types
2490     to the CORBA namespace in TAO.
2492 . Added CPU utilization load monitor to TAO's Cygnus load balancer.
2494 . Added basic CSIv2 support, which is the latest CORBA Security
2495   architecture specification.
2497 USER VISIBLE CHANGES BETWEEN TAO-1.4 and TAO-1.4.1
2498 ==================================================
2502 .  Changed the name of a parameter to the TAO type code
2503    internal method to avoid a name clash with STL.
2505 . Added the spec-required ostream insertion operator for
2506   CORBA::Exception* to go with the existing ostream
2507   insertion operator for CORBA::Exception&.
2509 . Moved the above ostream insertion operators into the
2510   CORBA namespace, so they cannot be accidentally hidden by an
2511   application.
2513 . Moved the declaration of Any operators for some ORB
2514   types so that the corresponding definitions may
2515   remain unlinked if the Any operators are not used in
2516   an application.
2518 . Fixed typo in type code factory code that is compiled
2519   only when ACE_SWAP_ON_WRITE is defined.
2521 . Several fixes to MakeProjectCreator (MPC) files, which
2522   generate GNU makefiles, Borland makefiles, and Microsoft
2523   Visual Studio project files.
2525 . Fixed Any insertion and extraction operators for bounded
2526   strings and wstrings to prevent an error if they are
2527   inserted as bounded with bound 0 and extracted as
2528   unbounded, or vice versa.
2530 . Deprecated the TAO-specific _type() method for exceptions.
2531   which is no longer used anywhere in TAO, and is retained
2532   solely for backward compatibility.
2534 . Fixed bug in TAO_SSLIOP pluggable protocol that prevented large
2535   requests from being sent.  [Bug 1429]
2537 . Cleaned up interceptor memory leaks that occurred when
2538   CORBA::ORB::destroy() was called.
2540 . Fixed problem where a ServerRequestInterceptor could be called after
2541   the ORB was shutdown.  [Bug 1642]
2543 . Overhauled PICurrent support to fix several problems. [Bug 1215, 1738]
2545 . SSLIOP documentation is now available.
2547 . Fixed memory leaks in servers when the ORB is operating in a
2548   thread-per-connection  mode. This problem showed up when clients
2549   keep connecting and disconnecting from the servers.
2551 . Fixed memory leaks in AMI clients that connect to a servers over
2552   unreliable connections that keeps getting dropped.
2554 . Fixed a race connection in Any_Impl implementation.
2556 . Fixed a byte order problem with DSI gateways
2558 . Added support for OVATION to work with this BFO of TAO.
2560 IDL COMPILER
2561 -------------
2563 . Changed the names of some local variables in generated
2564   operation code, to reduce that chance of a name clash.
2566 . Fixed bug where a #pragma version directive is sometimes
2567   not reflected in the generated repository id.
2569 . Disambiguated generated template instantiations for array
2570   _var, _out and _forany classes, when two or more arrays
2571   have the same element type and bound.
2573 . Added check for a name clash between a valuetype member
2574   and the first segment of a scoped name referenced in
2575   the valuetype.
2577 . Fixed incorrect code generation for the CDR operator of a
2578   struct/union/exception with an undefined forward declared
2579   interface member.
2581 . Fixed incorrect code generation for operation arguments
2582   that are typedefs of char, octet and boolean.
2584 . Fixed bug in handling complex recursive types.
2586 . Added -GId command line option to generate line and
2587   file debug info in *I.* files, similar to what is
2588   already generated in *C.* and *S.* files. This debug
2589   info generation is now off by default in *I.* files.
2591 . Fixed the handling of included orb.idl file to generate
2592   corresponding C++ includes for the files orb.idl
2593   itself includes, which contain spec-required declarations
2594   of sequences of basic CORBA types.
2596 . Fixed generation of ORB file includes triggered by the
2597   presence of one or more abstract interfaces in an IDL file.
2599 . Added check to the generation of _setup_collocation()
2600   method for abstract interfaces, to make it more robust.
2602 . Added a version of the realpath() system function that
2603   can be used with LynxOS, which does not have a native
2604   version.
2606 . Fixed code generation for bounded strings and wstrings
2607   when they appear anonymously (without a typedef) as operation
2608   parameters.
2610 . Fixed code generation of flat names for AMI-related types.
2612 . Fixed errors in code generation of sequences of components
2613   and eventtypes.
2615 . Fixed code generation of CDR operators for aggregate types
2616   that contain one or more abstract interfaces.
2618 . Fixed bogus errors produced when there are repeated forward
2619   declarations of an interface.
2621 . Fixed errors in some use cases of the propagation of a #pragma
2622   prefix directive to nested scopes in generated repository ids.
2624 . Fixed errors in code generation for attributes in Asynchronous
2625   Method Handler (AMH) classes.
2627 . Fixed a bug that caused the IDL compiler to crash when it sees
2628   certain kinds of illegal IDL.
2630 . Fixed problems in the interaction of checks for local interface
2631   and for null object reference when marshaling an interface
2632   member of an aggregate type.
2634 . Fixed generation of operations inherited by a local interface
2635   from a non-local one - these operations must be regenerated
2636   as pure virtual.
2638 . Added a space between some generated template parameter
2639   opening brackets and a leading double colon of a fully
2640   scoped name, since some compilers would read "<:" as
2641   the digraph character for ']'.
2643 . Fixed bug in code generation for an array of typedef of
2644   string and wstring.
2646 . Fixed a bug in the generation of repository ids for
2647   explicit, implicit and equivalent interfaces for component
2648   homes.
2650 . Fixed bugs in the generation of marshaling and demarshaling
2651   code for aggregate types with component or eventtype members.
2653 ORB SERVICES:
2654 -------------
2656 IFR:
2659 . Fixed bug in creating entries for attributes, which in CORBA 3.x may
2660   have separate get- and set- exceptions lists.
2662 . Added some method overrides to disambiguate multiple inheritance
2663   problems some compilers would have in classes added to support CORBA
2664   3.0 extensions.
2666 . Fixed bugs in entering attributes of abstract and local interfaces,
2667   and in querying for attributes of components.
2669 . Added a "-m" option to IFR_Service to enable multicast discovery of
2670   the service.
2672 LOAD BALANCING
2673 --------------
2675 . Added two new strategies, namely LoadAverage and LoadMinimum.
2677 NOTIFICATION SERVICE:
2678 ---------------------
2679 . Corrected the implementation to add the caller's <subscribed_types>
2680   to the Admin Object's types. This solves the problem that if a
2681   proxy's connect_structured_push_consumer() is called *AFTER* the
2682   proxy's subscription_change(), then the subscriptions do not work.
2684 . Added the -NoUpdates option to the Notification svc.conf
2685   options. If this option is specified, the
2686   subscription_change/offer_change messages are NOT sent to proxy
2687   objects.  This option is useful to turn off entire updates for
2688   applications that do not reply on subscription_change/offer_change
2689   messages.
2692 USER VISIBLE CHANGES BETWEEN TAO-1.3.6 and TAO-1.4
2693 ==================================================
2695 IDL COMPILER:
2696 -------------
2697 . Fixed bug related to the order of #pragma prefix and #include
2698   directives
2700 . Fixed bug in generation of copy constructor for AMH interface
2701   classes.
2703 . Fixed incorrect handling of a parameter name in an AMI sendc_xxx
2704   operation that clashes with a C++ keyword.
2706 . Readded the generation of _unchecked_narrow () back into the stub
2707   code since it is required by the latest OMG CORBA specification.
2709 CORE ORB
2710 -------
2712 . SCIOP endpoints are not created by default. They need explicit
2713   specification of -ORBEndpoint sciop:// at startup.
2715 . Fixed a bug that caused the ORB to dump a core when server side
2716   interceptors returns an exception and if the operation parameters
2717   contains a sequence an out parameter.
2719 . Fixed a bug that caused extraction of basic data types that are
2720   aliased from an Any.
2722 . Added a couple of regressions tests for some of AMH features.
2724 . Lots of other bug fixes (see the bottom of this message for a
2725   complete list of bugzilla bugids fixed in this beta).
2727 . Fixed a problem with dynamic loading of the ORB. This was introduced
2728   by "magic" static constructors in the TAO PortableServer headers
2729   where dynamic loading/unloading of the ORB failed.
2731 . Added an option, -ORBDisableRTCollocation which allows users to
2732   disable the RT collocation technique used by TAO and fall back on the
2733   default collocation technique used for the vanilla ORB.
2735 . Prevent the TP_Reactor used within TAO from exiting when it receives
2736   a EINTR during select ().
2738 ORB SERVICES
2739 ------------
2741 . Added new security variable so that libTAO_Security could be built
2742   independently of libTAO_SSLIOP, and set the default to true.
2744 . An initial implementation of the FTCORBA spec has been added to
2745   TAO. This release features an initial cut of ReplicationManager,
2746   FaultNotifier, and a FaultDetector. Please see
2748   $TAO_ROOT/orbsvcs/tests/FT_App/README
2750   for a simple example that uses the different FTCORBA features that
2751   have been implemented in TAO.
2753 . Fixed a bug, in PG_ObjectGroupManager::remove_member () methods
2754   which caused the group entry to be available in the location_map
2755   when a member of the object group is removed.