summaryrefslogtreecommitdiff
path: root/ACE/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/NEWS')
-rw-r--r--ACE/NEWS33
1 files changed, 33 insertions, 0 deletions
diff --git a/ACE/NEWS b/ACE/NEWS
index 3a9893a6841..caa0c3fd18b 100644
--- a/ACE/NEWS
+++ b/ACE/NEWS
@@ -1,3 +1,36 @@
+USER VISIBLE CHANGES BETWEEN ACE-6.5.12 and ACE-7.0.0
+=====================================================
+
+. C++11 is now a mandatory compiler feature which is
+ required for ACE
+
+. When valgrind is enabled we don't disable dlclose anymore,
+ this reduces the amount of leaks reported related to dlclose.
+ When you unload your shared libraries before the end of your program
+ you can use `--keep-debuginfo=yes` as valgrind options as alternative
+ or you can disable dlclose yourself by adding
+ `#define ACE_LACKS_DLCLOSE` to your ace/config.h file
+
+. Removed `ACE_OS::readdir_r`. `readdir_r` was marked as depracated in glibc
+ and FreeBSD libc. Also removed `ACE_Dirent::read (ACE_DIRENT *, ACE_DIRENT **)`
+ which used it. `ACE_LACKS_READDIR_R` will now always be defined.
+
+USER VISIBLE CHANGES BETWEEN ACE-6.5.11 and ACE-6.5.12
+======================================================
+
+. Fixed some C++11 warnings
+
+. Fixed compile problem on AIX
+
+. Removed c++0x and c++1y as GNU make variables, use c++11 and c++14 as
+ alternatives
+
+. Moved all CI builds to github actions
+
+. Added ACE_GCC_NO_RETURN to fix fall through warnings
+
+. Fix ACE_Thread_Manager::join memory leak and potential deadlock
+
USER VISIBLE CHANGES BETWEEN ACE-6.5.10 and ACE-6.5.11
======================================================