[jira] [Created] (AMQ-9279) Can not connect ActiveMQ via IPv6 address with SSL

2023-06-08 Thread Edwin Wang (Jira)
Edwin Wang created AMQ-9279:
---

 Summary: Can not connect ActiveMQ via IPv6 address with SSL
 Key: AMQ-9279
 URL: https://issues.apache.org/jira/browse/AMQ-9279
 Project: ActiveMQ
  Issue Type: Bug
  Components: Broker
Affects Versions: 5.18.1
 Environment: JDK 11.0.2

ActiveMQ 5.18.1 (I've not try the early version. However, I think they may 
contains the same problem)
Reporter: Edwin Wang


The client will throw "Contains non-LDH ASCII characters" exception when 
connect via IPv6 with SSL. 

Without SSL(this work well):

nio://[fe80::6ccd:54aa:f58d:fd59]:61616

With SSL(this will cause the excepiton):

nio+ssl://[fe80::6ccd:54aa:f58d:fd59]:61616

 

I think the issue is caused by javax.net.ssl.SNIHostName can not accept ":" as 
part of the hostname.  I suggest the class 
org.apache.activemq.transport.tcp.SslTransport.java should check the format 
before create SNIHostName. Both IPv4 and IPv6 address should not be set for SNI 
according to RFC6066.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (ARTEMIS-4306) Add authn/z metrics

2023-06-08 Thread Justin Bertram (Jira)
Justin Bertram created ARTEMIS-4306:
---

 Summary: Add authn/z metrics
 Key: ARTEMIS-4306
 URL: https://issues.apache.org/jira/browse/ARTEMIS-4306
 Project: ActiveMQ Artemis
  Issue Type: Improvement
Reporter: Justin Bertram


It would be useful to have metrics for authn/z successes and failures as well 
as for metrics related to the corresponding caches.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (ARTEMIS-4296) Lost MQTT messages

2023-06-08 Thread Justin Bertram (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-4296?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730669#comment-17730669
 ] 

Justin Bertram commented on ARTEMIS-4296:
-

I was able to reproduce this with the test you provided. Thanks for that.

>From what I can tell this looks like some kind of issue with the Paho client. 
>When I reproduce this with [MQTT protocol trace 
>logging|https://activemq.apache.org/components/artemis/documentation/latest/mqtt.html#debug-logging]
> I can see the broker sends the "missing" message(s) to the "responder" 
>client, but the client never indicates that it receives the message(s) and 
>never sends the response back. However, after the {{await}} on the latches 
>fails and the connection is closed there's exceptions related to the missing 
>message(s). I think maybe there some kind of race or other kind of 
>thread-related bug in the Paho client. 

Here's my modified version of the test that provides additional debugging 
details:
{code:java}
   @Test(timeout = DEFAULT_TIMEOUT)
   public void testRequestResponseMessages() throws Exception {
  final Integer REQUEST_NOT_SENT = 0;
  final Integer SENDING_REQUEST = 1;
  final Integer REQUEST_RECEIVED = 2;
  final Integer SENDING_RESPONSE = 3;
  final Integer RESPONSE_RECEIVED = 4;

  final AtomicLong failures = new AtomicLong(0);
  long start = System.currentTimeMillis();
  int messageCount = 1000;
  List results = Collections.synchronizedList(new ArrayList<>());
  for (int i = 0; i < messageCount; i++) {
 results.add(REQUEST_NOT_SENT);
  }

  // receive requests and send responses
  MqttClient responder = createPahoClient("responder");
  CountDownLatch responderLatch = new CountDownLatch(messageCount);
  responder.connect();
  responder.subscribe("requests", 2);
  responder.setCallback(new DefaultMqttCallback() {
 @Override
 public void messageArrived(String topic, MqttMessage message) {
Integer i = Integer.parseInt(new String(message.getPayload()));
results.set(i, REQUEST_RECEIVED);
responderLatch.countDown();
String responseTopic = message.getProperties().getResponseTopic();
logger.info("Sending response to topic " + responseTopic);
try {
   results.set(i, SENDING_RESPONSE);
   responder.publish(responseTopic, message.getPayload(), 2, false);
} catch (Exception ex) {
   failures.incrementAndGet();
   logger.error("Failed to send response to topic " + 
responseTopic, ex);
}
 }
  });

  // receive responses
  MqttClient requestor = createPahoClient("requestor");
  CountDownLatch requestorLatch = new CountDownLatch(messageCount);
  requestor.connect();
  requestor.subscribe("responses/*", 2);
  requestor.setCallback(new DefaultMqttCallback() {
 @Override
 public void messageArrived(String topic, MqttMessage message) {
results.set(Integer.parseInt(new String(message.getPayload())), 
RESPONSE_RECEIVED);
logger.info("Response received at topic " + topic);
requestorLatch.countDown();
 }
  });

  // send requests
  for (int i = 0; i < messageCount; ++i) {
 MqttProperties properties = new MqttProperties();
 properties.setResponseTopic("responses/" + i);
 logger.info("Sending request to respond to " + 
properties.getResponseTopic());
 results.set(i, SENDING_REQUEST);
 requestor.publish("requests", new 
MqttMessage(Integer.toString(i).getBytes(StandardCharsets.UTF_8), 2, false, 
properties));
  }

  assertEquals(0, failures.get());
  boolean responderResult = responderLatch.await(5, TimeUnit.SECONDS);
  boolean requestorResult = requestorLatch.await(5, TimeUnit.SECONDS);

  logger.info("Sent " + messageCount + " messages in " + 
(System.currentTimeMillis() - start) + " milliseconds.");

  for (int i = 0; i < messageCount; i++) {
 logger.info(i + ": " + results.get(i));
  }

  responder.disconnect();
  responder.close();

  requestor.disconnect();
  requestor.close();

  assertTrue(responderResult);
  assertTrue(requestorResult);
   }{code}

> Lost MQTT messages
> --
>
> Key: ARTEMIS-4296
> URL: https://issues.apache.org/jira/browse/ARTEMIS-4296
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.28.0
>Reporter: Daniel Martin
>Priority: Blocker
>
> Please, see [https://github.com/apache/activemq-artemis/pull/4492]:
> {quote}In the following test, a broker client sends 1000 messages which are 
> expected to be received by a second client, which in turn replies to every 
> message with new ones (thus being labeled 

[jira] [Updated] (ARTEMIS-4305) Zero persistence does not work in kubernetes

2023-06-08 Thread Ivan Iliev (Jira)


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-4305?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Iliev updated ARTEMIS-4305:

Description: 
In a cluster deployed in kubernetes, when a node is destroyed it terminates the 
process and shuts down the network before the process has a chance to close 
connections. Then a new node might be brought up, reusing the old node’s ip. If 
this happens before the connection ttl, from artemis’ point of view, it looks 
like as if the connection came back. Yet it is actually not the same, the peer 
has a new node id, etc. This messes things up with the cluster, the old message 
flow record is invalid.

One way to fix it could be if the {{Ping}} messages which are typically used to 
detect dead connections could use some sort of connection id to match that the 
other side is really the one which it is supposed to be.

  was:
In a cluster deployed in kubernetes, when a node is destroyed it terminates the 
process and shuts down the network before the process has a chance to close 
connections. Then a new node might be brought up, reusing the old node’s ip. If 
this happens before the connection ttl, from artemis’ point of view, it looks 
like as if the connection came back. Yet it is actually not the same, the peer 
has a new node id, etc. This messes things up with the cluster, the old message 
flow record is invalid.

One way to fix it, is if the {{Ping}} messages which are typically used to 
detect dead connections could use some sort of connection id to match that the 
other side is really the one which it is supposed to be.


> Zero persistence does not work in kubernetes
> 
>
> Key: ARTEMIS-4305
> URL: https://issues.apache.org/jira/browse/ARTEMIS-4305
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Reporter: Ivan Iliev
>Priority: Major
>
> In a cluster deployed in kubernetes, when a node is destroyed it terminates 
> the process and shuts down the network before the process has a chance to 
> close connections. Then a new node might be brought up, reusing the old 
> node’s ip. If this happens before the connection ttl, from artemis’ point of 
> view, it looks like as if the connection came back. Yet it is actually not 
> the same, the peer has a new node id, etc. This messes things up with the 
> cluster, the old message flow record is invalid.
> One way to fix it could be if the {{Ping}} messages which are typically used 
> to detect dead connections could use some sort of connection id to match that 
> the other side is really the one which it is supposed to be.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (ARTEMIS-4305) Zero persistence does not work in kubernetes

2023-06-08 Thread Ivan Iliev (Jira)
Ivan Iliev created ARTEMIS-4305:
---

 Summary: Zero persistence does not work in kubernetes
 Key: ARTEMIS-4305
 URL: https://issues.apache.org/jira/browse/ARTEMIS-4305
 Project: ActiveMQ Artemis
  Issue Type: Bug
Reporter: Ivan Iliev


In a cluster deployed in kubernetes, when a node is destroyed it terminates the 
process and shuts down the network before the process has a chance to close 
connections. Then a new node might be brought up, reusing the old node’s ip. If 
this happens before the connection ttl, from artemis’ point of view, it looks 
like as if the connection came back. Yet it is actually not the same, the peer 
has a new node id, etc. This messes things up with the cluster, the old message 
flow record is invalid.

One way to fix it, is if the {{Ping}} messages which are typically used to 
detect dead connections could use some sort of connection id to match that the 
other side is really the one which it is supposed to be.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9268) Upgrade to maven-source-plugin 3.3.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730622#comment-17730622
 ] 

ASF subversion and git services commented on AMQ-9268:
--

Commit 47343ba0ce0b7c7697524c3c67c20dc03deb2091 in activemq's branch 
refs/heads/activemq-5.17.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=47343ba0ce ]

[AMQ-9268] Upgrade to maven-source-plugin 3.3.0

(cherry picked from commit b6fc3898382a6200ddc49bcab746cc200cb6a995)


> Upgrade to maven-source-plugin 3.3.0
> 
>
> Key: AMQ-9268
> URL: https://issues.apache.org/jira/browse/AMQ-9268
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (AMQ-9268) Upgrade to maven-source-plugin 3.3.0

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved AMQ-9268.
---
Resolution: Fixed

> Upgrade to maven-source-plugin 3.3.0
> 
>
> Key: AMQ-9268
> URL: https://issues.apache.org/jira/browse/AMQ-9268
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9268) Upgrade to maven-source-plugin 3.3.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730621#comment-17730621
 ] 

ASF subversion and git services commented on AMQ-9268:
--

Commit e3ab590bde8b37a91d777905395b8f113fa10b90 in activemq's branch 
refs/heads/activemq-5.18.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=e3ab590bde ]

[AMQ-9268] Upgrade to maven-source-plugin 3.3.0

(cherry picked from commit b6fc3898382a6200ddc49bcab746cc200cb6a995)


> Upgrade to maven-source-plugin 3.3.0
> 
>
> Key: AMQ-9268
> URL: https://issues.apache.org/jira/browse/AMQ-9268
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9268) Upgrade to maven-source-plugin 3.3.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730619#comment-17730619
 ] 

ASF subversion and git services commented on AMQ-9268:
--

Commit b6fc3898382a6200ddc49bcab746cc200cb6a995 in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=b6fc389838 ]

[AMQ-9268] Upgrade to maven-source-plugin 3.3.0


> Upgrade to maven-source-plugin 3.3.0
> 
>
> Key: AMQ-9268
> URL: https://issues.apache.org/jira/browse/AMQ-9268
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9268) Upgrade to maven-source-plugin 3.3.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730620#comment-17730620
 ] 

ASF subversion and git services commented on AMQ-9268:
--

Commit 83a260843f296866bf2ea5718d74e38619f6d853 in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=83a260843f ]

Merge pull request #1021 from jbonofre/AMQ-9268

[AMQ-9268] Upgrade to maven-source-plugin 3.3.0

> Upgrade to maven-source-plugin 3.3.0
> 
>
> Key: AMQ-9268
> URL: https://issues.apache.org/jira/browse/AMQ-9268
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9268) Upgrade to maven-source-plugin 3.3.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9268?focusedWorklogId=864510=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864510
 ]

ASF GitHub Bot logged work on AMQ-9268:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 15:33
Start Date: 08/Jun/23 15:33
Worklog Time Spent: 10m 
  Work Description: jbonofre merged PR #1021:
URL: https://github.com/apache/activemq/pull/1021




Issue Time Tracking
---

Worklog Id: (was: 864510)
Time Spent: 20m  (was: 10m)

> Upgrade to maven-source-plugin 3.3.0
> 
>
> Key: AMQ-9268
> URL: https://issues.apache.org/jira/browse/AMQ-9268
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9263) Upgrade to maven-compiler-plugin 3.11.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730618#comment-17730618
 ] 

ASF subversion and git services commented on AMQ-9263:
--

Commit 0c9bf6d507520c62b5f4dc7a6739b736243c9605 in activemq's branch 
refs/heads/activemq-5.17.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=0c9bf6d507 ]

[AMQ-9263] Upgrade to maven-compiler-plugin 3.11.0

(cherry picked from commit e292f3b50564d06156c8ac630928f4c4a67de623)


> Upgrade to maven-compiler-plugin 3.11.0
> ---
>
> Key: AMQ-9263
> URL: https://issues.apache.org/jira/browse/AMQ-9263
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (AMQ-9263) Upgrade to maven-compiler-plugin 3.11.0

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9263?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved AMQ-9263.
---
Resolution: Fixed

> Upgrade to maven-compiler-plugin 3.11.0
> ---
>
> Key: AMQ-9263
> URL: https://issues.apache.org/jira/browse/AMQ-9263
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9263) Upgrade to maven-compiler-plugin 3.11.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730617#comment-17730617
 ] 

ASF subversion and git services commented on AMQ-9263:
--

Commit 7ae0b4841e6f1f7ed38f456cf261702771f53d14 in activemq's branch 
refs/heads/activemq-5.18.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=7ae0b4841e ]

[AMQ-9263] Upgrade to maven-compiler-plugin 3.11.0

(cherry picked from commit e292f3b50564d06156c8ac630928f4c4a67de623)


> Upgrade to maven-compiler-plugin 3.11.0
> ---
>
> Key: AMQ-9263
> URL: https://issues.apache.org/jira/browse/AMQ-9263
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9263) Upgrade to maven-compiler-plugin 3.11.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730615#comment-17730615
 ] 

ASF subversion and git services commented on AMQ-9263:
--

Commit e292f3b50564d06156c8ac630928f4c4a67de623 in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=e292f3b505 ]

[AMQ-9263] Upgrade to maven-compiler-plugin 3.11.0


> Upgrade to maven-compiler-plugin 3.11.0
> ---
>
> Key: AMQ-9263
> URL: https://issues.apache.org/jira/browse/AMQ-9263
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9263) Upgrade to maven-compiler-plugin 3.11.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9263?focusedWorklogId=864508=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864508
 ]

ASF GitHub Bot logged work on AMQ-9263:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 15:30
Start Date: 08/Jun/23 15:30
Worklog Time Spent: 10m 
  Work Description: jbonofre merged PR #1016:
URL: https://github.com/apache/activemq/pull/1016




Issue Time Tracking
---

Worklog Id: (was: 864508)
Time Spent: 20m  (was: 10m)

> Upgrade to maven-compiler-plugin 3.11.0
> ---
>
> Key: AMQ-9263
> URL: https://issues.apache.org/jira/browse/AMQ-9263
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9263) Upgrade to maven-compiler-plugin 3.11.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730616#comment-17730616
 ] 

ASF subversion and git services commented on AMQ-9263:
--

Commit 1a515d6d4b8d73ae385ce69fbb8df5ed5948a26f in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=1a515d6d4b ]

Merge pull request #1016 from jbonofre/AMQ-9263

[AMQ-9263] Upgrade to maven-compiler-plugin 3.11.0

> Upgrade to maven-compiler-plugin 3.11.0
> ---
>
> Key: AMQ-9263
> URL: https://issues.apache.org/jira/browse/AMQ-9263
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (AMQ-9253) MQTT5 server support

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9253?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré updated AMQ-9253:
--
Fix Version/s: 5.19.0
   5.18.2

> MQTT5 server support
> 
>
> Key: AMQ-9253
> URL: https://issues.apache.org/jira/browse/AMQ-9253
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Matt Pavlovich
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.18.2
>
>
> Add MQTT5 support



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Assigned] (AMQ-9253) MQTT5 server support

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9253?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré reassigned AMQ-9253:
-

Assignee: Jean-Baptiste Onofré

> MQTT5 server support
> 
>
> Key: AMQ-9253
> URL: https://issues.apache.org/jira/browse/AMQ-9253
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Matt Pavlovich
>Assignee: Jean-Baptiste Onofré
>Priority: Major
>
> Add MQTT5 support



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Closed] (AMQ-9278) Add support for MQTT v5.0

2023-06-08 Thread Justin Bertram (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9278?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Bertram closed AMQ-9278.
---
Resolution: Duplicate

> Add support for MQTT v5.0
> -
>
> Key: AMQ-9278
> URL: https://issues.apache.org/jira/browse/AMQ-9278
> Project: ActiveMQ
>  Issue Type: New Feature
>Reporter: Ivan Iliev
>Priority: Major
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (AMQ-9278) Add support for MQTT v5.0

2023-06-08 Thread Ivan Iliev (Jira)
Ivan Iliev created AMQ-9278:
---

 Summary: Add support for MQTT v5.0
 Key: AMQ-9278
 URL: https://issues.apache.org/jira/browse/AMQ-9278
 Project: ActiveMQ
  Issue Type: New Feature
Reporter: Ivan Iliev






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (AMQ-9271) Upgrade to dependency-check-maven 8.2.1

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved AMQ-9271.
---
Resolution: Fixed

> Upgrade to dependency-check-maven 8.2.1
> ---
>
> Key: AMQ-9271
> URL: https://issues.apache.org/jira/browse/AMQ-9271
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (AMQ-9271) Upgrade to dependency-check-maven 8.2.1

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré updated AMQ-9271:
--
Fix Version/s: (was: 5.17.5)

> Upgrade to dependency-check-maven 8.2.1
> ---
>
> Key: AMQ-9271
> URL: https://issues.apache.org/jira/browse/AMQ-9271
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9271) Upgrade to dependency-check-maven 8.2.1

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9271?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730565#comment-17730565
 ] 

ASF subversion and git services commented on AMQ-9271:
--

Commit fcd27056fda2c9218a33eaf98570937a74d560b9 in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=fcd27056fd ]

Merge pull request #1024 from jbonofre/AMQ-9271

[AMQ-9271] Upgrade to dependency-check-maven 8.2.1

> Upgrade to dependency-check-maven 8.2.1
> ---
>
> Key: AMQ-9271
> URL: https://issues.apache.org/jira/browse/AMQ-9271
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9271) Upgrade to dependency-check-maven 8.2.1

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9271?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730566#comment-17730566
 ] 

ASF subversion and git services commented on AMQ-9271:
--

Commit 902ff0e83c80562eed9a58890c494e0399ef1650 in activemq's branch 
refs/heads/activemq-5.18.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=902ff0e83c ]

[AMQ-9271] Upgrade to dependency-check-maven 8.2.1

(cherry picked from commit 616d19c620ee5f44bb47f1a7e0231505acf42c54)


> Upgrade to dependency-check-maven 8.2.1
> ---
>
> Key: AMQ-9271
> URL: https://issues.apache.org/jira/browse/AMQ-9271
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9271) Upgrade to dependency-check-maven 8.2.1

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9271?focusedWorklogId=864463=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864463
 ]

ASF GitHub Bot logged work on AMQ-9271:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 13:32
Start Date: 08/Jun/23 13:32
Worklog Time Spent: 10m 
  Work Description: jbonofre merged PR #1024:
URL: https://github.com/apache/activemq/pull/1024




Issue Time Tracking
---

Worklog Id: (was: 864463)
Time Spent: 20m  (was: 10m)

> Upgrade to dependency-check-maven 8.2.1
> ---
>
> Key: AMQ-9271
> URL: https://issues.apache.org/jira/browse/AMQ-9271
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9271) Upgrade to dependency-check-maven 8.2.1

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9271?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730564#comment-17730564
 ] 

ASF subversion and git services commented on AMQ-9271:
--

Commit 616d19c620ee5f44bb47f1a7e0231505acf42c54 in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=616d19c620 ]

[AMQ-9271] Upgrade to dependency-check-maven 8.2.1


> Upgrade to dependency-check-maven 8.2.1
> ---
>
> Key: AMQ-9271
> URL: https://issues.apache.org/jira/browse/AMQ-9271
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9265) Upgrade to maven-plugin-plugin 3.9.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730563#comment-17730563
 ] 

ASF subversion and git services commented on AMQ-9265:
--

Commit 91ba342d94fa406ba064dea6ba000b11e112154f in activemq's branch 
refs/heads/activemq-5.17.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=91ba342d94 ]

[AMQ-9265] Upgrade to maven-plugin-plugin 3.9.0

(cherry picked from commit 580a1536ad0868a7b314a5adf45f3eac7fc35d3a)


> Upgrade to maven-plugin-plugin 3.9.0
> 
>
> Key: AMQ-9265
> URL: https://issues.apache.org/jira/browse/AMQ-9265
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (AMQ-9265) Upgrade to maven-plugin-plugin 3.9.0

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved AMQ-9265.
---
Resolution: Fixed

> Upgrade to maven-plugin-plugin 3.9.0
> 
>
> Key: AMQ-9265
> URL: https://issues.apache.org/jira/browse/AMQ-9265
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9265) Upgrade to maven-plugin-plugin 3.9.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730561#comment-17730561
 ] 

ASF subversion and git services commented on AMQ-9265:
--

Commit ed1febc6c658caf71f7207ecaa19c0d80c9e490f in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=ed1febc6c6 ]

Merge pull request #1018 from jbonofre/AMQ-9265

[AMQ-9265] Upgrade to maven-plugin-plugin 3.9.0

> Upgrade to maven-plugin-plugin 3.9.0
> 
>
> Key: AMQ-9265
> URL: https://issues.apache.org/jira/browse/AMQ-9265
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9265) Upgrade to maven-plugin-plugin 3.9.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730562#comment-17730562
 ] 

ASF subversion and git services commented on AMQ-9265:
--

Commit 65bb6c627752a86ed51c72e61002a3f994672388 in activemq's branch 
refs/heads/activemq-5.18.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=65bb6c6277 ]

[AMQ-9265] Upgrade to maven-plugin-plugin 3.9.0

(cherry picked from commit 580a1536ad0868a7b314a5adf45f3eac7fc35d3a)


> Upgrade to maven-plugin-plugin 3.9.0
> 
>
> Key: AMQ-9265
> URL: https://issues.apache.org/jira/browse/AMQ-9265
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9265) Upgrade to maven-plugin-plugin 3.9.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730560#comment-17730560
 ] 

ASF subversion and git services commented on AMQ-9265:
--

Commit 580a1536ad0868a7b314a5adf45f3eac7fc35d3a in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=580a1536ad ]

[AMQ-9265] Upgrade to maven-plugin-plugin 3.9.0


> Upgrade to maven-plugin-plugin 3.9.0
> 
>
> Key: AMQ-9265
> URL: https://issues.apache.org/jira/browse/AMQ-9265
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9265) Upgrade to maven-plugin-plugin 3.9.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9265?focusedWorklogId=864461=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864461
 ]

ASF GitHub Bot logged work on AMQ-9265:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 13:29
Start Date: 08/Jun/23 13:29
Worklog Time Spent: 10m 
  Work Description: jbonofre merged PR #1018:
URL: https://github.com/apache/activemq/pull/1018




Issue Time Tracking
---

Worklog Id: (was: 864461)
Time Spent: 20m  (was: 10m)

> Upgrade to maven-plugin-plugin 3.9.0
> 
>
> Key: AMQ-9265
> URL: https://issues.apache.org/jira/browse/AMQ-9265
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9257) Disabled expire message checking when pauseDispatch=true

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730559#comment-17730559
 ] 

ASF subversion and git services commented on AMQ-9257:
--

Commit cda1007ef67ae3a0155af688bd3facb208ef845d in activemq's branch 
refs/heads/activemq-5.17.x from Matt Pavlovich
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=cda1007ef6 ]

[AMQ-9257] Disabled expire message checking when pauseDispatch=true (#1005)

(cherry picked from commit 9a5b61f6a28184cfe832871302ece16069ebb71d)


> Disabled expire message checking when pauseDispatch=true
> 
>
> Key: AMQ-9257
> URL: https://issues.apache.org/jira/browse/AMQ-9257
> Project: ActiveMQ
>  Issue Type: Improvement
>Reporter: Matt Pavlovich
>Assignee: Matt Pavlovich
>Priority: Minor
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> If pauseDispatch is set, the expiry checking should be ignored as well



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9257) Disabled expire message checking when pauseDispatch=true

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730557#comment-17730557
 ] 

ASF subversion and git services commented on AMQ-9257:
--

Commit 972d31f976133c77ae74aca4e359c5a57a75b4ff in activemq's branch 
refs/heads/activemq-5.18.x from Matt Pavlovich
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=972d31f976 ]

[AMQ-9257] Disabled expire message checking when pauseDispatch=true (#1005)

(cherry picked from commit 9a5b61f6a28184cfe832871302ece16069ebb71d)


> Disabled expire message checking when pauseDispatch=true
> 
>
> Key: AMQ-9257
> URL: https://issues.apache.org/jira/browse/AMQ-9257
> Project: ActiveMQ
>  Issue Type: Improvement
>Reporter: Matt Pavlovich
>Assignee: Matt Pavlovich
>Priority: Minor
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> If pauseDispatch is set, the expiry checking should be ignored as well



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (AMQ-9266) Upgrade to maven-project-info-reports-plugin 3.4.5

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9266?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved AMQ-9266.
---
Resolution: Fixed

> Upgrade to maven-project-info-reports-plugin 3.4.5
> --
>
> Key: AMQ-9266
> URL: https://issues.apache.org/jira/browse/AMQ-9266
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9266) Upgrade to maven-project-info-reports-plugin 3.4.5

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730538#comment-17730538
 ] 

ASF subversion and git services commented on AMQ-9266:
--

Commit 5fb5793d9aeb70a3080b4b61b652dbfd867e2866 in activemq's branch 
refs/heads/activemq-5.18.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=5fb5793d9a ]

[AMQ-9266] Upgrade to maven-project-info-reports-plugin 3.4.5

(cherry picked from commit 3df605c37b8d0839c88f7f067d9aa23f0ca0f1d8)


> Upgrade to maven-project-info-reports-plugin 3.4.5
> --
>
> Key: AMQ-9266
> URL: https://issues.apache.org/jira/browse/AMQ-9266
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9266) Upgrade to maven-project-info-reports-plugin 3.4.5

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730539#comment-17730539
 ] 

ASF subversion and git services commented on AMQ-9266:
--

Commit 749e28d35e46ac1d6c8445a8e5d5041eca416d1d in activemq's branch 
refs/heads/activemq-5.17.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=749e28d35e ]

[AMQ-9266] Upgrade to maven-project-info-reports-plugin 3.4.5

(cherry picked from commit 3df605c37b8d0839c88f7f067d9aa23f0ca0f1d8)


> Upgrade to maven-project-info-reports-plugin 3.4.5
> --
>
> Key: AMQ-9266
> URL: https://issues.apache.org/jira/browse/AMQ-9266
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9266) Upgrade to maven-project-info-reports-plugin 3.4.5

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730537#comment-17730537
 ] 

ASF subversion and git services commented on AMQ-9266:
--

Commit 3b21a59cab2e76130e0d5e669096498077b34920 in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=3b21a59cab ]

Merge pull request #1019 from jbonofre/AMQ-9266

[AMQ-9266] Upgrade to maven-project-info-reports-plugin 3.4.5

> Upgrade to maven-project-info-reports-plugin 3.4.5
> --
>
> Key: AMQ-9266
> URL: https://issues.apache.org/jira/browse/AMQ-9266
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9266) Upgrade to maven-project-info-reports-plugin 3.4.5

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730536#comment-17730536
 ] 

ASF subversion and git services commented on AMQ-9266:
--

Commit 3df605c37b8d0839c88f7f067d9aa23f0ca0f1d8 in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=3df605c37b ]

[AMQ-9266] Upgrade to maven-project-info-reports-plugin 3.4.5


> Upgrade to maven-project-info-reports-plugin 3.4.5
> --
>
> Key: AMQ-9266
> URL: https://issues.apache.org/jira/browse/AMQ-9266
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9266) Upgrade to maven-project-info-reports-plugin 3.4.5

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9266?focusedWorklogId=864446=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864446
 ]

ASF GitHub Bot logged work on AMQ-9266:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 12:25
Start Date: 08/Jun/23 12:25
Worklog Time Spent: 10m 
  Work Description: jbonofre merged PR #1019:
URL: https://github.com/apache/activemq/pull/1019




Issue Time Tracking
---

Worklog Id: (was: 864446)
Time Spent: 20m  (was: 10m)

> Upgrade to maven-project-info-reports-plugin 3.4.5
> --
>
> Key: AMQ-9266
> URL: https://issues.apache.org/jira/browse/AMQ-9266
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (ARTEMIS-4259) JMS consumer + FQQN + selector not working

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-4259?focusedWorklogId=864401=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864401
 ]

ASF GitHub Bot logged work on ARTEMIS-4259:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:38
Start Date: 08/Jun/23 09:38
Worklog Time Spent: 10m 
  Work Description: rvais commented on code in PR #4502:
URL: https://github.com/apache/activemq-artemis/pull/4502#discussion_r1222725220


##
tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/jms/multiprotocol/JMSFQQNConsumerTest.java:
##
@@ -0,0 +1,209 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.activemq.artemis.tests.integration.jms.multiprotocol;
+
+import javax.jms.Connection;
+import javax.jms.ConnectionFactory;
+import javax.jms.Message;
+import javax.jms.MessageConsumer;
+import javax.jms.MessageProducer;
+import javax.jms.Queue;
+import javax.jms.Session;
+import javax.jms.Topic;
+
+import org.apache.activemq.artemis.api.core.RoutingType;
+import org.apache.activemq.artemis.api.core.SimpleString;
+import org.apache.activemq.artemis.core.settings.impl.AddressSettings;
+import org.apache.activemq.artemis.tests.util.CFUtil;
+import org.apache.activemq.artemis.utils.CompositeAddress;
+import org.apache.activemq.artemis.utils.RandomUtil;
+import org.apache.activemq.artemis.utils.Wait;
+import org.junit.Assert;
+import org.junit.Test;
+
+public class JMSFQQNConsumerTest extends MultiprotocolJMSClientTestSupport {
+
+   @Test
+   public void testFQQNTopicConsumerWithSelectorAMQP() throws Exception {
+  testFQQNTopicConsumerWithSelector("AMQP", true);
+   }
+
+   @Test
+   public void testFQQNTopicConsumerWithSelectorOpenWire() throws Exception {
+  testFQQNTopicConsumerWithSelector("OPENWIRE", false);
+   }
+
+   @Test
+   public void testFQQNTopicConsumerWithSelectorCore() throws Exception {
+  testFQQNTopicConsumerWithSelector("CORE", true);
+   }
+
+   private void testFQQNTopicConsumerWithSelector(String protocol, boolean 
validateFilterChange) throws Exception {
+  ConnectionFactory factory = CFUtil.createConnectionFactory(protocol, 
"tcp://localhost:5672");
+  final String queue = "queue";
+  final String address = "address";
+  final String filter = "prop='value'";
+  try (Connection c = factory.createConnection()) {
+ c.start();
+ Session s = c.createSession(false, Session.AUTO_ACKNOWLEDGE);
+ Topic t = s.createTopic(CompositeAddress.toFullyQualified(address, 
queue));
+ MessageConsumer mc = s.createConsumer(t, filter);
+ Wait.assertTrue(() -> server.locateQueue(queue) != null, 2000, 100);

Review Comment:
   I mean I would do the wait, but when you get the queue from that loop, it is 
unnecessary to repeat the request imho. I would just write that differently 
that's all.





Issue Time Tracking
---

Worklog Id: (was: 864401)
Time Spent: 4.5h  (was: 4h 20m)

> JMS consumer + FQQN + selector not working
> --
>
> Key: ARTEMIS-4259
> URL: https://issues.apache.org/jira/browse/ARTEMIS-4259
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Reporter: Justin Bertram
>Assignee: Justin Bertram
>Priority: Major
>  Time Spent: 4.5h
>  Remaining Estimate: 0h
>
> The CORE protocol does not honor consumers with a filter when used on FQQN 
> topics.
> Steps to reproduce:
> Start a consumer using CLI:
> {noformat}
> ./artemis consumer --url tcp://localhost:61616 --destination 
> topic://topic1::topic1.queue1 --protocol=core --message-count 1 --filter 
> "foo='bar'" --verbose{noformat}
> Send a message without the filter string:
> {noformat}
> ./artemis producer --url tcp://localhost:61616 --destination 
> topic://topic1::topic1.queue1 --protocol=core --message-count 1 --message 
> "some text"{noformat}
> You can observe the CORE client consuming the message which does not contain 
> the filter String:
> {noformat}
> Connection brokerURL = 

[jira] [Work logged] (AMQ-9277) Upgrade to commons-io 2.12.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9277?focusedWorklogId=864396=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864396
 ]

ASF GitHub Bot logged work on AMQ-9277:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:17
Start Date: 08/Jun/23 09:17
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1030:
URL: https://github.com/apache/activemq/pull/1030

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864396)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to commons-io 2.12.0
> 
>
> Key: AMQ-9277
> URL: https://issues.apache.org/jira/browse/AMQ-9277
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9276) Upgrade to commons-daemon 1.3.4

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9276?focusedWorklogId=864395=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864395
 ]

ASF GitHub Bot logged work on AMQ-9276:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:15
Start Date: 08/Jun/23 09:15
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1029:
URL: https://github.com/apache/activemq/pull/1029

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864395)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to commons-daemon 1.3.4
> ---
>
> Key: AMQ-9276
> URL: https://issues.apache.org/jira/browse/AMQ-9276
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9275) Upgrade to rome 2.1.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9275?focusedWorklogId=864394=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864394
 ]

ASF GitHub Bot logged work on AMQ-9275:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:14
Start Date: 08/Jun/23 09:14
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1028:
URL: https://github.com/apache/activemq/pull/1028

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864394)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to rome 2.1.0
> -
>
> Key: AMQ-9275
> URL: https://issues.apache.org/jira/browse/AMQ-9275
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9274) Upgrade to jackson 2.15.2

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9274?focusedWorklogId=864393=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864393
 ]

ASF GitHub Bot logged work on AMQ-9274:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:13
Start Date: 08/Jun/23 09:13
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1027:
URL: https://github.com/apache/activemq/pull/1027

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864393)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to jackson 2.15.2
> -
>
> Key: AMQ-9274
> URL: https://issues.apache.org/jira/browse/AMQ-9274
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9273) Upgrade to maven-shade-plugin 3.4.1

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9273?focusedWorklogId=864392=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864392
 ]

ASF GitHub Bot logged work on AMQ-9273:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:11
Start Date: 08/Jun/23 09:11
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1026:
URL: https://github.com/apache/activemq/pull/1026

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864392)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to maven-shade-plugin 3.4.1
> ---
>
> Key: AMQ-9273
> URL: https://issues.apache.org/jira/browse/AMQ-9273
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9272) Upgrade to xbean 4.23

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9272?focusedWorklogId=864391=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864391
 ]

ASF GitHub Bot logged work on AMQ-9272:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:10
Start Date: 08/Jun/23 09:10
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1025:
URL: https://github.com/apache/activemq/pull/1025

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864391)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to xbean 4.23
> -
>
> Key: AMQ-9272
> URL: https://issues.apache.org/jira/browse/AMQ-9272
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9271) Upgrade to dependency-check-maven 8.2.1

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9271?focusedWorklogId=864389=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864389
 ]

ASF GitHub Bot logged work on AMQ-9271:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:07
Start Date: 08/Jun/23 09:07
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1024:
URL: https://github.com/apache/activemq/pull/1024

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864389)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to dependency-check-maven 8.2.1
> ---
>
> Key: AMQ-9271
> URL: https://issues.apache.org/jira/browse/AMQ-9271
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9270) Upgrade to build-helper-maven-plugin 3.4.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9270?focusedWorklogId=864388=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864388
 ]

ASF GitHub Bot logged work on AMQ-9270:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:02
Start Date: 08/Jun/23 09:02
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1023:
URL: https://github.com/apache/activemq/pull/1023

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864388)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to build-helper-maven-plugin 3.4.0
> --
>
> Key: AMQ-9270
> URL: https://issues.apache.org/jira/browse/AMQ-9270
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9269) Upgrade to maven-surefire-plugin 3.1.2

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9269?focusedWorklogId=864387=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864387
 ]

ASF GitHub Bot logged work on AMQ-9269:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 09:01
Start Date: 08/Jun/23 09:01
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1022:
URL: https://github.com/apache/activemq/pull/1022

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864387)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to maven-surefire-plugin 3.1.2
> --
>
> Key: AMQ-9269
> URL: https://issues.apache.org/jira/browse/AMQ-9269
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9268) Upgrade to maven-source-plugin 3.3.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9268?focusedWorklogId=864370=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864370
 ]

ASF GitHub Bot logged work on AMQ-9268:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 08:36
Start Date: 08/Jun/23 08:36
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1021:
URL: https://github.com/apache/activemq/pull/1021

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864370)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to maven-source-plugin 3.3.0
> 
>
> Key: AMQ-9268
> URL: https://issues.apache.org/jira/browse/AMQ-9268
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9267) Upgrade to maven-release-plugin 3.0.1

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9267?focusedWorklogId=864368=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864368
 ]

ASF GitHub Bot logged work on AMQ-9267:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 08:31
Start Date: 08/Jun/23 08:31
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1020:
URL: https://github.com/apache/activemq/pull/1020

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864368)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to maven-release-plugin 3.0.1
> -
>
> Key: AMQ-9267
> URL: https://issues.apache.org/jira/browse/AMQ-9267
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9266) Upgrade to maven-project-info-reports-plugin 3.4.5

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9266?focusedWorklogId=864364=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864364
 ]

ASF GitHub Bot logged work on AMQ-9266:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 08:14
Start Date: 08/Jun/23 08:14
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1019:
URL: https://github.com/apache/activemq/pull/1019

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864364)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to maven-project-info-reports-plugin 3.4.5
> --
>
> Key: AMQ-9266
> URL: https://issues.apache.org/jira/browse/AMQ-9266
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9265) Upgrade to maven-plugin-plugin 3.9.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9265?focusedWorklogId=864363=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864363
 ]

ASF GitHub Bot logged work on AMQ-9265:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 08:13
Start Date: 08/Jun/23 08:13
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1018:
URL: https://github.com/apache/activemq/pull/1018

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864363)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to maven-plugin-plugin 3.9.0
> 
>
> Key: AMQ-9265
> URL: https://issues.apache.org/jira/browse/AMQ-9265
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9264) Upgrade to maven-javadoc-plugin 3.5.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9264?focusedWorklogId=864361=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864361
 ]

ASF GitHub Bot logged work on AMQ-9264:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 08:10
Start Date: 08/Jun/23 08:10
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1017:
URL: https://github.com/apache/activemq/pull/1017

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864361)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to maven-javadoc-plugin 3.5.0
> -
>
> Key: AMQ-9264
> URL: https://issues.apache.org/jira/browse/AMQ-9264
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9263) Upgrade to maven-compiler-plugin 3.11.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9263?focusedWorklogId=864360=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864360
 ]

ASF GitHub Bot logged work on AMQ-9263:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 08:09
Start Date: 08/Jun/23 08:09
Worklog Time Spent: 10m 
  Work Description: jbonofre opened a new pull request, #1016:
URL: https://github.com/apache/activemq/pull/1016

   (no comment)




Issue Time Tracking
---

Worklog Id: (was: 864360)
Remaining Estimate: 0h
Time Spent: 10m

> Upgrade to maven-compiler-plugin 3.11.0
> ---
>
> Key: AMQ-9263
> URL: https://issues.apache.org/jira/browse/AMQ-9263
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (AMQ-9203) Upgrade various maven plugins

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9203?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved AMQ-9203.
---
Resolution: Fixed

> Upgrade various maven plugins
> -
>
> Key: AMQ-9203
> URL: https://issues.apache.org/jira/browse/AMQ-9203
> Project: ActiveMQ
>  Issue Type: Dependency upgrade
>Reporter: Matt Pavlovich
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.17.5, 5.18.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> [INFO]   maven-antrun-plugin  3.0.0 -> 3.1.0
> [INFO]   maven-assembly-plugin .. 3.3.0 -> 3.4.2
> [INFO]   maven-enforcer-plugin .. 3.1.0 -> 3.2.1
> [INFO]   maven-jar-plugin ... 3.2.2 -> 3.3.0
> [INFO]   maven-javadoc-plugin ... 3.3.2 -> 3.4.1
> [INFO]   maven-plugin-plugin  3.6.4 -> 3.7.1
> [INFO]   maven-project-info-reports-plugin .. 3.4.0 -> 3.4.2
> [INFO]   maven-release-plugin . 3.0.0-M5 -> 3.0.0-M7
> [INFO]   maven-surefire-plugin  3.0.0-M6 -> 3.0.0-M8
> [INFO]   org.apache.rat:apache-rat-plugin . 0.13 -> 0.15
> [INFO]   org.owasp:dependency-check-maven ... 7.1.1 -> 8.0.2



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (AMQ-9203) Upgrade various maven plugins

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9203?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré updated AMQ-9203:
--
Fix Version/s: 5.17.5

> Upgrade various maven plugins
> -
>
> Key: AMQ-9203
> URL: https://issues.apache.org/jira/browse/AMQ-9203
> Project: ActiveMQ
>  Issue Type: Dependency upgrade
>Reporter: Matt Pavlovich
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.18.0, 5.17.5
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> [INFO]   maven-antrun-plugin  3.0.0 -> 3.1.0
> [INFO]   maven-assembly-plugin .. 3.3.0 -> 3.4.2
> [INFO]   maven-enforcer-plugin .. 3.1.0 -> 3.2.1
> [INFO]   maven-jar-plugin ... 3.2.2 -> 3.3.0
> [INFO]   maven-javadoc-plugin ... 3.3.2 -> 3.4.1
> [INFO]   maven-plugin-plugin  3.6.4 -> 3.7.1
> [INFO]   maven-project-info-reports-plugin .. 3.4.0 -> 3.4.2
> [INFO]   maven-release-plugin . 3.0.0-M5 -> 3.0.0-M7
> [INFO]   maven-surefire-plugin  3.0.0-M6 -> 3.0.0-M8
> [INFO]   org.apache.rat:apache-rat-plugin . 0.13 -> 0.15
> [INFO]   org.owasp:dependency-check-maven ... 7.1.1 -> 8.0.2



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Reopened] (AMQ-9203) Upgrade various maven plugins

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9203?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré reopened AMQ-9203:
---
  Assignee: Jean-Baptiste Onofré  (was: Matt Pavlovich)

> Upgrade various maven plugins
> -
>
> Key: AMQ-9203
> URL: https://issues.apache.org/jira/browse/AMQ-9203
> Project: ActiveMQ
>  Issue Type: Dependency upgrade
>Reporter: Matt Pavlovich
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.18.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> [INFO]   maven-antrun-plugin  3.0.0 -> 3.1.0
> [INFO]   maven-assembly-plugin .. 3.3.0 -> 3.4.2
> [INFO]   maven-enforcer-plugin .. 3.1.0 -> 3.2.1
> [INFO]   maven-jar-plugin ... 3.2.2 -> 3.3.0
> [INFO]   maven-javadoc-plugin ... 3.3.2 -> 3.4.1
> [INFO]   maven-plugin-plugin  3.6.4 -> 3.7.1
> [INFO]   maven-project-info-reports-plugin .. 3.4.0 -> 3.4.2
> [INFO]   maven-release-plugin . 3.0.0-M5 -> 3.0.0-M7
> [INFO]   maven-surefire-plugin  3.0.0-M6 -> 3.0.0-M8
> [INFO]   org.apache.rat:apache-rat-plugin . 0.13 -> 0.15
> [INFO]   org.owasp:dependency-check-maven ... 7.1.1 -> 8.0.2



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (AMQ-9260) Upgrade to maven-assembly-plugin 3.6.0

2023-06-08 Thread Jira


 [ 
https://issues.apache.org/jira/browse/AMQ-9260?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved AMQ-9260.
---
Resolution: Fixed

> Upgrade to maven-assembly-plugin 3.6.0
> --
>
> Key: AMQ-9260
> URL: https://issues.apache.org/jira/browse/AMQ-9260
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9260) Upgrade to maven-assembly-plugin 3.6.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9260?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730433#comment-17730433
 ] 

ASF subversion and git services commented on AMQ-9260:
--

Commit e07950ba9d35b7b4575de24dc41d3aa7ff178af5 in activemq's branch 
refs/heads/activemq-5.17.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=e07950ba9d ]

[AMQ-9260] Upgrade to maven-assembly-plugin 3.6.0

(cherry picked from commit 6dacd4875d88f05f433abd8cc024e53ab1f495e0)


> Upgrade to maven-assembly-plugin 3.6.0
> --
>
> Key: AMQ-9260
> URL: https://issues.apache.org/jira/browse/AMQ-9260
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9260) Upgrade to maven-assembly-plugin 3.6.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9260?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730431#comment-17730431
 ] 

ASF subversion and git services commented on AMQ-9260:
--

Commit d284bce16fbe6faa71d58c181f4e9d50fce80e11 in activemq's branch 
refs/heads/activemq-5.18.x from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=d284bce16f ]

[AMQ-9260] Upgrade to maven-assembly-plugin 3.6.0

(cherry picked from commit 6dacd4875d88f05f433abd8cc024e53ab1f495e0)


> Upgrade to maven-assembly-plugin 3.6.0
> --
>
> Key: AMQ-9260
> URL: https://issues.apache.org/jira/browse/AMQ-9260
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9260) Upgrade to maven-assembly-plugin 3.6.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9260?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730430#comment-17730430
 ] 

ASF subversion and git services commented on AMQ-9260:
--

Commit 476e9e9d036c492a14205189952d559cc29e1f73 in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=476e9e9d03 ]

Merge pull request #1015 from jbonofre/AMQ-9260

[AMQ-9260] Upgrade to maven-assembly-plugin 3.6.0

> Upgrade to maven-assembly-plugin 3.6.0
> --
>
> Key: AMQ-9260
> URL: https://issues.apache.org/jira/browse/AMQ-9260
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (AMQ-9260) Upgrade to maven-assembly-plugin 3.6.0

2023-06-08 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/AMQ-9260?focusedWorklogId=864351=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-864351
 ]

ASF GitHub Bot logged work on AMQ-9260:
---

Author: ASF GitHub Bot
Created on: 08/Jun/23 07:46
Start Date: 08/Jun/23 07:46
Worklog Time Spent: 10m 
  Work Description: jbonofre merged PR #1015:
URL: https://github.com/apache/activemq/pull/1015




Issue Time Tracking
---

Worklog Id: (was: 864351)
Time Spent: 20m  (was: 10m)

> Upgrade to maven-assembly-plugin 3.6.0
> --
>
> Key: AMQ-9260
> URL: https://issues.apache.org/jira/browse/AMQ-9260
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AMQ-9260) Upgrade to maven-assembly-plugin 3.6.0

2023-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-9260?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17730429#comment-17730429
 ] 

ASF subversion and git services commented on AMQ-9260:
--

Commit 6dacd4875d88f05f433abd8cc024e53ab1f495e0 in activemq's branch 
refs/heads/main from JB Onofré
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=6dacd4875d ]

[AMQ-9260] Upgrade to maven-assembly-plugin 3.6.0


> Upgrade to maven-assembly-plugin 3.6.0
> --
>
> Key: AMQ-9260
> URL: https://issues.apache.org/jira/browse/AMQ-9260
> Project: ActiveMQ
>  Issue Type: Task
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 5.19.0, 5.17.5, 5.18.2
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)