You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

421 lines
11 KiB

  1. log4cplus 1.1.3-RC1
  2. - Added --enable-symbols-visibility-options to configure script to allow
  3. turning off use of compiler and platform specific symbols visibility
  4. options.
  5. - Added ENABLE_SYMBOLS_VISIBILITY setting for CMake build system to the same
  6. effect as above.
  7. - Disabled LOG4CPLUS_INLINES_ARE_EXPORTED to fix linking issues on MinGW GCC
  8. 4.8.x.
  9. - Added LOG4CPLUS_BUILD_LOGGINGSERVER setting for CMake build system to allow
  10. disabling loggingserver. (Maxym)
  11. - Allow users overriding LOG4CPLUS_MACRO_FUNCTION.
  12. - Improved Android platform detection in CMake build system. (Maxym)
  13. - Allow overriding ConfigureChecks.cmake with user supplied file to help with
  14. issues on iOS platform.
  15. - Updated android.toolchain.cmake from OpenCV project.
  16. - Added iOS support to CMake build system. (Maxym)
  17. - Fixed compilation issue of single-threaded builds on Windows.
  18. - Improved CMake build system's default installation directories for GNU
  19. platforms by using GNUInstallDirs module.
  20. log4cplus 1.1.2
  21. - Added AbstractSocket::shutdown().
  22. - Added missing documentation of MDC pattern layout converter.
  23. - Fixed bug #278 - TLS key leak.
  24. - Implemented %E{ENVVAR} pattern layout formatter for expansion of environment
  25. variables. (Ray Logel)
  26. log4cplus 1.1.2-RC3
  27. - Fixed build issues on HP-UX with aCC.
  28. - Fixed build issues on Haiku.
  29. - Added mingw-log4cplus.spec to allow cross-compilation from
  30. Fedora. (John Smits)
  31. - Fixed build issues on AIX with XLC.
  32. - Fixed build issues related to Microsoft's foo_s() functions with
  33. some version of MinGW tool-chain.
  34. - Tiny speedup of getFormattedTime().
  35. - Imported newer android/android.toolchain.cmake from OpenCV
  36. repository.
  37. log4cplus 1.1.2-RC2
  38. - Fixed crash of DLL builds on Windows when _WIN32_WINNT>=0x0600.
  39. - Roll log file both before and after append to avoid logging into
  40. stale file when the log file has already been rolled by another
  41. logging process.
  42. - Known issue: Logging into a single log file from multiple processes
  43. on Windows breaks the rolling of the log files because open files
  44. cannot be renamed.
  45. - Fixed bug #166 - Close appender only once even when it is used by
  46. multiple loggers.
  47. log4cplus 1.1.2-RC1
  48. - Fixed bug #163 - Initialization issue.
  49. - Added --enable-so-version and --enable-release-version configure
  50. script options to allow production of undecorated binaries.
  51. log4cplus 1.1.1
  52. - FileAppender - Accept also std::ios_base::ate as "append to a log
  53. file" specification.
  54. log4cplus 1.1.1-RC4
  55. - Fixed bug #156 - Messages are truncated when produced using the
  56. LOG4CPLUS_*_FMT() macros.
  57. - Fixed bug #157 - Fedora package build failure.
  58. - Improved log4cplus initialization:
  59. - Use APC to initialize log4cplus outside loader lock.
  60. - Use Microsoft C runtime library TLS callbacks to initialize
  61. log4cplus as static library.
  62. - Warn during compilation that automatic initialization is not
  63. possible when log4cplus is being compiled with static Microsoft C
  64. runtime library.
  65. - Provide log4cplus::initialize() function to allow users to
  66. initialize log4cplus in situations where automatic initialization
  67. is not possible.
  68. - Several improvements to CMake build:
  69. - Fixed OpenBSD + CMake builds.
  70. - Fixed issues with Visual Studio 2005 CMake builds.
  71. - Added support for CMake builds on Android with NDK. (Sergey
  72. Nikulov)
  73. - The defines.hxx.cmake file is now generated out of defines.hxx.in.
  74. - Library version is parsed out of version.h. (Sergey Nikulov)
  75. - MDC formatter for PatternLayout ("%X") now expands into list of key
  76. value pairs if no specific key is given. (Yaqian Shen)
  77. - Avoid clock_nanosleep() on Android.
  78. - ServerSocket::accept() can now be interrupted from another thread
  79. using new function ServerSocket::interruptAccept().
  80. log4cplus 1.1.1-RC3
  81. - Fixed another MinGW related build failure.
  82. - Fixed mismatched #if/#endif in Windows builds.
  83. log4cplus 1.1.1-RC2
  84. - Allow to disable TLS usage in macros through
  85. LOG4CPLUS_MACRO_DISABLE_TLS preprocessor symbol.
  86. - Fixed compilation with Clang on Cygwin.
  87. - Fixed SIGSEGV when built with some MinGW distributions.
  88. - Fixed build failure when using -march=i386.
  89. - Implemented thread callback to initialize log4cplus for Visual
  90. Studio builds of static library.
  91. - Fixed bug #154 - getHostname() failure because of uninitialized
  92. WinSock.
  93. - Fixed detection of C++11 thread_local keyword.
  94. - Fixed builds using DevKit-tdm-32-4.5.2-20111229-1559.
  95. log4cplus 1.1.1-RC1
  96. - Improved documentation for various classes.
  97. - Cherry-picked various small improvements from trunk.
  98. - Fixed Unicode builds on *NIX.
  99. - Fixed static library builds from Visual Studio project.
  100. - Suppressed warning C4127 from MSVC. (Chris Steenwyk)
  101. - Improved MinGW32 and MinGW64 toolchains compatiblity.
  102. - Fixed encoding handling in Properties class.
  103. - Added include directive for properties files. (Jukka Lantto)
  104. - Added colored output for Win32ConsoleAppender. (Konstantin Baumann)
  105. - (Re)Introduced support for C++Builder (XE3)
  106. - Reimplemented acceptSocket() using select() on Windows to allow
  107. interrupting the accept() call from different thread.
  108. log4cplus 1.1.0
  109. - Fixed MacOS X support - Reimplemented semaphores using named ones
  110. for Apple builds.
  111. - Fixed resource leak on failure in openSocket().
  112. - Improved configuration file modification check to include file size,
  113. in addition to file modification time.
  114. log4cplus 1.1.0-RC10
  115. - Fixed non-STLPort4 builds with Solaris Studio. Switch
  116. '-library=stlport4' is only added if CXXFLAGS does not already
  117. contain a switch matching -library=(stlport4|stdcxx4|Cstd).
  118. - Fixed --disable-shared MinGW builds.
  119. - Fixed non-working MinGW DLL binaries. DllMain() was not being called
  120. because of missing extern "C" in its definition.
  121. - CMake build configuration checks have been improved. (Chernyshev
  122. Vyacheslav)
  123. - GCC switch -O2 is only added if CXXFLAGS does not already contain
  124. any other -O.
  125. - Improved logging speed using SysLogAppender and Log4jUdpAppender by
  126. optimizations in both the loggers and in common sockets code.
  127. - FileAppender locale can now be specified in properties files using
  128. Locale property. See FileAppender Doxygen documentation for more
  129. details.
  130. log4cplus 1.1.0-RC9
  131. - Improved Log4jUdpAppender compatibility with Chainsaw.
  132. - Fixed crash, bugs #3467112 and #3563699, related to thread-local
  133. storage destruction.
  134. - Fixed build with Visual Studio 2005, bug #3565529. (xg00)
  135. - Created Cygwin port's .cygport definition for log4cplus.
  136. - Improved hiding of private symbols using GCC's
  137. __attribute__((visibility("hidden"))) and Solaris Studio's __hidden.
  138. - Fixed build in environments where DEBUG (and other log level names)
  139. are macros. (Chernyshev Vyacheslav)
  140. - Improved configuration of threads support. (Jens Rehsack)
  141. log4cplus 1.1.0-RC8
  142. - Turned on __thread (TLS) detection on NetBSD 5.1.0 and later that
  143. has been previously disabled.
  144. - Improved compatibility with log4cplus 1.0.x: allow using log4cplus
  145. 1.0.x log level to string callbacks in 1.1.x.
  146. - Improved various M4 macros.
  147. - Added detection and use C++11 thread_local.
  148. - Fixed XML entities escaping in Log4jUdpAppender.
  149. - Re-added synchronization between ConsoleAppender and LogLog.
  150. - Changed C logger API to return int instead of bool.
  151. - Added C logger API to Visual Studio 2010 projects.
  152. - Implemented remote syslog logging using UDP in SysLogAppender.
  153. - Enabled SysLogAppender on Windows with only remote syslog logging
  154. enabled.
  155. log4cplus 1.1.0-RC7
  156. IMPORTANT: Builds with --with-iconv configure switch now assume UTF-8
  157. for plain char strings.
  158. - Bumped up SO version for UDP sockets support related changes.
  159. - Removed Windows CE support.
  160. - Regenerated with Automake 1.12.2.
  161. - Fixed Fedora RPM builds spec file.
  162. - Implemented log4cplus.disableOverride similar to log4j's
  163. log4j.disableOverride.
  164. - Improved support of profiling and debugging builds with Sun CC.
  165. - Added documentation for configure script options.
  166. - Added detection and use of clock_nanosleep().
  167. - Disabled __thread (TLS) detection for NetBSD. It is broken there.
  168. - New appender: Log4jUdpAppender. It allows logging using UDP with
  169. log4j XML payload to Chainsaw or Log2Console. (Siva Chandran P)
  170. - Added support for __func__ as function name source for logging
  171. events.
  172. log4cplus 1.1.0-RC6
  173. - Fixed compilation for build with wchar_t being alias to unsigned
  174. short (/Zc:wchar_t-) (Windows).
  175. - Added new appender CLFSAppender (experimental), based on Microsoft
  176. Common Log File System API.
  177. - Added new appender Qt4DebugAppender (experimenta), based on Qt4's
  178. qDebug(), qWarning() and qCritical() functions.
  179. - Fixed bug #3530769 - compilation issues with Visual Studio 2011.
  180. - Added log4cplus.quietMode property handling to PropertyConfigurator.
  181. - Added #pragma once to all headers.
  182. - Implemented Time::gettimeofday() using Win32 API's
  183. GetSystemTimeAsFileTime().
  184. - Moved file based locking from FileAppender to Appender to make it
  185. available for all appenders.
  186. - Changed Windows configuration to use __declspec(thread) when
  187. compiling for Windows Vista or later and TlsAlloc() otherwise.
  188. - Implemented %r PatternLayout format specifier - miliseconds since
  189. process start.
  190. - Fixed bug #3101459 - TTCCLayout time is not in milliseconds since
  191. process start by default.
  192. log4cplus 1.1.0-RC5
  193. - Fixed single threaded log4cplus build issues.
  194. - Added ability to log to std::cerr (Andreas Bießmann).
  195. - Fixed disabling of LOG4CPLUS_*_FMT() macros.
  196. log4cplus 1.1.0-RC4
  197. IMPORTANT: Compilation with Solaris Studio now depends on STLPort
  198. (-library=stlport4 switch). The default Cstd library is not
  199. conforming enough for use in log4cplus.
  200. - Improved behaviour of log4cplus as a component of larger CMake based
  201. project (Andreas Bießmann).
  202. - Updated various Autoconf detection scripts in m4/ directory to newer
  203. versions.
  204. - Fixed some signedness and overflow warnings.
  205. - Improved Autotools build system's behaviour for cross compilation.
  206. - Added detection of C++11 <atomic> header and related
  207. functions. Implemented SharedObject reference counting using C++11
  208. atomics where possible.
  209. - Fixed compilation with GCC 4.6 in C++11 mode.
  210. - Fixed some single-threaded compilation and run time issues.
  211. - Fixed bug #3520891 - FileAppender buffering issue.
  212. - Updated to Autoconf 2.69, Automake 1.12 and Libtool 2.4.2.
  213. - Documented build procedure for Solaris Studio.
  214. - Improved support for Solaris Studio in configure.in.
  215. log4cplus 1.1.0-RC3
  216. - Fixed log4cplusS.vcxproj - Added missing source files to the
  217. project.
  218. log4cplus 1.1.0-RC2
  219. - CMake build system fixes.
  220. - Fixed TTCCLayout double time stamp issue.
  221. log4cplus 1.1.0-RC1
  222. Important changes relative to PRODUCTION_1_0_x branch:
  223. - Added AsyncAppender.
  224. - Added simple C interface for interoperability with C.
  225. - Added inter-process file locking to file appenders to allow logging
  226. into a single log file from multiple processes.
  227. - Added Mapped Diagnostic Context (MDC) and associated converter (%X).
  228. - Added alternative thread identification (%T) converter to pattern layout.
  229. - Added function name converter (%M).
  230. - Added wchar_t <-> char conversion implementations based on standard
  231. C locale functions and based on iconv().
  232. - Added DeviceAppender to allow use of Boost.IOStream's Sink as appender.
  233. - Added LOG4CPLUS_*_FMT() macros to allow printf-like formatted output
  234. where it is possible.
  235. - Logging macros now accept both logger name as string and Logger
  236. instance as their first parameter.