You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gi...@apache.org on 2022/10/22 21:48:47 UTC

[logging-log4j2] branch dependabot/github_actions/ossf/scorecard-action-2.0.6 updated (cc0e532529 -> 3f9523517e)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/github_actions/ossf/scorecard-action-2.0.6
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard cc0e532529 Bump ossf/scorecard-action from 1.1.2 to 2.0.6
     add 97b4a19064 Refactor `MarkerManager` and other resource locks
     add da0b463fd5 Adds a thread-bound `ExtensionContext`
     add 4997a45ebc Marks tests that reinitialize the ThreadContextFactory
     add f6829882ee Fixes `ThreadContext` test interference
     add 14d06e27e4 Fix `log4j-api-test` JPMS encapsulation (from master)
     add 6da6c3ea45 Bump jna from 5.11.0 to 5.12.1
     add e1bbaed6c2 Bump embedded-ldap-junit from 0.8.1 to 0.9.0
     add 1ea7ad1a46 Bump activemq-broker from 5.17.1 to 5.17.2
     add 4e2ccc872e Bump junit-bom from 5.9.0 to 5.9.1
     add e3418d5d48 Bump surefire-junit47 from 3.0.0-M6 to 3.0.0-M7
     add 77c1de7e55 Bump json-unit from 2.35.0 to 2.36.0
     add bafcd4192e Bump spring-boot.version from 2.6.7 to 2.7.5
     add 8ee7010b76 Bump spring-framework-bom from 5.3.20 to 5.3.23
     add 4ffbc32608 Bump groovy-bom from 3.0.10 to 3.0.13
     add fc55a210ea Bump spotbugs-maven-plugin from 4.7.0.0 to 4.7.2.1
     add 12629b09a4 Bump netty-bom from 4.1.80.Final to 4.1.84.Final
     add 1aa80a15b9 Bump jackson-bom from 2.13.4 to 2.13.4.20221013
     add 10e6419dae Bump de.flapdoodle.embed.mongo from 3.5.0 to 3.5.1
     add 6c283a27d9 Bump icu4j from 71.1 to 72.1
     add 42ff34effc Bump cassandra-driver-core from 3.11.2 to 3.11.3
     add 30a923ea2e Bump actions/setup-python from 4.2.0 to 4.3.0
     add 78efeada4b Bump actions/setup-java from 3.4.1 to 3.6.0
     add a1a53b1444 Bump github/codeql-action from 2.1.22 to 2.1.28
     add 2b80f96e2d Bump actions/checkout from 3.0.2 to 3.1.0
     add 0160f9f6b1 Bump ossf/scorecard-action from 1.1.2 to 2.0.6
     add f0b026439e Bump maven-core from 3.8.5 to 3.8.6
     add cd4df408b5 Bump mockito.version from 4.4.0 to 4.8.1
     add cbe604ba60 Add check for transitive deps mismatch
     add 43a7e9a688 Change dependabot schedule to monthly
     add 9d5b28e1d3 Revert scorecards-analysis bump
     add 3f9523517e Bump ossf/scorecard-action from 1.1.2 to 2.0.6

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (cc0e532529)
            \
             N -- N -- N   refs/heads/dependabot/github_actions/ossf/scorecard-action-2.0.6 (3f9523517e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/dependabot.yml                             |  8 +-
 .github/workflows/benchmark.yml                    | 14 ++--
 .github/workflows/build.yml                        | 12 +--
 .github/workflows/codeql-analysis.yml              | 10 +--
 .github/workflows/log4j-kafka-test.yml             |  4 +-
 log4j-api-test/pom.xml                             |  9 +--
 .../logging/log4j/ThreadContextUtilityClass.java   | 26 -------
 .../log4j/test}/ThreadContextUtilityClass.java     | 18 ++++-
 .../log4j/test/junit/ExtensionContextAnchor.java   | 90 ++++++++++++++++++++++
 ...gerLevel.java => InitializesThreadContext.java} | 22 +++---
 .../test/junit/{Mutable.java => Resources.java}    | 18 ++---
 .../log4j/test/junit/ThreadContextInitializer.java | 57 ++++++++++++++
 .../test/junit/ThreadContextMapExtension.java      | 47 +++++++++++
 .../log4j/test/junit/UsingThreadContextMap.java    | 17 ++--
 .../org.junit.jupiter.api.extension.Extension}     |  3 +-
 .../apache/logging/log4j/AbstractLoggerTest.java   | 22 +++---
 .../logging/log4j/CloseableThreadContextTest.java  | 12 +--
 .../org/apache/logging/log4j/EventLoggerTest.java  |  6 +-
 .../org/apache/logging/log4j/LambdaLoggerTest.java | 11 ++-
 .../java/org/apache/logging/log4j/LevelTest.java   |  4 +-
 .../org/apache/logging/log4j/LogManagerTest.java   |  6 +-
 .../apache/logging/log4j/LoggerSupplierTest.java   |  8 +-
 .../java/org/apache/logging/log4j/LoggerTest.java  | 34 +++++---
 .../java/org/apache/logging/log4j/MarkerTest.java  |  9 ++-
 .../logging/log4j/NoopThreadContextTest.java       | 30 ++------
 .../log4j/ThreadContextInheritanceTest.java        | 19 +++--
 .../apache/logging/log4j/ThreadContextTest.java    |  9 ++-
 .../org/apache/logging/log4j/TraceLoggingTest.java |  4 +-
 .../logging/log4j/simple/SimpleLoggerTest.java     |  2 -
 .../log4j/spi/DefaultThreadContextMapTest.java     | 26 ++++---
 .../log4j/spi/DefaultThreadContextStackTest.java   | 18 ++---
 .../org/apache/logging/log4j/ThreadContext.java    |  2 +-
 .../core/impl/ThreadContextDataInjectorTest.java   |  2 +-
 pom.xml                                            | 53 +++++++++----
 34 files changed, 420 insertions(+), 212 deletions(-)
 delete mode 100644 log4j-api-test/src/main/java/org/apache/logging/log4j/ThreadContextUtilityClass.java
 rename log4j-api-test/src/{test/java/org/apache/logging/log4j => main/java/org/apache/logging/log4j/test}/ThreadContextUtilityClass.java (89%)
 create mode 100644 log4j-api-test/src/main/java/org/apache/logging/log4j/test/junit/ExtensionContextAnchor.java
 copy log4j-api-test/src/main/java/org/apache/logging/log4j/test/junit/{StatusLoggerLevel.java => InitializesThreadContext.java} (75%)
 copy log4j-api-test/src/main/java/org/apache/logging/log4j/test/junit/{Mutable.java => Resources.java} (75%)
 create mode 100644 log4j-api-test/src/main/java/org/apache/logging/log4j/test/junit/ThreadContextInitializer.java
 create mode 100644 log4j-api-test/src/main/java/org/apache/logging/log4j/test/junit/ThreadContextMapExtension.java
 copy log4j-api-test/src/{test/resources/META-INF/services/org.apache.logging.log4j.util.test.BetterService => main/resources/META-INF/services/org.junit.jupiter.api.extension.Extension} (93%)