This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/com.jayway.jsonpath-json-path-2.9.0
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-event.git
discard 479565e Bump com.jayway.jsonpath:json-path from 2.6.0 to 2.9.0
add 71c6d4b Add tests for multiple applicable configs
add e0b20a3 SLING-12459 - Redirect sonarcloud notifications to
[email protected]
add ce1b71c SLING-12737 The method findJobs in JobManagerImpl does not
accept a template containing an operation (#40)
add 5efa961 SLING-9393 : adding suggested testcase for broken findJobs
(#42)
add f6b58e1 [maven-release-plugin] prepare release
org.apache.sling.event-4.3.16
add d53cc58 [maven-release-plugin] prepare for next development iteration
add f4af6cc SLING-12743 - stop job processing if readiness condition not
present (#43)
add 02e84be [SLING-12743] - Update tests and mockito versions to pass the
build (#44)
add 183b136 SLING-12819 : ignore flaky test for release
add b536e4c SLING-12819 : ignore flaky test for release - remove spurious
newline
add a0de816 [maven-release-plugin] prepare release
org.apache.sling.event-4.3.18
add 6f60de2 [maven-release-plugin] prepare for next development iteration
add c298f65 SLING-12819 : unignore flaky test after release
add 90eb10f Bump com.jayway.jsonpath:json-path from 2.6.0 to 2.9.0
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 (479565e)
\
N -- N -- N
refs/heads/dependabot/maven/com.jayway.jsonpath-json-path-2.9.0 (90eb10f)
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:
.asf.yaml | 1 +
.sling-module.json | 5 +
pom.xml | 12 +-
.../sling/event/impl/jobs/JobManagerImpl.java | 6 +-
.../impl/jobs/config/JobManagerConfiguration.java | 53 ++++
.../sling/event/impl/jobs/queues/JobQueueImpl.java | 35 ++-
.../sling/event/impl/jobs/queues/QueueManager.java | 24 +-
.../InitDelayingTopologyEventListenerTest.java | 5 +
.../config/InternalQueueConfigurationTest.java | 17 +-
.../jobs/config/JobManagerConfigurationTest.java | 6 +
.../jobs/config/QueueConfigurationManagerTest.java | 64 +++++
.../impl/jobs/console/InventoryPluginTest.java | 2 +-
.../impl/jobs/jmx/AllJobStatisticsMBeanTest.java | 2 +-
.../event/impl/jobs/jmx/QueuesMBeanImplTest.java | 2 +-
.../jobs/queues/JobExecutionContextImplTest.java | 2 +-
.../event/impl/jobs/queues/JobQueueImplTest.java | 303 +++++++++++++++++++++
.../event/impl/jobs/queues/TestTopicHalting.java | 7 +-
.../jobs/tasks/HistoryCleanUpRemovedJobsTest.java | 2 +-
.../impl/jobs/tasks/HistoryCleanUpTaskTest.java | 2 +-
.../sling/event/it/AbstractJobHandlingIT.java | 8 +
.../java/org/apache/sling/event/it/HistoryIT.java | 11 +-
.../sling/event/it/JobHandlingConditionIT.java | 235 ++++++++++++++++
.../apache/sling/event/it/JobManagerSearchIT.java | 136 +++++++++
.../sling/event/it/OrderedMaxParallelIT.java | 2 +-
24 files changed, 918 insertions(+), 24 deletions(-)
create mode 100644 .sling-module.json
create mode 100644
src/test/java/org/apache/sling/event/impl/jobs/config/QueueConfigurationManagerTest.java
create mode 100644
src/test/java/org/apache/sling/event/impl/jobs/queues/JobQueueImplTest.java
create mode 100644
src/test/java/org/apache/sling/event/it/JobHandlingConditionIT.java
create mode 100644
src/test/java/org/apache/sling/event/it/JobManagerSearchIT.java