summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohnc <johnc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-06-25 16:34:48 +0000
committerjohnc <johnc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-06-25 16:34:48 +0000
commit08276f3bd8967f3d7787fdb4d959a6b27a58d5e2 (patch)
treefbe9784840d050a723dafb7707ccf3e95562601a
parent477324eb821c68ea072a8a966ea886bbaa63b193 (diff)
downloadATCD-ACE+TAO+CIAO-5_5_9.tar.gz
ChangeLogTag:Mon Jun 25 11:34:36 CDT 2007 Ciju John <johnc@ociweb.com>ACE+TAO+CIAO-5_5_9
-rw-r--r--ACE/ChangeLog23
-rw-r--r--ACE/NEWS6
-rw-r--r--ACE/PROBLEM-REPORT-FORM3
-rw-r--r--ACE/VERSION3
-rwxr-xr-xACE/bin/make_release.py14
-rw-r--r--CIAO/ChangeLog18
-rw-r--r--CIAO/NEWS17
-rw-r--r--CIAO/PROBLEM-REPORT-FORM1
-rw-r--r--CIAO/VERSION3
-rw-r--r--TAO/ChangeLog20
-rw-r--r--TAO/NEWS26
-rw-r--r--TAO/PROBLEM-REPORT-FORM1
-rw-r--r--TAO/VERSION3
13 files changed, 115 insertions, 23 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index f57b24e1abd..d2bd56e1be5 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,8 +1,27 @@
-
-Thu Jun 21 13:20:20 CDT 2007 Ciju John <johnc@ociweb.com>
+Mon Jun 25 11:34:36 CDT 2007 Ciju John <johnc@ociweb.com>
* ACE version 5.5.9 released.
+Mon Jun 25 16:03:37 UTC 2007 Ciju John <johnc at ociweb dot com>
+
+ * NEWS:
+ Adding NEWS summaries on Ossama's behalf.
+
+Fri Jun 22 15:56:12 UTC 2007 William R. Otte <wotte@dre.vanderbilt.edu>
+
+ * bin/make_release.py:
+
+ Updates to fix ChangeLog entry creation and superflous packaging
+ of extra binary files in ACE+TAO and ACE+TAO+CIAO packages.
+
+Fri Jun 22 14:50:14 UTC 2007 Ciju John <johnc at ociweb dot com>
+
+ * ChangeLog:
+ * PROBLEM-REPORT-FORM:
+ * VERSION:
+ * ace/Version.h:
+ Revert to x.5.8 status.
+
Tue Jun 12 20:11:59 UTC 2007 Ciju John <johnc at ociweb dot com>
* NEWS:
diff --git a/ACE/NEWS b/ACE/NEWS
index 34a8f153fc1..d5aefb4f61f 100644
--- a/ACE/NEWS
+++ b/ACE/NEWS
@@ -30,6 +30,12 @@ USER VISIBLE CHANGES BETWEEN ACE-5.5.8 and ACE-5.5.9
define the following in your config.h file.
ACE_GCC_HAS_TEMPLATE_INSTANTIATION_VISIBILITY_ATTRS 1
+. Fixed (rare) problem in TP_Reactor where incorrect event handler was
+ resumed.
+
+. Reduced footprint on some platforms, particularly those that use
+ g++ >= 3.3.
+
USER VISIBLE CHANGES BETWEEN ACE-5.5.7 and ACE-5.5.8
====================================================
diff --git a/ACE/PROBLEM-REPORT-FORM b/ACE/PROBLEM-REPORT-FORM
index 6d52879bbb9..2b9ec732da3 100644
--- a/ACE/PROBLEM-REPORT-FORM
+++ b/ACE/PROBLEM-REPORT-FORM
@@ -58,7 +58,7 @@ Subject: [area]: [synopsis]
THE $ACE_ROOT/include/makeinclude/platform_macros.GNU FILE [if you
use a link to a platform-specific file, simply state which one
(unless this isn't used in this case, e.g., with Microsoft Visual
- C++)]:
+ C++)]:
CONTENTS OF $ACE_ROOT/bin/MakeProjectCreator/config/default.features
(used by MPC when you generate your own makefiles):
@@ -88,4 +88,3 @@ transcript if at all possible. ]
SAMPLE FIX/WORKAROUND:
[If available ]
-
diff --git a/ACE/VERSION b/ACE/VERSION
index 9cb6d030fc3..94d20147eb9 100644
--- a/ACE/VERSION
+++ b/ACE/VERSION
@@ -1,4 +1,4 @@
-This is ACE version 5.5.9, released Thu Jun 21 13:20:20 CDT 2007
+This is ACE version 5.5.9, released Mon Jun 25 11:34:36 CDT 2007
If you have any problems with or questions about ACE, please send
email to the ACE mailing list (ace-users@cs.wustl.edu), using the form
@@ -9,4 +9,3 @@ please do one of the following:
contents "subscribe ace-users" to majordomo@cs.wustl.edu.
2) Or, monitor the comp.soft-sys.ace newsgroup for responses.
-
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py
index 9bc2497dce5..d06b533eea6 100755
--- a/ACE/bin/make_release.py
+++ b/ACE/bin/make_release.py
@@ -324,8 +324,7 @@ def create_changelog (component):
global comp_versions, opts
# generate our changelog entry
- changelog_entry = """
-%s %s <%s>
+ changelog_entry = """%s %s <%s>
\t* %s version %d.%d.%d released.
@@ -562,18 +561,21 @@ def create_file_lists (base_dir, prefix, exclude):
for item in dirs:
# Remove our excludes
if (item) in exclude:
+ print "Removing " + item + " from consideration...."
dirs.remove (item)
for item in files:
fullitem = os.path.join (relroot, item)
if fullitem in exclude:
+ print "Removing " + fullitem + " from consideration...."
+ files.remove (item)
continue
-
- if bin_regex.search (fullitem) is not None:
- bin_files.append (os.path.join (prefix, fullitem))
else:
- text_files.append (os.path.join (prefix, fullitem))
+ if bin_regex.search (fullitem) is not None:
+ bin_files.append (os.path.join (prefix, fullitem))
+ else:
+ text_files.append (os.path.join (prefix, fullitem))
return (text_files, bin_files)
diff --git a/CIAO/ChangeLog b/CIAO/ChangeLog
index c7098eaddea..27c6e24bc48 100644
--- a/CIAO/ChangeLog
+++ b/CIAO/ChangeLog
@@ -1,8 +1,20 @@
-
-Thu Jun 21 13:20:20 CDT 2007 Ciju John <johnc@ociweb.com>
+Mon Jun 25 11:34:36 CDT 2007 Ciju John <johnc@ociweb.com>
* CIAO version 0.5.9 released.
+Mon Jun 25 16:16:17 UTC 2007 Ciju John <johnc at ociweb dot com>
+
+ * NEWS:
+ NEWS summary contributions from Gan Deng.
+
+Fri Jun 22 14:58:53 UTC 2007 Ciju John <johnc at ociweb dot com>
+
+ * ChangeLog:
+ * PROBLEM-REPORT-FORM:
+ * VERSION:
+ * ciao/Version.h:
+ Revert to x.5.8 status.
+
Wed Jun 6 20:00:19 UTC 2007 Gan Deng <gan.deng@vanderbilt.edu>
* examples/Null_Component/plan.h
@@ -16,7 +28,7 @@ Wed Jun 6 16:52:46 UTC 2007 Gan Deng <gan.deng@vanderbilt.edu>
Fixed a type conversion warning on the
WinXP_VC71_NET_Dynamic_Debug build.
-
+
Wed Jun 6 02:04:42 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* ciaosvcs/Events/CIAO_RTEC/SimpleAddressServer.cpp:
diff --git a/CIAO/NEWS b/CIAO/NEWS
index a2af924c559..f931e23964c 100644
--- a/CIAO/NEWS
+++ b/CIAO/NEWS
@@ -71,6 +71,23 @@ PLANNED MAJOR CHANGES "SOMETIME IN THE FUTURE" (i.e., exact beta not known)
. Implement a planner to query the TargetManager and RepositoryManager
and generate deployment plans on the fly.
+USER VISIBLE CHANGES BETWEEN CIAO-0.5.8 and CIAO-0.5.9
+======================================================
+
+. Added a new deployment algorithm to DAnCE for optimization of large
+ scale deployment. In this algorithm, the number of threads spawned is
+ based on the deployment plan, i.e, by parsing the deployment plan
+ information, DAnCE decides how many threads to spawn (one thread per
+ node). This algorithm knows how to "initialize" each thread since
+ each thread will have different execution context, i.e., which
+ components to deploy to which node, component configuration, etc.
+
+. Added a NA component server callback wait strategy in NAM, which uses
+ conditional variable to signal the NA call back so it can work with
+ multi-threaded configuration, such as thread-per-connection mode. The
+ original implementation uses the main thread to run the ORB event
+ loop, which will not work for multi-threaded environment.
+
USER VISIBLE CHANGES BETWEEN CIAO-0.5.7 and CIAO-0.5.8
======================================================
diff --git a/CIAO/PROBLEM-REPORT-FORM b/CIAO/PROBLEM-REPORT-FORM
index 0f9e68c8230..c9165cf1f73 100644
--- a/CIAO/PROBLEM-REPORT-FORM
+++ b/CIAO/PROBLEM-REPORT-FORM
@@ -92,4 +92,3 @@ transcript if at all possible. ]
SAMPLE FIX/WORKAROUND:
[If available ]
-
diff --git a/CIAO/VERSION b/CIAO/VERSION
index a016444e00d..26c91a9ff95 100644
--- a/CIAO/VERSION
+++ b/CIAO/VERSION
@@ -1,4 +1,4 @@
-This is CIAO version 0.5.9, released Thu Jun 21 13:20:20 CDT 2007
+This is CIAO version 0.5.9, released Mon Jun 25 11:34:36 CDT 2007
If you have any problems with or questions about CIAO, please send
e-mail to the CIAO mailing list (ciao-users@cs.wustl.edu), using the
@@ -9,4 +9,3 @@ see responses, please do one of the following:
contents "subscribe ciao-users" to majordomo@cs.wustl.edu.
2) Or, monitor the comp.soft-sys.ace newsgroup for responses.
-
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 940247844ce..7057b8b6e8e 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,8 +1,23 @@
-
-Thu Jun 21 13:20:20 CDT 2007 Ciju John <johnc@ociweb.com>
+Mon Jun 25 11:34:36 CDT 2007 Ciju John <johnc@ociweb.com>
* TAO version 1.5.9 released.
+Mon Jun 25 16:11:55 UTC 2007 Ciju John <johnc at ociweb dot com>
+
+ * ChangeLog:
+ cosmetic change.
+
+ * NEWS:
+ Add NEWS summary updates.
+
+Fri Jun 22 14:56:03 UTC 2007 Ciju John <johnc at ociweb dot com>
+
+ * ChangeLog:
+ * PROBLEM-REPORT-FORM:
+ * VERSION:
+ * tao/Version.h:
+ Revert to x.5.8 status.
+
Tue Jun 19 15:37:16 UTC 2007 Ciju John <johnc at ociweb dot com>
* orbsvcs/orbsvcs/SSLIOP.mpc:
@@ -84,6 +99,7 @@ Wed Jun 6 12:05:22 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
Fixed old reference to RtecUDPAdmin::INET that was overlooked
yesterday.
+
Wed Jun 06 09:39:00 UTC 2007 Simon Massey <sma@prismtech.com>
* TAO_IDL/util/utl_scope.cpp:
diff --git a/TAO/NEWS b/TAO/NEWS
index 8e4612fa4f5..3608abf7d68 100644
--- a/TAO/NEWS
+++ b/TAO/NEWS
@@ -17,6 +17,32 @@ USER VISIBLE CHANGES BETWEEN TAO-1.5.8 and TAO-1.5.9
. Added support for IPv6 multicast addresses when federating RTEvent
channels.
+. Fixed a bug in the IDL compiler's handling of octet constants where
+ the rhs consists of integer literals and infix operators (Bugzilla 2944).
+
+. TAO_IDL enhancements for built in sequence support in TAO DDS.
+
+. Provide support for TAO DDS zero-copy read native types.
+
+. TAO_IDL fix for lock-up and incorrect error message generation for
+ missing definitions within local modules. This fix also stops the
+ erronious look-up in a parent scoped module (with the same name as
+ a locally scoped module) that should have been hidden by the local
+ scope definition.
+
+. The TAO_IORManip library now has a filter class that allows users to
+ create new object references based on existing multi-profile object
+ references by filtering out profiles using user defined criteria. The
+ use of -ORBUseSharedProfile 0 is required for this to function.
+
+. A problem in TAO_Profile::create_tagged_profile was fixed. This problem
+ triggered only when MIOP in multi-threaded application was used.
+
+. Added IPv6 support in MIOP so that IPv6 multicast addresses can be used in
+ addition to those IPv4 class D addresses. DSCP support is implemented in
+ MIOP as well. However, since MIOP only allows one way communication then it
+ makes sense to use DSCP on the client side only.
+
USER VISIBLE CHANGES BETWEEN TAO-1.5.7 and TAO-1.5.8
====================================================
diff --git a/TAO/PROBLEM-REPORT-FORM b/TAO/PROBLEM-REPORT-FORM
index 2478faa50f2..454f17d2ce7 100644
--- a/TAO/PROBLEM-REPORT-FORM
+++ b/TAO/PROBLEM-REPORT-FORM
@@ -91,4 +91,3 @@ transcript if at all possible. ]
SAMPLE FIX/WORKAROUND:
[If available ]
-
diff --git a/TAO/VERSION b/TAO/VERSION
index d63bbc08176..d62636d6e82 100644
--- a/TAO/VERSION
+++ b/TAO/VERSION
@@ -1,4 +1,4 @@
-This is TAO version 1.5.9, released Thu Jun 21 13:20:20 CDT 2007
+This is TAO version 1.5.9, released Mon Jun 25 11:34:36 CDT 2007
If you have any problems with or questions about TAO, please send
e-mail to the TAO mailing list (tao-users@cs.wustl.edu), using the
@@ -9,4 +9,3 @@ see responses, please do one of the following:
contents "subscribe tao-users" to majordomo@cs.wustl.edu.
2) Or, monitor the comp.soft-sys.ace newsgroup for responses.
-