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

github-bot pushed a change to branch dependabot/maven/spring-version-7.0.6
in repository https://gitbox.apache.org/repos/asf/activemq.git


 discard 6d74039c4b build(deps): bump spring-version from 6.2.17 to 7.0.6
     add 176f526c46 feat(helm): add Helm chart for ActiveMQ broker deployment 
(#1761)
     add 5be496bd39 build(deps): bump actions/upload-artifact from 4 to 7 
(#1779)
     add e4dbdb7b5b build(deps): bump osgi-version from 6.0.0 to 7.0.0 (#1780)
     add 5691e62320 build(deps): bump org.glassfish.jaxb:jaxb-bom from 4.0.6 to 
4.0.7 (#1783)
     add b91e735cfa build(deps): bump actions/checkout from 4 to 6 (#1777)
     add 1bac6156f7 build(deps-dev): bump io.fabric8:docker-maven-plugin (#1776)
     add ed31052b75 fix(test): set queue prefetch in UsageBlockedDispatchTest 
to prevent flaky failure (#1765)
     add c9d3963f20 Improve FactoryFinder Validation (#1793)
     add 014aab2dc4 AMQP: added transport factory unit tests for mutex 
stripping and monitor wiring. (#1725)
     add 6f97eaebae chore: remove unused dependencies and version properties 
(#1812)
     add 2cae295af7 build(deps): bump org.codehaus.jettison:jettison from 1.5.4 
to 1.5.5 (#1811)
     add 83d5bf62aa build(deps): bump 
org.apache.felix:org.apache.felix.framework (#1790)
     add b9a2b8ffbf build(deps): bump actions/setup-java from 4 to 5 (#1778)
     add fd2052b086 build(deps): bump spring-version from 6.2.17 to 7.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   (6d74039c4b)
            \
             N -- N -- N   refs/heads/dependabot/maven/spring-version-7.0.6 
(fd2052b086)

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/workflows/ci-nightly.yml                   |  10 +-
 .github/workflows/ci-quick.yml                     |  10 +-
 .github/workflows/ci-weekly.yml                    |  10 +-
 .github/workflows/deploy.yml                       |   4 +-
 .../AmqpTransportFactoryConfigurationTest.java     | 175 ++++++++++++
 .../org/apache/activemq/broker/BrokerFactory.java  |   6 +-
 .../broker/region/group/GroupFactoryFinder.java    |   6 +-
 .../transport/auto/AutoTcpTransportServer.java     |  12 +-
 .../org/apache/activemq/util/osgi/Activator.java   |  23 +-
 .../activemq/transport/TransportFactory.java       |  12 +-
 .../transport/discovery/DiscoveryAgentFactory.java |   6 +-
 .../org/apache/activemq/util/FactoryFinder.java    | 181 +++++++++---
 .../apache/activemq/util/FactoryFinderTest.java    | 202 ++++++++++++++
 .../store/jdbc/JDBCPersistenceAdapter.java         |  10 +-
 activemq-karaf/pom.xml                             |   2 +-
 .../transport/mqtt/MQTTProtocolConverter.java      |   8 +-
 activemq-spring/pom.xml                            |   2 +-
 .../transport/stomp/ProtocolConverter.java         |  75 +++--
 .../transport/stomp/ProtocolConverterTest.java     | 192 +++++++++++++
 .../apache/activemq/transport/stomp/StompTest.java | 117 ++++++++
 .../activemq/transport/frametranslator/stomp-test  |   5 +-
 .../transport/frametranslator/stomp-test-invalid   |   5 +-
 .../usecases/UsageBlockedDispatchTest.java         |   1 +
 .../apache/activemq/web/QueueBrowseServlet.java    |  31 ++-
 .../activemq/web/QueueBrowseServletTest.java       | 230 +++++++++++++++
 .../org/apache/activemq/web/view/invalid-view      |   4 +-
 .../org/apache/activemq/web/view/valid-view        |   4 +-
 helm/activemq/.helmignore                          |  21 ++
 .../python/content.py => helm/activemq/Chart.yaml  |  26 +-
 helm/activemq/README.md                            | 309 +++++++++++++++++++++
 helm/activemq/examples/activemq-custom.yaml        |  95 +++++++
 helm/activemq/examples/production.yaml             |  74 +++++
 helm/activemq/templates/NOTES.txt                  |  89 ++++++
 helm/activemq/templates/_helpers.tpl               | 122 ++++++++
 helm/activemq/templates/configmap.yaml             |  38 +++
 helm/activemq/templates/ingress.yaml               |  60 ++++
 helm/activemq/templates/poddisruptionbudget.yaml   |  37 +++
 helm/activemq/templates/secret.yaml                |  57 ++++
 helm/activemq/templates/service-web.yaml           |  38 +++
 helm/activemq/templates/service.yaml               |  64 +++++
 helm/activemq/templates/serviceaccount.yaml        |  32 +++
 helm/activemq/templates/servicemonitor.yaml        |  38 +++
 helm/activemq/templates/statefulset.yaml           | 221 +++++++++++++++
 helm/activemq/templates/tests/test-connection.yaml |  34 +++
 helm/activemq/values.yaml                          | 274 ++++++++++++++++++
 pom.xml                                            |  18 +-
 46 files changed, 2847 insertions(+), 143 deletions(-)
 create mode 100644 
activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/AmqpTransportFactoryConfigurationTest.java
 create mode 100644 
activemq-client/src/test/java/org/apache/activemq/util/FactoryFinderTest.java
 create mode 100644 
activemq-stomp/src/test/java/org/apache/activemq/transport/stomp/ProtocolConverterTest.java
 copy activemq-unit-tests/src/test/resources/jmx.access => 
activemq-stomp/src/test/resources/META-INF/services/org/apache/activemq/transport/frametranslator/stomp-test
 (89%)
 copy activemq-unit-tests/src/test/resources/jmx.access => 
activemq-stomp/src/test/resources/META-INF/services/org/apache/activemq/transport/frametranslator/stomp-test-invalid
 (88%)
 create mode 100644 
activemq-web/src/test/java/org/apache/activemq/web/QueueBrowseServletTest.java
 copy 
activemq-amqp/src/main/resources/META-INF/services/org/apache/activemq/transport/amqp+nio
 => 
activemq-web/src/test/resources/META-INF/services/org/apache/activemq/web/view/invalid-view
 (86%)
 copy 
activemq-amqp/src/main/resources/META-INF/services/org/apache/activemq/transport/amqp+nio
 => 
activemq-web/src/test/resources/META-INF/services/org/apache/activemq/web/view/valid-view
 (86%)
 create mode 100644 helm/activemq/.helmignore
 copy assembly/src/release/examples/amqp/python/content.py => 
helm/activemq/Chart.yaml (60%)
 create mode 100644 helm/activemq/README.md
 create mode 100644 helm/activemq/examples/activemq-custom.yaml
 create mode 100644 helm/activemq/examples/production.yaml
 create mode 100644 helm/activemq/templates/NOTES.txt
 create mode 100644 helm/activemq/templates/_helpers.tpl
 create mode 100644 helm/activemq/templates/configmap.yaml
 create mode 100644 helm/activemq/templates/ingress.yaml
 create mode 100644 helm/activemq/templates/poddisruptionbudget.yaml
 create mode 100644 helm/activemq/templates/secret.yaml
 create mode 100644 helm/activemq/templates/service-web.yaml
 create mode 100644 helm/activemq/templates/service.yaml
 create mode 100644 helm/activemq/templates/serviceaccount.yaml
 create mode 100644 helm/activemq/templates/servicemonitor.yaml
 create mode 100644 helm/activemq/templates/statefulset.yaml
 create mode 100644 helm/activemq/templates/tests/test-connection.yaml
 create mode 100644 helm/activemq/values.yaml


---------------------------------------------------------------------
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