This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/com.google.guava-guava-33.3.1-jre
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
discard 151ec1921d ARTEMIS-X Bump com.google.guava:guava from 33.3.0-jre to
33.3.1-jre
add e7ed4700e1 ARTEMIS-5054 Fix concurrent access issue of large message
to Stomp Frame
add 1d1f03ad5e ARTEMIS-4971 Warning on Unacked messages through mirror
AckManager
add b084eac71d ARTEMIS-5065 Remove Mirrored Properties on send for
OpenWire and Core
add 30c5e63e0b ARTEMIS-5066 Disable Divert on Mirror Target
add 9199b1f2dc ARTEMIS-5067 Preventing Race when one side is not connected
in the mirror
add 0c4c0542be ARTEMIS-5068 Temporary queue should not be mirrored
add 8fc6f09195 ARTEMIS-5063 messageMoved addition in
ActiveMQServerMessagePlugin
add 5bad88e701 ARTEMIS-4996: update to junit 5.11.1
add 5808985a6a ARTEMIS-5067 Fix
ClusteredMirrorSoakTest::testAutoCreateQueue
add 1f90b5be0d ARTEMIS-5062 ClusterConnectionControl has wrong annotation
add 65db6c60c9 ARTEMIS-5074 Fix encoding of bytes properties as Binary in
AMQPMessage
add ded0b5b209 ARTEMIS-X Bump com.google.guava:guava from 33.3.0-jre to
33.3.1-jre
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 (151ec1921d)
\
N -- N -- N
refs/heads/dependabot/maven/com.google.guava-guava-33.3.1-jre (ded0b5b209)
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:
.../artemis/utils/collections/TypedProperties.java | 42 ++-
.../artemis/utils/TypedPropertiesTest.java | 14 +
.../api/config/ActiveMQDefaultConfiguration.java | 5 +
.../apache/activemq/artemis/api/core/Message.java | 9 +
.../core/management/ClusterConnectionControl.java | 4 +-
.../artemis/core/message/impl/CoreMessage.java | 12 +-
.../jms/client/ActiveMQMessageConsumer.java | 4 +
.../artemis/protocol/amqp/broker/AMQPMessage.java | 50 ++-
.../connect/mirror/AMQPMirrorControllerSource.java | 22 +-
.../connect/mirror/AMQPMirrorControllerTarget.java | 2 +-
.../protocol/amqp/connect/mirror/AckManager.java | 28 +-
.../amqp/logger/ActiveMQAMQPProtocolLogger.java | 6 +
.../protocol/amqp/broker/AMQPMessageTest.java | 135 +++++++
.../core/protocol/stomp/StompConnection.java | 2 +-
.../protocol/stomp/VersionedStompFrameHandler.java | 76 +++-
.../protocol/stomp/v12/StompFrameHandlerV12.java | 3 +-
.../artemis/core/config/Configuration.java | 9 +
.../core/config/impl/ConfigurationImpl.java | 13 +
.../deployers/impl/FileConfigurationParser.java | 3 +
.../artemis/core/postoffice/impl/BindingsImpl.java | 8 +-
.../core/postoffice/impl/PostOfficeImpl.java | 3 +
.../artemis/core/server/RoutingContext.java | 4 +
.../artemis/core/server/impl/DivertImpl.java | 11 +-
.../artemis/core/server/impl/QueueImpl.java | 4 +
.../core/server/impl/RoutingContextImpl.java | 12 +
.../server/plugin/ActiveMQServerMessagePlugin.java | 24 ++
.../resources/schema/artemis-configuration.xsd | 8 +
.../core/config/impl/FileConfigurationTest.java | 1 +
.../resources/ConfigurationTest-full-config.xml | 1 +
.../ConfigurationTest-xinclude-config.xml | 1 +
.../ConfigurationTest-xinclude-schema-config.xml | 1 +
pom.xml | 2 +-
.../amqp/AmqpReceiverDispositionTest.java | 78 +++-
.../amqp/AmqpSendReceiveInterceptorTest.java | 152 +++++++-
.../tests/integration/amqp/AmqpTestSupport.java | 2 +-
.../connect/AMQPMirrorOneSideDisconnectedTest.java | 181 ++++++++++
.../amqp/connect/AMQPMirrorTemporaryQueueTest.java | 128 +++++++
.../integration/amqp/connect/AckManagerTest.java | 51 +++
.../integration/amqp/connect/BrokerInSyncTest.java | 66 +++-
.../tests/integration/plugin/CorePluginTest.java | 31 ++
.../integration/plugin/MethodCalledVerifier.java | 18 +
.../artemis/tests/integration/stomp/StompTest.java | 50 +++
.../mirror/DivertSoakMirrorTest.java | 392 +++++++++++++++++++++
.../mirror/ReplicatedBothNodesMirrorTest.java | 19 +-
.../test/resources/DivertSoakMirrorTest-divert.txt | 25 ++
45 files changed, 1652 insertions(+), 60 deletions(-)
create mode 100644
tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/connect/AMQPMirrorOneSideDisconnectedTest.java
create mode 100644
tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/connect/AMQPMirrorTemporaryQueueTest.java
create mode 100644
tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/brokerConnection/mirror/DivertSoakMirrorTest.java
create mode 100644
tests/soak-tests/src/test/resources/DivertSoakMirrorTest-divert.txt
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact