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

github-bot pushed a change to branch 
dependabot/maven/com.google.errorprone-error_prone_core-2.44.0
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


 discard e273786736 ARTEMIS-X Bump com.google.errorprone:error_prone_core
     add 5ce7e897b3 ARTEMIS-5684 all AddressSettings fields should default to 
null
     add 28bd3c2e70 ARTEMIS-5746 support a filter query parameter on the dir 
path for broker properties to allow a custom file name filter to be used
     add a603402583 ARTEMIS-5755 Bump commons-io:commons-io from 2.20.0 to 
2.21.0
     add d84c53ca78 ARTEMIS-5753 Fixing Races between Page Oscilation and 
Replication
     add e11811a036 ARTEMIS-5753 Adjusting retries on waitReplicaSync
     add c9a609b7be ARTEMIS-5744 don't modify AddressInfo during auto-create 
checks
     add 8e9337b741 ARTEMIS-5738 Improve LDAPLoginModule ssl support
     add d29ef5d5bf ARTEMIS-5686 fix retroactive address name parsing
     add 14121b89b3 ARTEMIS-5729 Bump com.puppycrawl.tools:checkstyle from 
12.1.1 to 12.1.2
     add 787165b913 ARTEMIS-5759 Bump artemis-console-version from 1.3.0 to 
1.4.0
     add d591048e87 ARTEMIS-5758 Bump owasp.version from 12.1.8 to 12.1.9
     add 41f422aba1 Revert "ARTEMIS-5759 Bump artemis-console-version from 
1.3.0 to 1.4.0"
     add b9b95462d3 ARTEMIS-5761 Bump jetty.version from 12.1.3 to 12.1.4
     add 1df1a009d9 ARTEMIS-5685 align docs with code w.r.t. reload
     add 4122167c35 ARTEMIS-5221 STOMP test client formats heart-beats 
incorrectly
     add 41baa130e1 ARTEMIS-5757 Bump maven-bundle-plugin from 5.1.9 to 6.0.0
     add be023a5842 ARTEMIS-X Bump com.google.errorprone:error_prone_core

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   (e273786736)
            \
             N -- N -- N   
refs/heads/dependabot/maven/com.google.errorprone-error_prone_core-2.44.0 
(be023a5842)

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:
 .../activemq/artemis/utils/uri/URISupport.java     |   4 +
 .../artemis/api/core/management/ResourceNames.java |   2 +-
 .../api/core/management/ResourceNamesTest.java     |   9 +
 artemis-server/pom.xml                             |  58 +-
 .../core/config/impl/ConfigurationImpl.java        |  30 +-
 .../paging/cursor/impl/PageSubscriptionImpl.java   |   8 +
 .../core/paging/impl/PagingManagerImpl.java        |  19 +-
 .../artemis/core/paging/impl/PagingStoreImpl.java  |   2 +-
 .../journal/AbstractJournalStorageManager.java     |  12 +-
 .../core/replication/ReplicationManager.java       |   2 +-
 .../artemis/core/server/ActiveMQServerLogger.java  |   9 +-
 .../core/server/impl/ActiveMQServerImpl.java       |   6 +-
 .../artemis/core/server/impl/QueueFactoryImpl.java |   5 +
 .../core/server/impl/ServerSessionImpl.java        |  23 +-
 .../core/settings/impl/AddressSettings.java        |   4 +-
 .../core/transaction/impl/TransactionImpl.java     | 273 +++---
 .../spi/core/security/jaas/LDAPLoginModule.java    |  21 +
 .../security/jaas/LDAPLoginSSLSocketFactory.java   | 185 ++++
 .../core/config/impl/ConfigurationImplTest.java    |  21 +
 .../core/server/impl/ServerSessionImplTest.java    |  98 +++
 .../artemis/core/settings/AddressSettingsTest.java |  14 +-
 .../core/security/jaas/LDAPLoginModuleTest.java    | 232 ++++-
 .../jaas/LDAPLoginSSLSocketFactoryTest.java        | 242 ++++++
 docs/user-manual/config-reload.adoc                |  15 -
 docs/user-manual/configuration-index.adoc          |   9 +-
 docs/user-manual/security.adoc                     | 101 +++
 pom.xml                                            |  10 +-
 .../stomp/util/AbstractStompClientConnection.java  |   9 +-
 .../activemq/artemis/utils/RealServerTestBase.java |  14 +
 .../artemis/core/server/impl/QueueAccessor.java    |  13 +-
 .../artemis/tests/db/paging/PagingTest.java        | 171 ++++
 .../tests/integration/client/HangConsumerTest.java |   2 +-
 .../consumer/OrphanedConsumerDefenseTest.java      |  15 +-
 .../integration/server/ConfigurationTest.java      |  58 ++
 tests/security-resources/build.sh                  |   1 +
 .../server-keystore-without-ca.p12                 | Bin 0 -> 3992 bytes
 .../live}/broker.xml                               |  68 +-
 .../replica}/broker.xml                            |  59 +-
 .../soak/paging/OscillateReplicaPagingTest.java    | 933 +++++++++++++++++++++
 .../replicationflow/SoakReplicatedPagingTest.java  |  19 +-
 40 files changed, 2490 insertions(+), 286 deletions(-)
 create mode 100644 
artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/LDAPLoginSSLSocketFactory.java
 create mode 100644 
artemis-server/src/test/java/org/apache/activemq/artemis/core/server/impl/ServerSessionImplTest.java
 create mode 100644 
artemis-server/src/test/java/org/apache/activemq/artemis/spi/core/security/jaas/LDAPLoginSSLSocketFactoryTest.java
 copy 
artemis-server/src/main/java/org/apache/activemq/artemis/core/postoffice/QueueBinding.java
 => 
tests/db-tests/src/test/java/org/apache/activemq/artemis/core/server/impl/QueueAccessor.java
 (73%)
 create mode 100644 tests/security-resources/server-keystore-without-ca.p12
 copy tests/soak-tests/src/main/resources/servers/{replicated-static0 => 
page-oscillation/live}/broker.xml (66%)
 copy tests/soak-tests/src/main/resources/servers/{replicated-static1 => 
page-oscillation/replica}/broker.xml (71%)
 create mode 100644 
tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/paging/OscillateReplicaPagingTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact


Reply via email to