This is an automated email from the ASF dual-hosted git repository.
rmiddleton pushed a change to branch next_stable
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git
from 798ffa95 Prevent static initialization order faults by using local
statics (#105)
add 0f2fba27 Consistently reference expat libraries when building
examples, tests and the log4cxx library
add e1b363fc Allow expat dependency to be found by either the cmake
shipped script or the expat config module
add 5fa793b8 Sonarcloud build (#106)
add 5240a3db boost-fallback: only check for boost if really needed (#107)
add 57247a12 Only do sonarcloud on master and next_stable for now
add 5b618757 Removed unused JS and CSS files
add a5d3a64b Create intermediate directories for both
fixedwindowrollingpolicy and… (#102)
add 93a59473 update to latest version of vcpkg
add f3e14997 LOGCXX-550 The thread name should now be able to be logged
(#108)
add b64492a7 Print out failing sub-tests
add 8cae5e0c convert to using new so constructor will run
add cb23499c Remove old .hw files
add 75faa5ca updated ABI symbols
add b7284609 Switch around how searching for boost works and add
documentation (#109)
add e5cf1497 update version
add c760ae2d Updating some site information in preparation for release
add 0107e251 Set date to today
add 40c8289a Update copyright year
add 858de4f6 Add link to privacy policy
add 6cc5d910 Fixed version number typo (#110)
new 24c4f252 Merge branch 'master' into next_stable
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/log4cxx.yml | 2 +-
.github/workflows/sonarcloud.yml | 80 +
CMakeLists.txt | 7 +
NOTICE | 2 +-
.asf.yaml => sonar-project.properties | 19 +-
src/cmake/boost-fallback/boost-fallback.cmake | 4 +-
src/cmake/projectVersionDetails.cmake | 2 +-
src/cmake/pthread/log4cxx-pthread.cmake | 6 +-
src/cmake/pthread/test-pthread-getname.cpp | 7 +
.../{test-pthread.cpp => test-pthread-setname.cpp} | 0
src/main/abi-symbols/abi.dump | 117758 ++++++++++++++++--
src/main/cpp/CMakeLists.txt | 1 +
src/main/cpp/fixedwindowrollingpolicy.cpp | 6 +
src/main/cpp/loggingevent.cpp | 41 +
src/main/cpp/patternlayout.cpp | 4 +
src/main/cpp/rollingpolicybase.cpp | 14 +
...rter.cpp => threadusernamepatternconverter.cpp} | 20 +-
src/main/cpp/timebasedrollingpolicy.cpp | 6 +
src/main/include/CMakeLists.txt | 17 +-
src/main/include/log4cxx/log4cxx.hw | 105 -
.../pattern/threadusernamepatternconverter.h} | 40 +-
src/main/include/log4cxx/patternlayout.h | 8 +-
.../include/log4cxx/private/log4cxx_private.h.in | 2 +
.../include/log4cxx/private/log4cxx_private.hw | 84 -
.../log4cxx/private/rollingpolicybase_priv.h | 2 +
.../include/log4cxx/rolling/rollingpolicybase.h | 3 +
src/main/include/log4cxx/spi/loggingevent.h | 7 +
src/site/doxy/customdoxygen.css | 7 +
src/site/doxy/footer.html | 4 +-
src/site/markdown/1-usage.md | 1 +
src/site/markdown/change-report-gh.md | 74 +-
src/site/markdown/development/build-cmake.md | 62 +-
src/site/markdown/development/build-vcpkg.md | 5 +-
src/site/markdown/development/building.md | 18 +-
src/site/markdown/development/dependencies.md | 8 +-
src/site/markdown/download.md.in | 10 +-
src/site/markdown/qt-support.md | 4 +-
src/site/resources/css/bootstrap.css | 5893 -
src/site/resources/css/bootstrap.min.css | 9 -
src/site/resources/css/site.css | 114 -
src/site/resources/js/bootstrap.js | 2027 -
src/site/resources/js/bootstrap.min.js | 6 -
src/site/resources/js/jquery.js | 9266 --
src/site/resources/js/jquery.min.js | 4 -
src/site/resources/js/prettify.js | 1477 -
src/site/resources/js/prettify.min.js | 41 -
src/site/resources/js/site.js | 113 -
src/test/cpp/abts.cpp | 42 +-
src/test/cpp/abts.h | 6 +-
src/test/cpp/logunit.cpp | 6 +-
src/test/cpp/logunit.h | 2 +-
src/test/cpp/pattern/patternparsertestcase.cpp | 41 +
src/test/cpp/rolling/manualrollingtest.cpp | 46 +-
src/test/cpp/rolling/sizebasedrollingtest.cpp | 4 +-
src/test/cpp/rolling/timebasedrollingtest.cpp | 43 +
55 files changed, 106652 insertions(+), 30928 deletions(-)
create mode 100644 .github/workflows/sonarcloud.yml
copy .asf.yaml => sonar-project.properties (67%)
create mode 100644 src/cmake/pthread/test-pthread-getname.cpp
rename src/cmake/pthread/{test-pthread.cpp => test-pthread-setname.cpp} (100%)
copy src/main/cpp/{messagepatternconverter.cpp =>
threadusernamepatternconverter.cpp} (71%)
delete mode 100644 src/main/include/log4cxx/log4cxx.hw
copy src/{test/cpp/pattern/num343patternconverter.h =>
main/include/log4cxx/pattern/threadusernamepatternconverter.h} (54%)
delete mode 100644 src/main/include/log4cxx/private/log4cxx_private.hw
delete mode 100644 src/site/resources/css/bootstrap.css
delete mode 100644 src/site/resources/css/bootstrap.min.css
delete mode 100644 src/site/resources/css/site.css
delete mode 100644 src/site/resources/js/bootstrap.js
delete mode 100644 src/site/resources/js/bootstrap.min.js
delete mode 100644 src/site/resources/js/jquery.js
delete mode 100644 src/site/resources/js/jquery.min.js
delete mode 100644 src/site/resources/js/prettify.js
delete mode 100644 src/site/resources/js/prettify.min.js
delete mode 100644 src/site/resources/js/site.js