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

github-bot pushed a change to branch 
dependabot/maven/io.micrometer-micrometer-core-1.13.3
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


 discard 2f39ee1f88 ARTEMIS-X Bump io.micrometer:micrometer-core from 1.13.2 to 
1.13.3
     add 0ecbae6108 ARTEMIS-4939 allow config of header sizes for embedded web 
server
     add 537e0023fc ARTEMIS-4986 Compatibility issue on Quorum Voting
     add 10b6ab9bd3 ARTEMIS-4986 Providing a test that will look for the 
distribution from a System Variable
     add 4cc43323bc ARTEMIS-4986 incrementing version on 
activemq-version.properties
     add 5adde5ef43 ARTEMIS-4986 Changing plugin to compile phase to make it 
simpler on CI
     add fb7afa8ff3 ARTEMIS-4986 Allow configuring the target destination as 
well
     add 7cf6b86bc5 ARTEMIS-4785 ARTEMIS-4702 Add profile and log4j2 files for 
non-run CLI commands
     add 8b3874d613 ARTEMIS-4809 Allow configuring initial queue buffer size
     add 618738d48a This closes #4966
     add b0e0287b2c ARTEMIS-4987 Bump org.easymock:easymock from 5.3.0 to 5.4.0
     add 23159fbf24 This closes #5123
     add b57cfe9432 ARTEMIS-4987 Bump org.hamcrest:hamcrest from 2.2 to 3.0
     add c415ff8d7c This closes #5124
     add dde215d095 ARTEMIS-X Bump io.micrometer:micrometer-core from 1.13.2 to 
1.13.3

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   (2f39ee1f88)
            \
             N -- N -- N   
refs/heads/dependabot/maven/io.micrometer-micrometer-core-1.13.3 (dde215d095)

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/cli/commands/Create.java      |  17 +-
 .../artemis/cli/commands/InstallAbstract.java      |  17 +
 .../activemq/artemis/cli/commands/Upgrade.java     |  88 ++++-
 .../activemq/artemis/cli/commands/bin/artemis      |  12 +-
 .../activemq/artemis/cli/commands/bin/artemis.cmd  |  11 +-
 .../cli/commands/etc/artemis-utility.profile       |  39 +++
 .../cli/commands/etc/artemis-utility.profile.cmd   |  37 +++
 .../cli/commands/etc/log4j2-utility.properties     |   7 +-
 .../activemq/cli/test/StreamClassPathTest.java     |   2 +
 .../activemq/artemis/utils/SpawnedVMSupport.java   |  19 +-
 .../api/config/ActiveMQDefaultConfiguration.java   |   8 +
 .../api/core/management/AddressSettingsInfo.java   |   9 +
 .../artemis/core/protocol/core/Channel.java        |  10 +
 .../core/protocol/core/impl/ChannelImpl.java       |  28 +-
 .../core/protocol/core/impl/PacketImpl.java        |   2 +
 .../src/main/resources/activemq-version.properties |   2 +-
 .../apache/activemq/artemis/dto/WebServerDTO.java  |   6 +
 artemis-pom/pom.xml                                |   2 +-
 .../artemis/core/config/impl/Validators.java       |   8 +
 .../deployers/impl/FileConfigurationParser.java    |   5 +
 .../core/impl/wireformat/QuorumVoteMessage.java    |   4 +
 .../artemis/core/server/ActiveMQMessageBundle.java |   2 +
 .../artemis/core/server/ActiveMQServerLogger.java  |   4 +-
 .../apache/activemq/artemis/core/server/Queue.java |   2 +
 .../core/server/cluster/quorum/QuorumManager.java  |  77 ++++-
 .../core/server/cluster/quorum/QuorumVote.java     |  11 +-
 .../cluster/quorum/QuorumVoteServerConnect.java    |   7 +-
 .../core/server/impl/ColocatedActivation.java      |   3 +-
 .../artemis/core/server/impl/QueueImpl.java        |  14 +-
 .../core/settings/impl/AddressSettings.java        |  22 +-
 .../resources/schema/artemis-configuration.xsd     |   9 +
 .../core/config/impl/FileConfigurationTest.java    |   2 +
 .../artemis/core/config/impl/ValidatorsTest.java   |  12 +
 .../core/server/impl/RoutingContextTest.java       |   5 +
 .../server/impl/ScheduledDeliveryHandlerTest.java  |   5 +
 .../artemis/core/settings/AddressSettingsTest.java |   2 +
 .../resources/ConfigurationTest-full-config.xml    |   1 +
 ...rationTest-xinclude-config-address-settings.xml |   1 +
 ...est-xinclude-schema-config-address-settings.xml |   1 +
 .../artemis/component/WebServerComponent.java      |   8 +
 docs/migration-guide/_configuration.adoc           |   8 +-
 docs/user-manual/address-settings.adoc             |   6 +
 docs/user-manual/configuration-index.adoc          |   5 +
 docs/user-manual/logging.adoc                      |   4 +-
 docs/user-manual/perf-tools.adoc                   |   2 +-
 docs/user-manual/upgrading.adoc                    |   8 +-
 docs/user-manual/versions.adoc                     |  15 +
 docs/user-manual/web-server.adoc                   |   8 +
 pom.xml                                            |   4 +-
 .../unit/core/postoffice/impl/fakes/FakeQueue.java |   4 +
 .../activemq/artemis/utils/RealServerTestBase.java |   6 +
 .../artemis/utils/cli/helper/HelperBase.java       |  31 +-
 tests/compatibility-tests/pom.xml                  |  59 ++++
 .../distribution/RollingUpgradeTest.java           | 368 +++++++++++++++++++++
 .../isolated/web/WebServerComponentTest.java       |  71 ++++
 .../tests/integration/client/UpdateQueueTest.java  |   1 +
 .../integration/cluster/util/BackupSyncDelay.java  |  10 +-
 .../management/ActiveMQServerControlTest.java      |  15 +-
 tests/smoke-tests/pom.xml                          |   8 +
 .../servers/linuxUpgradeETC/artemis.profile        |   2 +-
 .../servers/windowsUpgrade/bin/artemis-service.xml |   2 +-
 .../servers/windowsUpgradeETC/artemis.profile.cmd  |   2 +-
 .../smoke/upgradeTest/CompareUpgradeTest.java      |  73 +++-
 63 files changed, 1139 insertions(+), 94 deletions(-)
 create mode 100644 
artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/artemis-utility.profile
 create mode 100644 
artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/artemis-utility.profile.cmd
 copy artemis-junit/artemis-junit-4/src/test/resources/log4j2.properties => 
artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/log4j2-utility.properties
 (87%)
 create mode 100644 
tests/compatibility-tests/src/test/java/org/apache/activemq/artemis/tests/compatibility/distribution/RollingUpgradeTest.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