[qpid-jms] branch main updated: NO-JIRA: update to current setup-java action, take advantage of tool cache install for LTS versions

2021-05-12 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/main by this push:
 new cc1f548  NO-JIRA: update to current setup-java action, take advantage 
of tool cache install for LTS versions
cc1f548 is described below

commit cc1f548a6dcf24b7a2f85d3a6d0dbdac0e369848
Author: Robbie Gemmell 
AuthorDate: Wed May 12 10:46:09 2021 +0100

NO-JIRA: update to current setup-java action, take advantage of tool cache 
install for LTS versions
---
 .github/workflows/build.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index da9b057..71198f8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -20,9 +20,10 @@ jobs:
 ${{ runner.os }}-maven-
 
   - name: Install JDK ${{ matrix.java }}
-uses: actions/setup-java@v1
+uses: actions/setup-java@v2
 with:
   java-version: ${{ matrix.java }}
+  distribution: 'adopt'
 
   - name: Build
 run: mvn -B clean verify

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch main updated: QPIDJMS-537: replace Float/Double constructor usage now marked deprecated-for-removal in Java 16

2021-05-11 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/main by this push:
 new a6f08b6  QPIDJMS-537: replace Float/Double constructor usage now 
marked deprecated-for-removal in Java 16
a6f08b6 is described below

commit a6f08b6d58ba6db0d34beeac470d3d702f93f76d
Author: Robbie Gemmell 
AuthorDate: Tue May 11 17:49:37 2021 +0100

QPIDJMS-537: replace Float/Double constructor usage now marked 
deprecated-for-removal in Java 16
---
 .../jms/selector/filter/ArithmeticExpression.java  | 10 
 .../jms/selector/filter/ComparisonExpression.java  | 28 +++---
 .../jms/selector/filter/ConstantExpression.java|  2 +-
 .../qpid/jms/selector/filter/UnaryExpression.java  |  4 ++--
 4 files changed, 22 insertions(+), 22 deletions(-)

diff --git 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/ArithmeticExpression.java
 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/ArithmeticExpression.java
index 01c3b55..aab9181 100755
--- 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/ArithmeticExpression.java
+++ 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/ArithmeticExpression.java
@@ -115,7 +115,7 @@ public abstract class ArithmeticExpression extends 
BinaryExpression {
 case LONG:
 return Long.valueOf(left.longValue() + right.longValue());
 default:
-return new Double(left.doubleValue() + right.doubleValue());
+return Double.valueOf(left.doubleValue() + right.doubleValue());
 }
 }
 
@@ -126,7 +126,7 @@ public abstract class ArithmeticExpression extends 
BinaryExpression {
 case LONG:
 return Long.valueOf(left.longValue() - right.longValue());
 default:
-return new Double(left.doubleValue() - right.doubleValue());
+return Double.valueOf(left.doubleValue() - right.doubleValue());
 }
 }
 
@@ -137,16 +137,16 @@ public abstract class ArithmeticExpression extends 
BinaryExpression {
 case LONG:
 return Long.valueOf(left.longValue() * right.longValue());
 default:
-return new Double(left.doubleValue() * right.doubleValue());
+return Double.valueOf(left.doubleValue() * right.doubleValue());
 }
 }
 
 protected Number divide(Number left, Number right) {
-return new Double(left.doubleValue() / right.doubleValue());
+return Double.valueOf(left.doubleValue() / right.doubleValue());
 }
 
 protected Number mod(Number left, Number right) {
-return new Double(left.doubleValue() % right.doubleValue());
+return Double.valueOf(left.doubleValue() % right.doubleValue());
 }
 
 private int numberType(Number left, Number right) {
diff --git 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/ComparisonExpression.java
 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/ComparisonExpression.java
index 2154b66..9f544b4 100755
--- 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/ComparisonExpression.java
+++ 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/selector/filter/ComparisonExpression.java
@@ -361,9 +361,9 @@ public abstract class ComparisonExpression extends 
BinaryExpression implements B
 } else if (rc == Long.class) {
 lv = Long.valueOf(((Number)lv).longValue());
 } else if (rc == Float.class) {
-lv = new Float(((Number)lv).floatValue());
+lv = Float.valueOf(((Number)lv).floatValue());
 } else if (rc == Double.class) {
-lv = new Double(((Number)lv).doubleValue());
+lv = Double.valueOf(((Number)lv).doubleValue());
 } else {
 return Boolean.FALSE;
 }
@@ -373,9 +373,9 @@ public abstract class ComparisonExpression extends 
BinaryExpression implements B
 } else if (rc == Long.class) {
 lv = Long.valueOf(((Number)lv).longValue());
 } else if (rc == Float.class) {
-lv = new Float(((Number)lv).floatValue());
+lv = Float.valueOf(((Number)lv).floatValue());
 } else if (rc == Double.class) {
-lv = new Double(((Number)lv).doubleValue());
+lv = Double.valueOf(((Number)lv).doubleValue());
 } else {
 return Boolean.FALSE;
 }
@@ -383,9 +383,9 @@ public abstract class ComparisonExpression extends 
BinaryExpression implements B
 if (rc == Long.class) {
 lv

[qpid-jms] branch main updated: QPIDJMS-528: add id to the failure log for added clarity and consistency with other messages, bump level

2021-05-04 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/main by this push:
 new 91c8538  QPIDJMS-528: add id to the failure log for added clarity and 
consistency with other messages, bump level
91c8538 is described below

commit 91c853868f110a916939f4b3971da496b25757cd
Author: Robbie Gemmell 
AuthorDate: Tue May 4 17:04:20 2021 +0100

QPIDJMS-528: add id to the failure log for added clarity and consistency 
with other messages, bump level
---
 qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
index b15e781..4a1edfa 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
@@ -1375,7 +1375,7 @@ public class JmsConnection implements AutoCloseable, 
Connection, TopicConnection
 public void onConnectionFailure(final ProviderException ex) {
 providerFailed(ex);
 
-LOG.info("Connection has failed due to error: {}", ex != null ? 
ex.getMessage() : "No error details provided.");
+LOG.warn("Connection {} has failed due to: {}", 
connectionInfo.getId(), ex != null ? ex.getMessage() : "No error details 
provided.");
 
 // Signal that connection dropped we need to mark transactions as
 // failed, deliver failure events to asynchronous send completions etc.

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] branch main updated (241c842 -> 961ea78)

2021-04-28 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git.


from 241c842  Add additional waits for the intermediate peer to complete
 new 1fedf3d  gate off the JMH perf tests module from main build, require 
it be enabled or built directly
 new 961ea78  make module name element capitalisations consistent

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml  | 16 ++-
 protonj2-performance-tests/README.md |  2 --
 protonj2-performance-tests/pom.xml   | 38 +++-
 protonj2/pom.xml |  2 +-
 4 files changed, 53 insertions(+), 5 deletions(-)

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] 02/02: make module name element capitalisations consistent

2021-04-28 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git

commit 961ea785f9fb078c31d0bb44d7d5bc700a812ce5
Author: Robbie Gemmell 
AuthorDate: Wed Apr 28 14:30:49 2021 +0100

make module name element capitalisations consistent
---
 protonj2/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/protonj2/pom.xml b/protonj2/pom.xml
index 45e5af3..ecceb46 100644
--- a/protonj2/pom.xml
+++ b/protonj2/pom.xml
@@ -24,7 +24,7 @@
   4.0.0
 
   protonj2
-  Qpid ProtonJ2 AMQP protocol library
+  Qpid ProtonJ2 AMQP Protocol Library
   AMQP 1.0 protocol engine and codec library
   bundle
 

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] 01/02: gate off the JMH perf tests module from main build, require it be enabled or built directly

2021-04-28 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git

commit 1fedf3dde025a10515634b11822e40b8bd3f7f75
Author: Robbie Gemmell 
AuthorDate: Wed Apr 28 14:29:37 2021 +0100

gate off the JMH perf tests module from main build, require it be enabled 
or built directly
---
 pom.xml  | 16 ++-
 protonj2-performance-tests/README.md |  2 --
 protonj2-performance-tests/pom.xml   | 38 +++-
 3 files changed, 52 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index b6256c8..e2499e5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -83,7 +83,6 @@
 
   
 protonj2
-protonj2-performance-tests
 protonj2-test-driver
 protonj2-client
 protonj2-client-examples
@@ -333,6 +332,8 @@
   
 true
 @{project.version}
+-Papache-release -Dperform-release-checks=true 
${arguments}
+true
   
 
 
@@ -374,6 +375,19 @@
   
 
   
+  
+  
+protonj2-performance-tests
+  
+
+
+
+  performance-jmh
+  
+protonj2-performance-tests
+  
 
 
 
diff --git a/protonj2-performance-tests/README.md 
b/protonj2-performance-tests/README.md
index bbb122a..a0d2c97 100644
--- a/protonj2-performance-tests/README.md
+++ b/protonj2-performance-tests/README.md
@@ -10,8 +10,6 @@ within the overall build by using the 'performance-jmh' maven 
profile.
 Building the benchmarks
 ---
 
-TODO - Currently just part of the build with deploy disabled.
-
 The benchmarks are maven built and involve some code generation for the JMH 
part. As such it is required that you
 rebuild upon changing the code. As the codebase is small it is recommended 
that you do this from the project
 root folder to avoid missing any changes from other modules.
diff --git a/protonj2-performance-tests/pom.xml 
b/protonj2-performance-tests/pom.xml
index 0a12d70..f704c2c 100644
--- a/protonj2-performance-tests/pom.xml
+++ b/protonj2-performance-tests/pom.xml
@@ -24,7 +24,7 @@
   
 
   protonj2-performance-tests
-  Qpid ProtonJ2 JMH performance tests
+  Qpid ProtonJ2 JMH Performance Tests
   JMH Tests for the ProtonJ2 library
   jar
 
@@ -85,4 +85,40 @@
 
   
 
+  
+
+  perform-release-checks
+  
+
+  perform-release-checks
+  true
+
+  
+  
+
+  
+org.apache.maven.plugins
+maven-enforcer-plugin
+
+  
+enforce-release-version
+
+enforce
+
+
+  
+
+  Module still has a SNAPSHOT version! Ensure 
release is prepared using "mvn release:prepare -Papache-release"
+  
+
+  
+  true
+
+  
+
+  
+
+  
+
+  
 

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] 02/02: fix up some issues from RAT check

2021-04-22 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git

commit 97ce9f1f7b9bf57d655ccdb5591730010a085001
Author: Robbie Gemmell 
AuthorDate: Thu Apr 22 17:09:58 2021 +0100

fix up some issues from RAT check
---
 pom.xml  |  5 ++---
 .../apache/qpid/protonj2/client/impl/ReceiverTest.java   | 16 
 .../org/apache/qpid/protonj2/client/impl/SenderTest.java | 16 
 3 files changed, 34 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index f27b53b..5d83a50 100644
--- a/pom.xml
+++ b/pom.xml
@@ -234,9 +234,8 @@
 apache-rat-plugin
 
   
-appveyor.yml
-.travis.yml
-.mailmap
+.github/workflows/*.yml
+**/version.txt
 **/*.md
 **/*.pkcs12
 **/*.p12
diff --git 
a/protonj2-client/src/test/java/org/apache/qpid/protonj2/client/impl/ReceiverTest.java
 
b/protonj2-client/src/test/java/org/apache/qpid/protonj2/client/impl/ReceiverTest.java
index d24bd59..8a16d88 100644
--- 
a/protonj2-client/src/test/java/org/apache/qpid/protonj2/client/impl/ReceiverTest.java
+++ 
b/protonj2-client/src/test/java/org/apache/qpid/protonj2/client/impl/ReceiverTest.java
@@ -1,3 +1,19 @@
+/*
+ * 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.qpid.protonj2.client.impl;
 
 import static org.hamcrest.CoreMatchers.notNullValue;
diff --git 
a/protonj2-client/src/test/java/org/apache/qpid/protonj2/client/impl/SenderTest.java
 
b/protonj2-client/src/test/java/org/apache/qpid/protonj2/client/impl/SenderTest.java
index de4a3a0..4bf5c09 100644
--- 
a/protonj2-client/src/test/java/org/apache/qpid/protonj2/client/impl/SenderTest.java
+++ 
b/protonj2-client/src/test/java/org/apache/qpid/protonj2/client/impl/SenderTest.java
@@ -1,3 +1,19 @@
+/*
+ * 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.qpid.protonj2.client.impl;
 
 import static org.hamcrest.CoreMatchers.notNullValue;

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] branch main updated (c8d1b47 -> 97ce9f1)

2021-04-22 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git.


from c8d1b47  fix names of archives
 new 200d567  split out Javadoc to their own step, add RAT check step
 new 97ce9f1  fix up some issues from RAT check

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/build.yml  | 10 --
 pom.xml  |  5 ++---
 .../apache/qpid/protonj2/client/impl/ReceiverTest.java   | 16 
 .../org/apache/qpid/protonj2/client/impl/SenderTest.java | 16 
 4 files changed, 42 insertions(+), 5 deletions(-)

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] 01/02: split out Javadoc to their own step, add RAT check step

2021-04-22 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git

commit 200d567b971b70d9abcc45c53d675c3f4f4b5ece
Author: Robbie Gemmell 
AuthorDate: Thu Apr 22 17:01:07 2021 +0100

split out Javadoc to their own step, add RAT check step
---
 .github/workflows/build.yml | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 37b0691..796bd09 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -24,5 +24,11 @@ jobs:
   java-version: ${{ matrix.java }}
   distribution: 'adopt'
 
-  - name: Build
-run: mvn clean verify -Papache-release -Dgpg.skip
+  - name: Build & Test
+run: mvn clean verify
+
+  - name: Javadoc etc
+run: mvn clean verify -Papache-release -Dgpg.skip -DskipTests
+
+  - name: RAT check
+run: mvn clean -Papache-release apache-rat:check

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] branch main updated: fix names of archives

2021-04-22 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git


The following commit(s) were added to refs/heads/main by this push:
 new c8d1b47  fix names of archives
c8d1b47 is described below

commit c8d1b47fc07d26a7c256d47f98247d4f143d6e62
Author: Robbie Gemmell 
AuthorDate: Thu Apr 22 16:02:05 2021 +0100

fix names of archives
---
 apache-qpid-protonj2/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/apache-qpid-protonj2/pom.xml b/apache-qpid-protonj2/pom.xml
index b00bd86..00f3b90 100644
--- a/apache-qpid-protonj2/pom.xml
+++ b/apache-qpid-protonj2/pom.xml
@@ -107,8 +107,8 @@
 
   ${project.build.directory}
   
-
apache-qpid-jms-${project.version}-src.tar.gz
-
apache-qpid-jms-${project.version}-bin.tar.gz
+
apache-qpid-protonj2-${project.version}-src.tar.gz
+
apache-qpid-protonj2-${project.version}-bin.tar.gz
   
 
   

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] branch main updated: fix some javadoc errors

2021-04-22 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git


The following commit(s) were added to refs/heads/main by this push:
 new bf3459a  fix some javadoc errors
bf3459a is described below

commit bf3459aa01d0537f8611a265c1fa362741b780f8
Author: Robbie Gemmell 
AuthorDate: Thu Apr 22 14:48:17 2021 +0100

fix some javadoc errors
---
 .../apache/qpid/protonj2/client/StreamSenderMessage.java  |  3 ---
 .../protonj2/client/impl/ClientTransactionContext.java|  3 +--
 .../qpid/protonj2/types/transport/ConnectionError.java| 11 +--
 .../apache/qpid/protonj2/types/transport/LinkError.java   | 15 +++
 4 files changed, 13 insertions(+), 19 deletions(-)

diff --git 
a/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/StreamSenderMessage.java
 
b/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/StreamSenderMessage.java
index 8cfbed3..15c89df 100644
--- 
a/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/StreamSenderMessage.java
+++ 
b/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/StreamSenderMessage.java
@@ -80,9 +80,6 @@ public interface StreamSenderMessage extends 
AdvancedMessage {
  * Marks the currently streaming message as being aborted. Once aborted no 
further
  * writes regardless of whether any writes have yet been performed or not.
  *
- * @param aborted
- *  Should the message be marked as having been aborted.
- *
  * @return this {@link StreamSenderMessage} instance.
  *
  * @throws ClientException if an error occurs while initiating the abort 
operation.
diff --git 
a/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/impl/ClientTransactionContext.java
 
b/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/impl/ClientTransactionContext.java
index b0af3de..be7c8c7 100644
--- 
a/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/impl/ClientTransactionContext.java
+++ 
b/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/impl/ClientTransactionContext.java
@@ -51,8 +51,7 @@ public interface ClientTransactionContext {
  * @param startNew
  *  Should the context immediately initiate a new transaction
  *
- * @return this {@@Override
-link ClientTransactionContext} instance.
+ * @return this {@link ClientTransactionContext} instance.
  *
  * @throws ClientIllegalStateException if an error occurs do to the 
transaction state.
  */
diff --git 
a/protonj2/src/main/java/org/apache/qpid/protonj2/types/transport/ConnectionError.java
 
b/protonj2/src/main/java/org/apache/qpid/protonj2/types/transport/ConnectionError.java
index b331e1b..8cbd8f7 100644
--- 
a/protonj2/src/main/java/org/apache/qpid/protonj2/types/transport/ConnectionError.java
+++ 
b/protonj2/src/main/java/org/apache/qpid/protonj2/types/transport/ConnectionError.java
@@ -35,20 +35,19 @@ public interface ConnectionError {
  * attempt reconnection to the container using the details provided in the 
info map.
  * 
  * 
- *   hostname
+ *   hostname:
  * 
  *   the hostname of the container hosting the terminus. This is 
the value that SHOULD be
  *   supplied in the hostname field of the open frame, and during 
SASL and TLS negotiation
  *   (if used).
- *   
  * 
- *   network-host
+ *   network-host:
  * 
- *   the DNS hostname or IP address of the machine hosting the 
container.
+ *   the DNS hostname or IP address of the machine hosting the 
container.
  * 
- *   port
+ *   port:
  * 
- *   the port number on the machine hosting the container.
+ *   the port number on the machine hosting the container.
  * 
  * 
  */
diff --git 
a/protonj2/src/main/java/org/apache/qpid/protonj2/types/transport/LinkError.java
 
b/protonj2/src/main/java/org/apache/qpid/protonj2/types/transport/LinkError.java
index f2e31a9..533e390 100644
--- 
a/protonj2/src/main/java/org/apache/qpid/protonj2/types/transport/LinkError.java
+++ 
b/protonj2/src/main/java/org/apache/qpid/protonj2/types/transport/LinkError.java
@@ -40,24 +40,23 @@ public interface LinkError {
  * MAY contain the following information to allow the client to locate the 
attach to the terminus.
  * 
  * 
- *   hostname
+ *   hostname:
  * 
  *   the hostname of the container hosting the terminus. This is 
the value that SHOULD be
  *   supplied in the hostname field of the open frame, and during 
SASL and TLS negotiation
  *   (if used).
- *   
  * 
- *   network-host
+ *   network-host:
  * 
- *   the DNS hostname or IP address of the machine hosting the 
container.
+ *   the DNS hostname or IP address of the machine

[qpid-protonj2] 03/03: update name/description field capitalisations

2021-04-22 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git

commit 2f5b5dbbd2fb0b6a86a26aad06cea9f4154b7521
Author: Robbie Gemmell 
AuthorDate: Thu Apr 22 13:38:23 2021 +0100

update name/description field capitalisations
---
 apache-qpid-protonj2/pom.xml   | 2 +-
 pom.xml| 6 +++---
 protonj2-client-docs/pom.xml   | 2 +-
 protonj2-client-examples/pom.xml   | 2 +-
 protonj2-client/pom.xml| 2 +-
 protonj2-performance-tests/pom.xml | 6 +++---
 protonj2-test-driver/pom.xml   | 4 ++--
 protonj2/pom.xml   | 2 +-
 8 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/apache-qpid-protonj2/pom.xml b/apache-qpid-protonj2/pom.xml
index 214b461..b00bd86 100644
--- a/apache-qpid-protonj2/pom.xml
+++ b/apache-qpid-protonj2/pom.xml
@@ -25,7 +25,7 @@
 
   apache-qpid-protonj2
   pom
-  Apache Qpid protonj2
+  Apache Qpid ProtonJ2
 
   
 
diff --git a/pom.xml b/pom.xml
index 5921e0f..f27b53b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,8 +28,8 @@
   1.0.0-SNAPSHOT
   pom
 
-  Qpid protonj2 Parent
-  Qpid protonj2 is a library for speaking AMQP 1.0.
+  Qpid ProtonJ2 Parent
+  Qpid ProtonJ2 is a library for speaking AMQP 1.0.
 
   
 11
@@ -78,7 +78,7 @@
 JIRA
   
   
-https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-protonj2/
+https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-ProtonJ2/
   
 
   
diff --git a/protonj2-client-docs/pom.xml b/protonj2-client-docs/pom.xml
index e3fe536..f6b47d4 100644
--- a/protonj2-client-docs/pom.xml
+++ b/protonj2-client-docs/pom.xml
@@ -24,7 +24,7 @@
 
   protonj2-client-docs
   pom
-  Qpid protonj2 Client Documentation
+  Qpid ProtonJ2 Client Documentation
 
   
 true
diff --git a/protonj2-client-examples/pom.xml b/protonj2-client-examples/pom.xml
index 7e45118..bd0228f 100644
--- a/protonj2-client-examples/pom.xml
+++ b/protonj2-client-examples/pom.xml
@@ -24,7 +24,7 @@
   
 
   protonj2-client-examples
-  Qpid protonj2 Client Examples
+  Qpid ProtonJ2 Client Examples
   Examples showing the use of the AMQP client
   jar
 
diff --git a/protonj2-client/pom.xml b/protonj2-client/pom.xml
index 3795925..66c5c1b 100644
--- a/protonj2-client/pom.xml
+++ b/protonj2-client/pom.xml
@@ -26,7 +26,7 @@
   
 
   protonj2-client
-  Qpid protonj2 Client Library
+  Qpid ProtonJ2 Client Library
   Imperative API for AMQP Messaging.
   jar
 
diff --git a/protonj2-performance-tests/pom.xml 
b/protonj2-performance-tests/pom.xml
index 7fc1b6a..0a12d70 100644
--- a/protonj2-performance-tests/pom.xml
+++ b/protonj2-performance-tests/pom.xml
@@ -24,8 +24,8 @@
   
 
   protonj2-performance-tests
-  Qpid protonj2 JMH performance tests
-  JMH Tests for the protonj2 library
+  Qpid ProtonJ2 JMH performance tests
+  JMH Tests for the ProtonJ2 library
   jar
 
   
@@ -85,4 +85,4 @@
 
   
 
-
\ No newline at end of file
+
diff --git a/protonj2-test-driver/pom.xml b/protonj2-test-driver/pom.xml
index 76acdc9..9b15cfd 100644
--- a/protonj2-test-driver/pom.xml
+++ b/protonj2-test-driver/pom.xml
@@ -25,7 +25,7 @@
 
   protonj2-test-driver
   jar
-  Qpid protonj2 AMQP Test Driver
+  Qpid ProtonJ2 AMQP Test Driver
 
   
 
@@ -85,4 +85,4 @@
 
   
 
-
\ No newline at end of file
+
diff --git a/protonj2/pom.xml b/protonj2/pom.xml
index 0206097..45e5af3 100644
--- a/protonj2/pom.xml
+++ b/protonj2/pom.xml
@@ -24,7 +24,7 @@
   4.0.0
 
   protonj2
-  Qpid protonj2 AMQP protocol library
+  Qpid ProtonJ2 AMQP protocol library
   AMQP 1.0 protocol engine and codec library
   bundle
 

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] 01/03: add enforcer check to make it clear why the build fails if run not using Java 11+

2021-04-22 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git

commit 7899392dc8d0fff2cc0465e2672a00bd81bd39ef
Author: Robbie Gemmell 
AuthorDate: Thu Apr 22 13:30:16 2021 +0100

add enforcer check to make it clear why the build fails if run not using 
Java 11+
---
 pom.xml | 21 +
 1 file changed, 21 insertions(+)

diff --git a/pom.xml b/pom.xml
index 1cd76c0..5921e0f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,6 +51,7 @@
 
 5.1.1
 0.8.6
+3.0.0-M3
 
 
 
true
@@ -309,6 +310,26 @@
 
 
   org.apache.maven.plugins
+  maven-enforcer-plugin
+  ${maven.enforcer.plugin.version}
+  
+
+  enforce-java-version
+  
+enforce
+  
+  
+
+  
+[11,)
+  
+
+  
+
+  
+
+
+  org.apache.maven.plugins
   maven-release-plugin
   
 true

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] branch main updated (567b1c2 -> 2f5b5db)

2021-04-22 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git.


from 567b1c2  Update project version to 1.0.0-SNAPSHOT
 new 7899392  add enforcer check to make it clear why the build fails if 
run not using Java 11+
 new 0052bca  update GHA build config a bit, tweak build command to ensure 
javadoc is processed also
 new 2f5b5db  update name/description field capitalisations

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/{maven.yml => build.yml} | 10 --
 apache-qpid-protonj2/pom.xml   |  2 +-
 pom.xml| 27 ---
 protonj2-client-docs/pom.xml   |  2 +-
 protonj2-client-examples/pom.xml   |  2 +-
 protonj2-client/pom.xml|  2 +-
 protonj2-performance-tests/pom.xml |  6 +++---
 protonj2-test-driver/pom.xml   |  4 ++--
 protonj2/pom.xml   |  2 +-
 9 files changed, 38 insertions(+), 19 deletions(-)
 rename .github/workflows/{maven.yml => build.yml} (65%)

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] 02/03: update GHA build config a bit, tweak build command to ensure javadoc is processed also

2021-04-22 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git

commit 0052bcac6fe155d07c41cedbd11b144af4ec8644
Author: Robbie Gemmell 
AuthorDate: Thu Apr 22 13:31:05 2021 +0100

update GHA build config a bit, tweak build command to ensure javadoc is 
processed also
---
 .github/workflows/{maven.yml => build.yml} | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/build.yml
similarity index 65%
rename from .github/workflows/maven.yml
rename to .github/workflows/build.yml
index 78bb807..37b0691 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/build.yml
@@ -1,9 +1,6 @@
-# This workflow will build a Java project with Maven
-# For more information see: 
https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
-
 name: "Build"
 
-on: [push, pull_request]
+on: [push, pull_request, workflow_dispatch]
 
 jobs:
   build:
@@ -22,9 +19,10 @@ jobs:
   restore-keys: |
 ${{ runner.os }}-maven-
   - name: Install JDK ${{ matrix.java }}
-uses: actions/setup-java@v1
+uses: actions/setup-java@v2
 with:
   java-version: ${{ matrix.java }}
+  distribution: 'adopt'
 
   - name: Build
-run: mvn -B clean verify
+run: mvn clean verify -Papache-release -Dgpg.skip

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] branch main updated: remove unused ci config

2021-04-21 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git


The following commit(s) were added to refs/heads/main by this push:
 new 5445cd7  remove unused ci config
5445cd7 is described below

commit 5445cd70ac86d652d8fc69f94fd2a2a97e604287
Author: Robbie Gemmell 
AuthorDate: Wed Apr 21 17:13:35 2021 +0100

remove unused ci config
---
 appveyor.yml | 35 ---
 1 file changed, 35 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 836eece..000
--- a/appveyor.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-version: '{build}'
-skip_tags: true
-clone_depth: 30
-
-environment:
-  JAVA_HOME: C:\Program Files\Java\jdk1.8.0
-
-install:
-  - cmd: SET PATH=%JAVA_HOME%\bin;%PATH%
-
-build_script:
-  - mvn clean install -B -DskipTests
-
-test_script:
-  - mvn clean install -B
-
-on_failure:
-  - ps: |
-  7z a -r surefire-reports.zip '**\target\surefire-reports\*'
-  Push-AppveyorArtifact surefire-reports.zip -DeploymentName 'Surefire 
Reports'
-
-on_finish:
-  - ps: |
-  $url = 
"https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)"
-  $wc = New-Object 'System.Net.WebClient'
-  $dirs = Get-ChildItem -Filter surefire-reports -Recurse
-  ForEach ($dir in $dirs)
-  {
-$files = Get-ChildItem -Path $dir.FullName -Filter TEST-*.xml
-ForEach ($file in $files)
-{
-  $wc.UploadFile($url, (Resolve-Path $file.FullName))
-}
-  }
-

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-protonj2] branch main updated: update NOTICE files

2021-04-21 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git


The following commit(s) were added to refs/heads/main by this push:
 new d9e123c  update NOTICE files
d9e123c is described below

commit d9e123c1b70ee82f6b6125960cd491d3b5b68a60
Author: Robbie Gemmell 
AuthorDate: Wed Apr 21 16:46:44 2021 +0100

update NOTICE files
---
 NOTICE| 4 ++--
 apache-qpid-protonj2/src/main/assembly/NOTICE | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/NOTICE b/NOTICE
index ac2b343..a3210a9 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
-Apache Qpid Proton4J
-Copyright 2012-2021 The Apache Software Foundation
+Apache Qpid ProtonJ2
+Copyright 2020-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/apache-qpid-protonj2/src/main/assembly/NOTICE 
b/apache-qpid-protonj2/src/main/assembly/NOTICE
index ac2b343..a3210a9 100644
--- a/apache-qpid-protonj2/src/main/assembly/NOTICE
+++ b/apache-qpid-protonj2/src/main/assembly/NOTICE
@@ -1,5 +1,5 @@
-Apache Qpid Proton4J
-Copyright 2012-2021 The Apache Software Foundation
+Apache Qpid ProtonJ2
+Copyright 2020-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch asf-site updated: various updates to download link handling:

2021-04-21 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 8ff8322  various updates to download link handling:
8ff8322 is described below

commit 8ff83228171371f5cbb018fc63a9f5ed47dafa6f
Author: Robbie Gemmell 
AuthorDate: Wed Apr 21 11:58:06 2021 +0100

various updates to download link handling:

- Use downloads.apache.org for sig and checksum links.
- Use direct-download link variant for mirrored files.
- Use https links for current release archived and mirrored file links.
- Update latest release pages, generator scripts, and mirror link 
replacement script accordingly.
---
 content/components/messaging-api/index.html|  2 +-
 content/deferred.js| 12 +++
 content/download.html  | 24 +++---
 content/releases/qpid-broker-j-8.0.4/index.html|  8 
 content/releases/qpid-cpp-1.39.0/index.html|  2 +-
 content/releases/qpid-dispatch-1.15.0/index.html   |  4 ++--
 .../releases/qpid-interop-test-0.2.0/index.html|  4 ++--
 content/releases/qpid-jms-0.58.0/index.html|  6 +++---
 .../releases/qpid-jms-amqp-0-x-6.4.0/index.html|  8 
 content/releases/qpid-proton-0.34.0/index.html |  4 ++--
 content/releases/qpid-proton-j-0.33.8/index.html   |  6 +++---
 content/releases/qpid-python-1.37.0/index.html |  4 ++--
 input/components/messaging-api/index.md|  2 +-
 input/deferred.js  | 12 +++
 input/download.md  | 24 +++---
 input/releases/qpid-broker-j-8.0.4/index.md|  8 
 input/releases/qpid-cpp-1.39.0/index.md|  2 +-
 input/releases/qpid-dispatch-1.15.0/index.md   |  4 ++--
 input/releases/qpid-interop-test-0.2.0/index.md|  4 ++--
 input/releases/qpid-jms-0.58.0/index.md|  6 +++---
 input/releases/qpid-jms-amqp-0-x-6.4.0/index.md|  8 
 input/releases/qpid-proton-0.34.0/index.md |  4 ++--
 input/releases/qpid-proton-j-0.33.8/index.md   |  6 +++---
 input/releases/qpid-python-1.37.0/index.md |  4 ++--
 scripts/gen-broker-j-release-page  | 18 +++-
 scripts/gen-cpp-release-page   | 12 +--
 scripts/gen-dispatch-release-page  | 10 -
 scripts/gen-interop-test-release-page  | 12 +--
 scripts/gen-jms-amqp-0-x-release-page  | 10 -
 scripts/gen-jms-release-page   | 10 -
 scripts/gen-proton-j-release-page  | 10 -
 scripts/gen-proton-release-page| 12 +--
 scripts/gen-python-release-page| 12 +--
 33 files changed, 132 insertions(+), 142 deletions(-)

diff --git a/content/components/messaging-api/index.html 
b/content/components/messaging-api/index.html
index b18ce5a..0b83126 100644
--- a/content/components/messaging-api/index.html
+++ b/content/components/messaging-api/index.html
@@ -123,7 +123,7 @@ platforms.
 Languages - C++, Python 2
 Platforms - Linux, Windows
 AMQP versions - C++: 1.0, 0-10, Python: 0-10
-Downloads - C++, bindings: http://www.apache.org/dyn/closer.lua/qpid/cpp/1.39.0/qpid-cpp-1.39.0.tar.gz;>qpid-cpp-1.39.0.tar.gz
 [https://www.apache.org/dist/qpid/cpp/1.39.0/qpid-cpp-1.39.0.tar.gz.asc;>ASC,
 https://www.apache.org/dist/qpid/cpp/1.39.0/qpid-cpp-1.39.0.tar.gz.sha512;>SHA512],Python:
 http://www.apache.org/dyn/closer.lua/qpid/python/1.37.0/qpid-python-1.37.0.tar.gz;>qpid-python-1.37.0.tar.gz
 [https://www.apache.org/dyn/closer.lua?filename=qpid/cpp/1.39.0/qpid-cpp-1.39.0.tar.gzaction=download;>qpid-cpp-1.39.0.tar.gz
 [https://downloads.apache.org/qpid/cpp/1.39.0/qpid-cpp-1.39.0.tar.gz.asc;>ASC,
 https://downloads.apache.org/qpid/cpp/1.39.0/qpid-cpp-1.39.0.tar.gz.sha512;>SHA512],Python:
 https://www.apache.org/dyn/closer.lua?filename=qpid/python/1.37.0/qpid-python-1.37.0.tar.gzac
 [...]
 Source location -  https://gitbox.apache.org/repos/asf/qpid-cpp.git;>https://gitbox.apache.org/repos/asf/qpid-cpp.git,
 https://gitbox.apache.org/repos/asf/qpid-python.git;>https://gitbox.apache.org/repos/asf/qpid-python.git
 
 
diff --git a/content/deferred.js b/content/deferred.js
index 7bd299a..d1788f0 100644
--- a/content/deferred.js
+++ b/content/deferred.js
@@ -409,12 +409,16 @@ function _modifyCurrentReleaseLinks() {
 var ext = href.substring(href.length - 4)
 var ext7 = href.substring(href.length - 7)
 
-if (ext === ".asc" || ext === ".md5" || ext === "sha1" || ext === 
".sha" || ext7 === ".sha512") {
+if (ext === ".asc" || ext7 

[qpid-site] branch asf-site updated: update site for qpid-jms-0.58.0

2021-04-14 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new d308528  update site for qpid-jms-0.58.0
d308528 is described below

commit d3085280bf1277078b61e6ce119c70d9b7eb0cdf
Author: Robbie Gemmell 
AuthorDate: Wed Apr 14 10:52:43 2021 +0100

update site for qpid-jms-0.58.0
---
 content/components/jms/index.html  |   8 +-
 content/dashboard.html |   2 +-
 content/documentation.html |   4 +-
 content/download.html  |   6 +-
 content/maven.html |   2 +-
 content/releases/index.html|   3 +-
 content/releases/qpid-jms-0.24.0/index.html|   2 +-
 content/releases/qpid-jms-0.25.0/index.html|   2 +-
 content/releases/qpid-jms-0.26.0/index.html|   2 +-
 content/releases/qpid-jms-0.27.0/index.html|   2 +-
 content/releases/qpid-jms-0.28.0/index.html|   2 +-
 content/releases/qpid-jms-0.29.0/index.html|   2 +-
 content/releases/qpid-jms-0.30.0/index.html|   2 +-
 content/releases/qpid-jms-0.31.0/index.html|   2 +-
 content/releases/qpid-jms-0.32.0/index.html|   2 +-
 content/releases/qpid-jms-0.33.0/index.html|   2 +-
 content/releases/qpid-jms-0.34.0/index.html|   2 +-
 content/releases/qpid-jms-0.35.0/index.html|   2 +-
 content/releases/qpid-jms-0.36.0/index.html|   2 +-
 content/releases/qpid-jms-0.37.0/index.html|   2 +-
 content/releases/qpid-jms-0.38.0/index.html|   2 +-
 content/releases/qpid-jms-0.39.0/index.html|   2 +-
 content/releases/qpid-jms-0.40.0/index.html|   2 +-
 content/releases/qpid-jms-0.41.0/index.html|   2 +-
 content/releases/qpid-jms-0.42.0/index.html|   2 +-
 content/releases/qpid-jms-0.43.0/index.html|   2 +-
 content/releases/qpid-jms-0.44.0/index.html|   2 +-
 content/releases/qpid-jms-0.45.0/index.html|   2 +-
 content/releases/qpid-jms-0.46.0/index.html|   2 +-
 content/releases/qpid-jms-0.47.0/index.html|   2 +-
 content/releases/qpid-jms-0.48.0/index.html|   2 +-
 content/releases/qpid-jms-0.49.0/index.html|   2 +-
 content/releases/qpid-jms-0.50.0/index.html|   2 +-
 content/releases/qpid-jms-0.51.0/index.html|   2 +-
 content/releases/qpid-jms-0.52.0/index.html|   2 +-
 content/releases/qpid-jms-0.53.0/index.html|   2 +-
 content/releases/qpid-jms-0.54.0/index.html|   2 +-
 content/releases/qpid-jms-0.55.0/index.html|   2 +-
 content/releases/qpid-jms-0.56.0/index.html|   2 +-
 content/releases/qpid-jms-0.57.0/index.html|   2 +-
 .../qpid-jms-0.58.0/building.html} |  99 ++--
 content/releases/qpid-jms-0.58.0/docs/index.html   | 584 +
 .../index.html |  24 +-
 .../qpid-jms-0.58.0/release-notes.html}|  72 +--
 input/_transom_config.py   |   2 +-
 input/releases/index.md|   3 +-
 input/releases/qpid-jms-0.58.0/building.md |  46 ++
 input/releases/qpid-jms-0.58.0/docs/index.md   | 386 ++
 input/releases/qpid-jms-0.58.0/index.md|  68 +++
 input/releases/qpid-jms-0.58.0/release-notes.md|  45 ++
 50 files changed, 1271 insertions(+), 151 deletions(-)

diff --git a/content/components/jms/index.html 
b/content/components/jms/index.html
index 8ccc385..696e444 100644
--- a/content/components/jms/index.html
+++ b/content/components/jms/index.html
@@ -147,9 +147,9 @@ API
 
 
 http://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html;>API 
reference
-https://github.com/apache/qpid-jms/tree/0.57.0/qpid-jms-examples;>Examples
-Configuration
-Building Qpid 
JMS
+https://github.com/apache/qpid-jms/tree/0.58.0/qpid-jms-examples;>Examples
+Configuration
+Building Qpid 
JMS
 
 
 
@@ -163,7 +163,7 @@ API
 Releases
 
 
-Qpid JMS 0.57.0
+Qpid JMS 0.58.0
 Past releases
 
 
diff --git a/content/dashboard.html b/content/dashboard.html
index 1664908..afe03ac 100644
--- a/content/dashboard.html
+++ b/content/dashboard.html
@@ -169,7 +169,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
 
 
   Qpid JMS
-  0.57.0
+  0.58.0
   https://issues.apache.org/jira/projects/QPIDJMS;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS+and+resolution+is+null;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS;>All 
issues  https://issues.apache.org/jira/secure/CreateIssue!default.jspa?pid=12314524;>Create
 issue
   https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8/activity;>https://builds

svn commit: r47030 - /release/qpid/jms/0.58.0/

2021-04-13 Thread robbie
Author: robbie
Date: Tue Apr 13 08:53:32 2021
New Revision: 47030

Log:
add files for qpid-jms 0.58.0

Added:
release/qpid/jms/0.58.0/
  - copied from r47029, dev/qpid/jms/0.58.0-rc1/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r47031 - /release/qpid/jms/0.56.0/

2021-04-13 Thread robbie
Author: robbie
Date: Tue Apr 13 08:53:58 2021
New Revision: 47031

Log:
clean out older release

Removed:
release/qpid/jms/0.56.0/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r46990 - /release/qpid/proton/0.32.0/

2021-04-12 Thread robbie
Author: robbie
Date: Mon Apr 12 08:24:19 2021
New Revision: 46990

Log:
clean out older release

Removed:
release/qpid/proton/0.32.0/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r46989 - /release/qpid/proton/0.34.0/

2021-04-12 Thread robbie
Author: robbie
Date: Mon Apr 12 08:23:31 2021
New Revision: 46989

Log:
add files for qpid-proton 0.34.0

Added:
release/qpid/proton/0.34.0/
  - copied from r46988, dev/qpid/proton/0.34.0-rc1/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton] annotated tag 0.34.0 created (now 73757eb)

2021-04-12 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to annotated tag 0.34.0
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git.


  at 73757eb  (tag)
 tagging 8697e8b0230bb3e3112d1523378d1eb0c17f2296 (commit)
 replaces 0.33.0
  by Robbie Gemmell
  on Mon Apr 12 09:19:46 2021 +0100

- Log -
Release 0.34.0
---

No new revisions were added by this update.

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r46891 - /dev/qpid/jms/0.58.0-rc1/

2021-04-06 Thread robbie
Author: robbie
Date: Tue Apr  6 16:27:52 2021
New Revision: 46891

Log:
add files for qpid-jms-0.58.0 (RC1)

Added:
dev/qpid/jms/0.58.0-rc1/
dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz   (with props)
dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz.asc   (with props)
dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz.sha512
dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz   (with props)
dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz.asc   (with props)
dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz.sha512

Added: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz
--
svn:mime-type = application/gzip

Added: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz.asc
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz.sha512
==
--- dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-bin.tar.gz.sha512 Tue Apr  6 
16:27:52 2021
@@ -0,0 +1 @@
+f2a8f217f240a2b4c0e1d050974ad7a390352d9d6f093397048aa3175a8a82a48d07e57707c1f594a65ee92f58482359fe0d549c6e68263001af9e3dea1185bb
  apache-qpid-jms-0.58.0-bin.tar.gz

Added: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz
--
svn:mime-type = application/gzip

Added: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz.asc
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz.sha512
==
--- dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.58.0-rc1/apache-qpid-jms-0.58.0-src.tar.gz.sha512 Tue Apr  6 
16:27:52 2021
@@ -0,0 +1 @@
+884821281916d2d44bafc2109e3ed433a06af279be3857afed81cddafdf9a3cdb171d769e3e15e8d3d7a277a61e1b18d128a48f1961ed5b81b74f50218d3bdb0
  apache-qpid-jms-0.58.0-src.tar.gz



-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch main updated: [maven-release-plugin] prepare for next development iteration

2021-04-06 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/main by this push:
 new d6d855e  [maven-release-plugin] prepare for next development iteration
d6d855e is described below

commit d6d855eed0791a65bc52b2a9137905086f89a451
Author: Robbie Gemmell 
AuthorDate: Tue Apr 6 16:41:04 2021 +0100

[maven-release-plugin] prepare for next development iteration
---
 apache-qpid-jms/pom.xml| 2 +-
 pom.xml| 4 ++--
 qpid-jms-client/pom.xml| 2 +-
 qpid-jms-discovery/pom.xml | 2 +-
 qpid-jms-docs/pom.xml  | 2 +-
 qpid-jms-examples/pom.xml  | 2 +-
 qpid-jms-interop-tests/pom.xml | 2 +-
 qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/apache-qpid-jms/pom.xml b/apache-qpid-jms/pom.xml
index 9ddb761..7bc243e 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0
+0.59.0-SNAPSHOT
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index 54f5e60..aa9bd8a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  0.58.0
+  0.59.0-SNAPSHOT
   pom
   QpidJMS
   2013
@@ -89,7 +89,7 @@
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 https://gitbox.apache.org/repos/asf?p=qpid-jms.git
-0.58.0
+HEAD
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index d2b7816..8546638 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0
+0.59.0-SNAPSHOT
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index 05ba104..d5ab071 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0
+0.59.0-SNAPSHOT
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index 9235166..d1730b1 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0
+0.59.0-SNAPSHOT
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index ff9fdea..5fd2b8a 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0
+0.59.0-SNAPSHOT
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index a1fa266..2a85877 100644
--- a/qpid-jms-interop-tests/pom.xml
+++ b/qpid-jms-interop-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0
+0.59.0-SNAPSHOT
   
 
   qpid-jms-interop-tests
diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml 
b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
index a9577ce..479bae4 100644
--- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
+++ b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-interop-tests
-0.58.0
+0.59.0-SNAPSHOT
   
 
   qpid-jms-activemq-tests

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] annotated tag 0.58.0 created (now 8bb80ee)

2021-04-06 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to annotated tag 0.58.0
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git.


  at 8bb80ee  (tag)
 tagging 19f32d1584c23c2d52ec947ea09634ba792c0c69 (commit)
 replaces 0.57.0
  by Robbie Gemmell
  on Tue Apr 6 16:40:55 2021 +0100

- Log -
[maven-release-plugin] copy for tag 0.58.0
---

No new revisions were added by this update.

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch main updated: [maven-release-plugin] prepare release 0.58.0

2021-04-06 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/main by this push:
 new 19f32d1  [maven-release-plugin] prepare release 0.58.0
19f32d1 is described below

commit 19f32d1584c23c2d52ec947ea09634ba792c0c69
Author: Robbie Gemmell 
AuthorDate: Tue Apr 6 16:39:31 2021 +0100

[maven-release-plugin] prepare release 0.58.0
---
 apache-qpid-jms/pom.xml| 2 +-
 pom.xml| 4 ++--
 qpid-jms-client/pom.xml| 2 +-
 qpid-jms-discovery/pom.xml | 2 +-
 qpid-jms-docs/pom.xml  | 2 +-
 qpid-jms-examples/pom.xml  | 2 +-
 qpid-jms-interop-tests/pom.xml | 2 +-
 qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/apache-qpid-jms/pom.xml b/apache-qpid-jms/pom.xml
index 7e0ade1..9ddb761 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0-SNAPSHOT
+0.58.0
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index 29f64fb..54f5e60 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  0.58.0-SNAPSHOT
+  0.58.0
   pom
   QpidJMS
   2013
@@ -89,7 +89,7 @@
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 https://gitbox.apache.org/repos/asf?p=qpid-jms.git
-HEAD
+0.58.0
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index 7a1c42c..d2b7816 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0-SNAPSHOT
+0.58.0
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index e6eda36..05ba104 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0-SNAPSHOT
+0.58.0
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index 6527bd2..9235166 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0-SNAPSHOT
+0.58.0
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index 77558e2..ff9fdea 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0-SNAPSHOT
+0.58.0
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index a2b4e4b..a1fa266 100644
--- a/qpid-jms-interop-tests/pom.xml
+++ b/qpid-jms-interop-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.58.0-SNAPSHOT
+0.58.0
   
 
   qpid-jms-interop-tests
diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml 
b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
index 7b0606e..a9577ce 100644
--- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
+++ b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-interop-tests
-0.58.0-SNAPSHOT
+0.58.0
   
 
   qpid-jms-activemq-tests

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r46890 - in /dev/qpid/proton/0.34.0-rc1: ./ qpid-proton-0.34.0.tar.gz qpid-proton-0.34.0.tar.gz.asc qpid-proton-0.34.0.tar.gz.sha512

2021-04-06 Thread robbie
Author: robbie
Date: Tue Apr  6 13:06:11 2021
New Revision: 46890

Log:
add files for qpid-proton-0.34.0 (RC1)

Added:
dev/qpid/proton/0.34.0-rc1/
dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz   (with props)
dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz.asc   (with props)
dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz.sha512

Added: dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz
==
Binary file - no diff available.

Propchange: dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz
--
svn:mime-type = application/gzip

Added: dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz.asc
==
Binary file - no diff available.

Propchange: dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz.sha512
==
--- dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz.sha512 (added)
+++ dev/qpid/proton/0.34.0-rc1/qpid-proton-0.34.0.tar.gz.sha512 Tue Apr  6 
13:06:11 2021
@@ -0,0 +1 @@
+6a72540b662ac121838d8cc32b9480e948f9953f87036c3bcb72d9e77b07ea41973ccd3c2513b64c56b4f53077708a893e42e13fd5792cf8c4bcbbc4d2384e23
  qpid-proton-0.34.0.tar.gz



-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton] annotated tag 0.34.0-rc1 created (now f7e913a)

2021-04-06 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to annotated tag 0.34.0-rc1
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git.


  at f7e913a  (tag)
 tagging 8697e8b0230bb3e3112d1523378d1eb0c17f2296 (commit)
 replaces 0.33.0
  by Robbie Gemmell
  on Tue Apr 6 12:11:49 2021 +0100

- Log -
tag 0.34.0-rc1
---

No new revisions were added by this update.

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton] 01/02: PROTON-2300: update versions for 0.34.0-rc1

2021-04-06 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git

commit 8697e8b0230bb3e3112d1523378d1eb0c17f2296
Author: Robbie Gemmell 
AuthorDate: Tue Apr 6 12:11:17 2021 +0100

PROTON-2300: update versions for 0.34.0-rc1
---
 VERSION.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VERSION.txt b/VERSION.txt
index 556fb9c..85e60ed 100644
--- a/VERSION.txt
+++ b/VERSION.txt
@@ -1 +1 @@
-0.34.0-SNAPSHOT
+0.34.0

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton] branch main updated (0217dc4 -> 19ae83a)

2021-04-06 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git.


from 0217dc4  PROTON-2354: Fix to the new destructors that works with C++03
 new 8697e8b  PROTON-2300: update versions for 0.34.0-rc1
 new 19ae83a  PROTON-2367, PROTON-2300: bump version to 0.35.0-SNAPSHOT

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 VERSION.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton] 02/02: PROTON-2367, PROTON-2300: bump version to 0.35.0-SNAPSHOT

2021-04-06 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git

commit 19ae83a1ef3ecf34c34aae72f2a6a878f138749c
Author: Robbie Gemmell 
AuthorDate: Tue Apr 6 13:12:06 2021 +0100

PROTON-2367, PROTON-2300: bump version to 0.35.0-SNAPSHOT
---
 VERSION.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VERSION.txt b/VERSION.txt
index 85e60ed..472ca81 100644
--- a/VERSION.txt
+++ b/VERSION.txt
@@ -1 +1 @@
-0.34.0
+0.35.0-SNAPSHOT

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] 02/02: update various bits to account for git repository branches being renamed to main

2021-04-05 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git

commit 48e3c02a0f3cf28ec344a0370799061e0109ba57
Author: Robbie Gemmell 
AuthorDate: Mon Apr 5 16:55:25 2021 +0100

update various bits to account for git repository branches being renamed to 
main
---
 Makefile|  2 +-
 content/components/broker-j/index.html  |  2 +-
 content/components/cpp-broker/index.html|  2 +-
 content/components/dispatch-router/index.html   |  1 -
 content/components/messaging-api/index.html |  4 ++--
 content/dashboard.html  | 17 -
 content/documentation.html  |  1 -
 content/electron/index.html |  2 +-
 content/proton/index.html   |  1 -
 .../messaging-api/cpp/examples/index.html   |  4 ++--
 .../messaging-api/cpp/examples/index.html   |  4 ++--
 .../messaging-api/cpp/examples/index.html   |  4 ++--
 content/releases/qpid-dispatch-1.0.0/release-notes.html |  4 ++--
 content/releases/qpid-dispatch-1.1.0/release-notes.html |  8 
 .../releases/qpid-dispatch-1.10.0/release-notes.html|  2 +-
 .../releases/qpid-dispatch-1.12.0/release-notes.html|  2 +-
 .../releases/qpid-dispatch-1.15.0/release-notes.html|  4 ++--
 content/releases/qpid-dispatch-1.3.0/release-notes.html |  2 +-
 content/releases/qpid-dispatch-1.5.0/release-notes.html |  2 +-
 content/releases/qpid-dispatch-1.6.0/release-notes.html |  4 ++--
 content/releases/qpid-dispatch-1.7.0/release-notes.html |  2 +-
 content/releases/qpid-dispatch-1.9.0/release-notes.html |  2 +-
 content/releases/qpid-proton-0.29.0/release-notes.html  |  2 +-
 input/_transom_config.py|  6 +++---
 input/components/broker-j/index.md  |  2 +-
 input/components/cpp-broker/index.md|  2 +-
 input/components/messaging-api/index.md |  4 ++--
 input/dashboard.md  |  4 ++--
 input/electron/index.md |  2 +-
 .../qpid-cpp-1.37.0/messaging-api/cpp/examples/index.md |  4 ++--
 .../qpid-cpp-1.38.0/messaging-api/cpp/examples/index.md |  4 ++--
 .../qpid-cpp-1.39.0/messaging-api/cpp/examples/index.md |  4 ++--
 input/releases/qpid-dispatch-1.0.0/release-notes.md |  6 +++---
 input/releases/qpid-dispatch-1.1.0/release-notes.md | 10 +-
 input/releases/qpid-dispatch-1.10.0/release-notes.md|  4 ++--
 input/releases/qpid-dispatch-1.12.0/release-notes.md|  2 +-
 input/releases/qpid-dispatch-1.15.0/release-notes.md|  6 +++---
 input/releases/qpid-dispatch-1.3.0/release-notes.md |  2 +-
 input/releases/qpid-dispatch-1.5.0/release-notes.md |  2 +-
 input/releases/qpid-dispatch-1.6.0/release-notes.md |  4 ++--
 input/releases/qpid-dispatch-1.7.0/release-notes.md |  2 +-
 input/releases/qpid-dispatch-1.9.0/release-notes.md |  4 ++--
 input/releases/qpid-proton-0.18.0/index.md  |  1 -
 input/releases/qpid-proton-0.18.1/index.md  |  1 -
 input/releases/qpid-proton-0.19.0/index.md  |  1 -
 input/releases/qpid-proton-0.20.0/index.md  |  1 -
 input/releases/qpid-proton-0.21.0/index.md  |  1 -
 input/releases/qpid-proton-0.22.0/index.md  |  3 +--
 input/releases/qpid-proton-0.23.0/index.md  |  3 +--
 input/releases/qpid-proton-0.24.0/index.md  |  3 +--
 input/releases/qpid-proton-0.25.0/index.md  |  3 +--
 input/releases/qpid-proton-0.26.0/index.md  |  3 +--
 input/releases/qpid-proton-0.27.0/index.md  |  3 +--
 input/releases/qpid-proton-0.27.1/index.md  |  3 +--
 input/releases/qpid-proton-0.28.0/index.md  |  3 +--
 input/releases/qpid-proton-0.29.0/index.md  |  3 +--
 input/releases/qpid-proton-0.29.0/release-notes.md  |  4 ++--
 input/releases/qpid-proton-0.30.0/index.md  |  3 +--
 input/releases/qpid-proton-0.31.0/index.md  |  3 +--
 input/releases/qpid-proton-0.32.0/index.md  |  3 +--
 input/releases/qpid-proton-0.33.0/index.md  |  3 +--
 python/generate.py  |  4 +++-
 scripts/gen-broker-j-release-notes  |  4 ++--
 scripts/gen-broker-j-release-page   |  6 +++---
 scripts/gen-cpp-release-docs|  4 ++--
 scripts/gen-cpp-release-notes   |  4 ++--
 scripts/gen-cpp-release-page| 10 +-
 scripts/gen-dispatch-release-notes  |  4 ++--
 scripts/gen-dispatch-release-page   | 12 ++--
 scripts/gen-interop

[qpid-proton] branch main updated: PROTON-2300: update .so versions after review

2021-04-05 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git


The following commit(s) were added to refs/heads/main by this push:
 new 9bf7b70  PROTON-2300: update .so versions after review
9bf7b70 is described below

commit 9bf7b7078d511b4fb51a5522a106b56c88db3740
Author: Robbie Gemmell 
AuthorDate: Mon Apr 5 12:26:00 2021 +0100

PROTON-2300: update .so versions after review
---
 c/versions.cmake   | 8 
 cpp/versions.cmake | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/c/versions.cmake b/c/versions.cmake
index 15d8fe2..43e4b0b 100644
--- a/c/versions.cmake
+++ b/c/versions.cmake
@@ -1,14 +1,14 @@
 set(PN_LIB_CORE_MAJOR_VERSION 10)
 set(PN_LIB_CORE_MINOR_VERSION 11)
-set(PN_LIB_CORE_PATCH_VERSION 0)
+set(PN_LIB_CORE_PATCH_VERSION 1)
 set(PN_LIB_CORE_VERSION 
"${PN_LIB_CORE_MAJOR_VERSION}.${PN_LIB_CORE_MINOR_VERSION}.${PN_LIB_CORE_PATCH_VERSION}")
 
 set(PN_LIB_PROACTOR_MAJOR_VERSION 1)
-set(PN_LIB_PROACTOR_MINOR_VERSION 7)
-set(PN_LIB_PROACTOR_PATCH_VERSION 1)
+set(PN_LIB_PROACTOR_MINOR_VERSION 8)
+set(PN_LIB_PROACTOR_PATCH_VERSION 0)
 set(PN_LIB_PROACTOR_VERSION 
"${PN_LIB_PROACTOR_MAJOR_VERSION}.${PN_LIB_PROACTOR_MINOR_VERSION}.${PN_LIB_PROACTOR_PATCH_VERSION}")
 
 set(PN_LIB_LEGACY_MAJOR_VERSION 11)
-set(PN_LIB_LEGACY_MINOR_VERSION 12)
+set(PN_LIB_LEGACY_MINOR_VERSION 13)
 set(PN_LIB_LEGACY_PATCH_VERSION 0)
 set(PN_LIB_LEGACY_VERSION 
"${PN_LIB_LEGACY_MAJOR_VERSION}.${PN_LIB_LEGACY_MINOR_VERSION}.${PN_LIB_LEGACY_PATCH_VERSION}")
diff --git a/cpp/versions.cmake b/cpp/versions.cmake
index b77a623..dd5a7b6 100644
--- a/cpp/versions.cmake
+++ b/cpp/versions.cmake
@@ -1,4 +1,4 @@
 set(PN_LIB_CPP_MAJOR_VERSION 12)
-set(PN_LIB_CPP_MINOR_VERSION 7)
-set(PN_LIB_CPP_PATCH_VERSION 2)
+set(PN_LIB_CPP_MINOR_VERSION 8)
+set(PN_LIB_CPP_PATCH_VERSION 0)
 set(PN_LIB_CPP_VERSION 
"${PN_LIB_CPP_MAJOR_VERSION}.${PN_LIB_CPP_MINOR_VERSION}.${PN_LIB_CPP_PATCH_VERSION}")

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton] branch master deleted (was 69339de)

2021-04-05 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git.


 was 69339de  PROTON-2344: fix Python BlockingConnection resource leaks, 
memory and socket fds

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton] branch main updated: PROTON-2351: allow Travis based OSX runs not to fail the overall job for now, to help avoid masking issues on other OS runs. GHA MacOS builds will still fail.

2021-04-01 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git


The following commit(s) were added to refs/heads/main by this push:
 new cbdb8d5  PROTON-2351: allow Travis based OSX runs not to fail the 
overall job for now, to help avoid masking issues on other OS runs. GHA MacOS 
builds will still fail.
cbdb8d5 is described below

commit cbdb8d531ade5b4bb9d037d3383ac0ddd81613aa
Author: Robbie Gemmell 
AuthorDate: Thu Apr 1 17:46:12 2021 +0100

PROTON-2351: allow Travis based OSX runs not to fail the overall job for 
now, to help avoid masking issues on other OS runs. GHA MacOS builds will still 
fail.
---
 .travis.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 1f20dfa..b49b97e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,6 +18,8 @@
 #
 
 jobs:
+  allow_failures:
+  - os: osx
   include:
   - os: linux
 dist: xenial

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch main updated: QPIDJMS-531: update to Update netty to 4.1.63.Final

2021-04-01 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/main by this push:
 new 9309219  QPIDJMS-531: update to Update netty to 4.1.63.Final
9309219 is described below

commit 9309219a84e4ab36fdbf8dd45ad09243c527df78
Author: Robbie Gemmell 
AuthorDate: Thu Apr 1 16:33:02 2021 +0100

QPIDJMS-531: update to Update netty to 4.1.63.Final
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a28508b..29f64fb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,7 +37,7 @@
   
 
 0.33.8
-4.1.62.Final
+4.1.63.Final
 1.7.30
 2.14.1
 1.0-alpha-2

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch asf-site updated: NO-JIRA: restore metadata to original values after testing

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 21743e4  NO-JIRA: restore metadata to original values after testing
21743e4 is described below

commit 21743e45a48256b3c26597fecd787b621bd618a2
Author: Robbie Gemmell 
AuthorDate: Wed Mar 31 16:58:45 2021 +0100

NO-JIRA: restore metadata to original values after testing
---
 .asf.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.asf.yaml b/.asf.yaml
index 2803b1f..2574c3c 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -20,4 +20,4 @@ github:
   labels:
 - qpid
 - apache
-- amqp
+- website

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch master deleted (was d187653)

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-site.git.


 was d187653  remove .asf.yaml file from master, testing moving to asf-site

This change permanently discards the following revisions:

 discard d187653  remove .asf.yaml file from master, testing moving to asf-site
 discard 9aa0e99  NO-JIRA: add .asf.yaml file with github repo metadata, and 
README directing to the asf-site branch

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch asf-site updated: NO-JIRA: testing

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new d4692aa  NO-JIRA: testing
d4692aa is described below

commit d4692aafa3756a960d24b7d1dff210fbf0350b51
Author: Robbie Gemmell 
AuthorDate: Wed Mar 31 16:55:05 2021 +0100

NO-JIRA: testing
---
 .asf.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.asf.yaml b/.asf.yaml
index bc3be24..2803b1f 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -20,3 +20,4 @@ github:
   labels:
 - qpid
 - apache
+- amqp

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch asf-site updated: NO-JIRA: move .asf.yaml file to asf-site branch

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new e428012  NO-JIRA: move .asf.yaml file to asf-site branch
e428012 is described below

commit e4280121f6a1541cd37e4db6e870724e8f390ea6
Author: Robbie Gemmell 
AuthorDate: Wed Mar 31 16:41:48 2021 +0100

NO-JIRA: move .asf.yaml file to asf-site branch
---
 .asf.yaml | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
new file mode 100644
index 000..bc3be24
--- /dev/null
+++ b/.asf.yaml
@@ -0,0 +1,22 @@
+#
+# 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.
+#
+github:
+  description: "Mirror of Apache Qpid Site"
+  homepage: https://qpid.apache.org/
+  labels:
+- qpid
+- apache

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch master updated: remove .asf.yaml file from master, testing moving to asf-site

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/master by this push:
 new d187653  remove .asf.yaml file from master, testing moving to asf-site
d187653 is described below

commit d1876535ec5e44b28008b3ad6cc74fe18842ef32
Author: Robbie Gemmell 
AuthorDate: Wed Mar 31 16:39:39 2021 +0100

remove .asf.yaml file from master, testing moving to asf-site
---
 .asf.yaml | 23 ---
 1 file changed, 23 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
deleted file mode 100644
index 2574c3c..000
--- a/.asf.yaml
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# 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.
-#
-github:
-  description: "Mirror of Apache Qpid Site"
-  homepage: https://qpid.apache.org/
-  labels:
-- qpid
-- apache
-- website

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-cpp] branch main updated: NO-JIRA: update build status badges after branch renamed to main

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-cpp.git


The following commit(s) were added to refs/heads/main by this push:
 new 8029971  NO-JIRA: update build status badges after branch renamed to 
main
8029971 is described below

commit 8029971c328020221d5bbc548bb75bb6442c4f75
Author: Robbie Gemmell 
AuthorDate: Wed Mar 31 13:09:24 2021 +0100

NO-JIRA: update build status badges after branch renamed to main
---
 INSTALL.txt | 2 +-
 README.md   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/INSTALL.txt b/INSTALL.txt
index 3090a71..94b4686 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -165,7 +165,7 @@ Qpid test suite.
 
 3. Building a Repository Working Copy
 =
-Developers interested in building master, e.g to test ahead of release, can
+Developers interested in building the main branch, e.g to test ahead of 
release, can
 get the source code from the git repository using:
 
  # git clone https://gitbox.apache.org/repos/asf/qpid-cpp.git
diff --git a/README.md b/README.md
index cf03db1..d421514 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ under the License.
 
 # Qpid C++
 
-[![Linux build 
status](https://builds.apache.org/buildStatus/icon?job=Qpid-cpp-trunk-test)](https://builds.apache.org/blue/organizations/jenkins/Qpid-cpp-trunk-test/activity)
 [![Windows build 
status](https://ci.appveyor.com/api/projects/status/wma611lkq1fcyo18?svg=true)](https://ci.appveyor.com/project/ApacheSoftwareFoundation/qpid-cpp/branch/master)
+[![Linux build 
status](https://builds.apache.org/buildStatus/icon?job=Qpid/Qpid-CPP-Test)](https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-CPP-Test/activity)
 [![Windows build 
status](https://ci.appveyor.com/api/projects/status/wma611lkq1fcyo18?svg=true)](https://ci.appveyor.com/project/ApacheSoftwareFoundation/qpid-cpp/branch/main)
 
 ## Introduction
 

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton-j] branch main updated: NO-JIRA: update status badges links to reflect branch rename to main

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton-j.git


The following commit(s) were added to refs/heads/main by this push:
 new 30723ac  NO-JIRA: update status badges links to reflect branch rename 
to main
30723ac is described below

commit 30723ac2c03411e2cbe977cf84b8c5b37cfa5e27
Author: Robbie Gemmell 
AuthorDate: Wed Mar 31 12:41:47 2021 +0100

NO-JIRA: update status badges links to reflect branch rename to main
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index e009495..db534ff 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 # Apache Qpid Proton-J
 
-[![Linux Build 
Status](https://travis-ci.com/apache/qpid-proton-j.svg?branch=master)](https://travis-ci.com/github/apache/qpid-proton-j)
-[![Windows Build 
Status](https://ci.appveyor.com/api/projects/status/wh587qrxa3c22mh2/branch/master?svg=true)](https://ci.appveyor.com/project/ApacheSoftwareFoundation/qpid-proton-j/branch/master)
+[![Linux Build 
Status](https://travis-ci.com/apache/qpid-proton-j.svg?branch=main)](https://travis-ci.com/github/apache/qpid-proton-j)
+[![Windows Build 
Status](https://ci.appveyor.com/api/projects/status/wh587qrxa3c22mh2/branch/main?svg=true)](https://ci.appveyor.com/project/ApacheSoftwareFoundation/qpid-proton-j/branch/main)
 
 
 [Qpid Proton-J](https://qpid.apache.org/proton) is a high-performance, 
lightweight messaging

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-dispatch] branch main updated: NO-JIRA: update various references after branches renamed to main

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/main by this push:
 new 7b3ecd2  NO-JIRA: update various references after branches renamed to 
main
7b3ecd2 is described below

commit 7b3ecd2ae3da07f180aa31f53c30406238d94728
Author: Robbie Gemmell 
AuthorDate: Wed Mar 31 12:14:15 2021 +0100

NO-JIRA: update various references after branches renamed to main
---
 Dockerfile |  2 +-
 dockerfiles/Dockerfile-fedora  |  2 +-
 dockerfiles/Dockerfile-fedora-only-python3 |  2 +-
 dockerfiles/Dockerfile-ubuntu  |  2 +-
 docs/notes/contrib-guide.adoc  | 12 ++--
 src/router_core/connections.c  |  2 +-
 6 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 0dd28d7..00dcd9c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -41,7 +41,7 @@ FROM centos:7
 
 MAINTAINER "d...@qpid.apache.org"
 
-# Install all the required packages. Some in this list were picked off from 
proton's INSTALL.md 
(https://github.com/apache/qpid-proton/blob/master/INSTALL.md) and the rest are 
from dispatch (https://github.com/apache/qpid-dispatch/blob/master/README)
+# Install all the required packages. Some in this list were picked off from 
proton's INSTALL.md 
(https://github.com/apache/qpid-proton/blob/main/INSTALL.md) and the rest are 
from dispatch (https://github.com/apache/qpid-dispatch/blob/main/README)
 
 # For centos, some packages are found in the epel repo, so first install 
access to it
 RUN yum -y install epel-release
diff --git a/dockerfiles/Dockerfile-fedora b/dockerfiles/Dockerfile-fedora
index c676644..82cd362 100644
--- a/dockerfiles/Dockerfile-fedora
+++ b/dockerfiles/Dockerfile-fedora
@@ -29,7 +29,7 @@ FROM fedora:latest
 
 MAINTAINER "d...@qpid.apache.org"
 
-# Install required packages. Some in this list are from proton's INSTALL.md 
(https://github.com/apache/qpid-proton/blob/master/INSTALL.md) and the rest are 
from dispatch (https://github.com/apache/qpid-dispatch/blob/master/README)
+# Install required packages. Some in this list are from proton's INSTALL.md 
(https://github.com/apache/qpid-proton/blob/main/INSTALL.md) and the rest are 
from dispatch (https://github.com/apache/qpid-dispatch/blob/main/README)
 RUN dnf -y install gcc gcc-c++ cmake openssl-devel cyrus-sasl-devel 
cyrus-sasl-plain cyrus-sasl-gssapi cyrus-sasl-md5 swig java-1.8.0-openjdk-devel 
git make valgrind emacs libwebsockets-devel python-devel libnghttp2-devel curl
 
 RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
diff --git a/dockerfiles/Dockerfile-fedora-only-python3 
b/dockerfiles/Dockerfile-fedora-only-python3
index 9ed7590..3d4c8db 100644
--- a/dockerfiles/Dockerfile-fedora-only-python3
+++ b/dockerfiles/Dockerfile-fedora-only-python3
@@ -29,7 +29,7 @@ FROM fedora:latest
 
 MAINTAINER "d...@qpid.apache.org"
 
-# Install all the required packages. Some in this list were picked off from 
proton's INSTALL.md 
(https://github.com/apache/qpid-proton/blob/master/INSTALL.md) and the rest are 
from dispatch (https://github.com/apache/qpid-dispatch/blob/master/README)
+# Install all the required packages. Some in this list were picked off from 
proton's INSTALL.md 
(https://github.com/apache/qpid-proton/blob/main/INSTALL.md) and the rest are 
from dispatch (https://github.com/apache/qpid-dispatch/blob/main/README)
 RUN dnf -y install gcc cmake libuuid-devel openssl-devel cyrus-sasl-devel 
cyrus-sasl-plain cyrus-sasl-gssapi cyrus-sasl-md5 swig java-1.8.0-openjdk-devel 
git make doxygen valgrind emacs libuv libuv-devel libwebsockets-devel
 
 # Remove python2 if it is already there. We want this environment to contain 
only python3
diff --git a/dockerfiles/Dockerfile-ubuntu b/dockerfiles/Dockerfile-ubuntu
index 8b9dfb7..7e11984 100644
--- a/dockerfiles/Dockerfile-ubuntu
+++ b/dockerfiles/Dockerfile-ubuntu
@@ -24,7 +24,7 @@ FROM ubuntu:latest
 
 MAINTAINER "d...@qpid.apache.org"
 ARG DEBIAN_FRONTEND=noninteractive
-# Install all the required packages. Some in this list were picked off from 
proton's INSTALL.md 
(https://github.com/apache/qpid-proton/blob/master/INSTALL.md) and the rest are 
from dispatch (https://github.com/apache/qpid-dispatch/blob/master/README)
+# Install all the required packages. Some in this list were picked off from 
proton's INSTALL.md 
(https://github.com/apache/qpid-proton/blob/main/INSTALL.md) and the rest are 
from dispatch (https://github.com/apache/qpid-dispatch/blob/main/README)
 RUN apt-get update && \
 apt-get install -y curl gcc g++ automake libwebsockets-dev libtool 
zlib1g-dev cmake libsasl2-dev libssl-dev libnghttp2-dev python3-dev libuv1-dev 
sasl2-bin swig maven git && \
 apt-get -y clean
diff --git a/docs/notes/contrib-guide.adoc b/doc

[qpid-broker-j] branch main updated: NO-JIRA: update build status and instructions after default branch renamed to main

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git


The following commit(s) were added to refs/heads/main by this push:
 new 32c2838  NO-JIRA: update build status and instructions after default 
branch renamed to main
32c2838 is described below

commit 32c2838e2f6d2e63f8a8e47a5901b70a1f5b1e93
Author: Robbie Gemmell 
AuthorDate: Wed Mar 31 12:05:25 2021 +0100

NO-JIRA: update build status and instructions after default branch renamed 
to main
---
 README.md | 2 +-
 doc/developer-guide/src/main/markdown/quick-start.md  | 6 +++---
 doc/developer-guide/src/main/markdown/release-instructions.md | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 3c4a495..443a652 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
 
 |CI Process|Status|
 |---|---|
-|Travis CI 
Build|[![https://travis-ci.com/apache/qpid-broker-j.svg?branch=master](https://travis-ci.com/apache/qpid-broker-j.png?branch=master)](https://travis-ci.com/apache/qpid-broker-j?branch=master)|
+|Travis CI Build|[![Build 
Status](https://travis-ci.com/apache/qpid-broker-j.svg?branch=main)](https://travis-ci.com/apache/qpid-broker-j?branch=main)|
 |Apache Jenkins CI Build|[![Build 
Status](https://ci-builds.apache.org/buildStatus/icon?job=Qpid%2FQpid-Broker-J-TestMatrix)](https://ci-builds.apache.org/job/Qpid/job/Qpid-Broker-J-TestMatrix/)|
 
 ---
diff --git a/doc/developer-guide/src/main/markdown/quick-start.md 
b/doc/developer-guide/src/main/markdown/quick-start.md
index a6beb6a..28cbe21 100644
--- a/doc/developer-guide/src/main/markdown/quick-start.md
+++ b/doc/developer-guide/src/main/markdown/quick-start.md
@@ -108,11 +108,11 @@ The changes can be submitted as pull request against 
github mirror of Apache Qpi
 ## How to contribute changes to Qpid Broker-J
 
 Here is a set of simple instructions to follow in order to contribute changes.
-Please note, that changes need to be implemented on master branch first before 
they can be ported into specific version support branch.
+Please note, that changes need to be implemented on main branch first before 
they can be ported into specific version support branch.
 
 * Raise JIRA ticket
 * Fork github mirror of broker-j repository, if it is not forked yet
-* Create working branch from master in forked repo
+* Create working branch from main in forked repo
 * Implement required changes and unit/integration tests
 * Verify that implementation follows [Qpid code standard](code-guide.md) and 
[clean code practices](https://en.wikipedia.org/wiki/SOLID)
 * Verify that all tests are passing locally on a developer machine
@@ -120,5 +120,5 @@ Please note, that changes need to be implemented on master 
branch first before t
 * Create pull request in github mirror of broker-j repository
 * Verify that all tests executed for PR by project Continuous Integration 
tools are still passing
 * Address comments submitted by pull request reviewers if any and applicable
-* The reviewed changes needs to be applied into the master branch by project 
committer
+* The reviewed changes needs to be applied into the main branch by project 
committer
 * Close the JIRA ticket
diff --git a/doc/developer-guide/src/main/markdown/release-instructions.md 
b/doc/developer-guide/src/main/markdown/release-instructions.md
index fda2b8e..d57baa8 100644
--- a/doc/developer-guide/src/main/markdown/release-instructions.md
+++ b/doc/developer-guide/src/main/markdown/release-instructions.md
@@ -51,7 +51,7 @@ Sources are kept in a Git repository. Thus a git client is 
required.
 ## Release Steps
 
 1.  Checkout Qpid Broker-J Sources
-* For new major/minor release; checkout sources master
+* For new major/minor release; checkout sources main branch
 
 git clone https://gitbox.apache.org/repos/asf/qpid-broker-j.git 
qpid-broker-j
 * For bugfix release

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-dispatch] branch main updated: NO-JIRA: update CI job configs to reflect branch names changing to main

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/main by this push:
 new a0dff49  NO-JIRA: update CI job configs to reflect branch names 
changing to main
a0dff49 is described below

commit a0dff49dfd23bf874957c24e9478375d7dc92402
Author: Robbie Gemmell 
AuthorDate: Wed Mar 31 11:39:31 2021 +0100

NO-JIRA: update CI job configs to reflect branch names changing to main
---
 .github/workflows/build.yaml | 2 +-
 .travis.yml  | 8 
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 228c365..26cbfe3 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -68,7 +68,7 @@ jobs:
   - uses: actions/checkout@v2
 with:
   repository: 'apache/qpid-proton'
-  ref: 'master'
+  ref: 'main'
   path: 'qpid-proton'
 
   - uses: actions/checkout@v2
diff --git a/.travis.yml b/.travis.yml
index af38717..00c46cc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -48,7 +48,7 @@ jobs:
   - name: "qdrouterd:Debug (gcc on xenial)"
 os: linux
 env:
-- PATH="/usr/bin:$PATH" PROTON_VERSION=master BUILD_TYPE=Debug
+- PATH="/usr/bin:$PATH" PROTON_VERSION=main BUILD_TYPE=Debug
 - DISPATCH_CMAKE_ARGS='-DRUNTIME_CHECK=asan'
   - name: "qdrouterd:Coverage"
 os: linux
@@ -78,7 +78,7 @@ jobs:
 env:
 - CC=clang-11
 - CXX=clang++-11
-- PATH="/usr/bin:$PATH" PROTON_VERSION=master BUILD_TYPE=RelWithDebInfo
+- PATH="/usr/bin:$PATH" PROTON_VERSION=main BUILD_TYPE=RelWithDebInfo
 - DISPATCH_CMAKE_ARGS='-DRUNTIME_CHECK=asan 
-DCMAKE_C_FLAGS=-DQD_MEMORY_DEBUG'
   - name: "qdrouterd:RelWithDebInfo+MemoryDebug (clang on focal)"
 arch: arm64
@@ -105,7 +105,7 @@ jobs:
 env:
   - CC=clang-11
   - CXX=clang++-11
-  - PROTON_VERSION=master BUILD_TYPE=RelWithDebInfo
+  - PROTON_VERSION=main BUILD_TYPE=RelWithDebInfo
   - DISPATCH_CMAKE_ARGS='-DRUNTIME_CHECK=asan 
-DCMAKE_C_FLAGS=-DQD_MEMORY_DEBUG -DQD_ENABLE_ASSERTIONS=ON 
-DDISPATCH_TEST_TIMEOUT=500'
   - name: "qdrouterd:Default Build"
 os: linux
@@ -132,7 +132,7 @@ jobs:
 os: osx
 osx_image: xcode11
 env:
-- PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:$PATH" 
PROTON_VERSION=master
+- PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:$PATH" 
PROTON_VERSION=main
 - DISPATCH_CMAKE_ARGS='-DRUNTIME_CHECK=asan 
-DCMAKE_C_FLAGS=-DQD_MEMORY_DEBUG -DQD_ENABLE_ASSERTIONS=ON 
-DDISPATCH_TEST_TIMEOUT=500'
 # exclude tests that require raw_connection functionality; not available 
in libuv proactor
 - DISPATCH_CTEST_EXTRA='-E 
system_tests_tcp_adaptor|system_tests_http1_adaptor|system_tests_http2|system_tests_grpc'

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-broker-j] branch master deleted (was c1382e0)

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git.


 was c1382e0  NO-JIRA: Update dependency reference files

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-broker-j] branch main updated (ea2a5ac -> c1382e0)

2021-03-31 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git.


from ea2a5ac  QPID-8509 - java.util.NoSuchElementException in 
AMQPConnection_1_0Impl.next()
 add c1382e0  NO-JIRA: Update dependency reference files

No new revisions were added by this update.

Summary of changes:
 .../dependency-verification/DEPENDENCIES_REFERENCE | 58 +++---
 .../dependency-verification/DEPENDENCIES_REFERENCE |  6 +--
 2 files changed, 33 insertions(+), 31 deletions(-)

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch main updated: QPIDJMS-529: verify the termination completes in alotted time, ensuring test fails if it doesnt

2021-03-29 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/main by this push:
 new eac6ae7  QPIDJMS-529: verify the termination completes in alotted 
time, ensuring test fails if it doesnt
eac6ae7 is described below

commit eac6ae78400b018e69d5791af711adbf7b67568e
Author: Robbie Gemmell 
AuthorDate: Mon Mar 29 16:16:41 2021 +0100

QPIDJMS-529: verify the termination completes in alotted time, ensuring 
test fails if it doesnt
---
 .../java/org/apache/qpid/jms/integration/ProducerIntegrationTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ProducerIntegrationTest.java
 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ProducerIntegrationTest.java
index ceba81f..e96130f 100644
--- 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ProducerIntegrationTest.java
+++ 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ProducerIntegrationTest.java
@@ -3154,7 +3154,7 @@ public class ProducerIntegrationTest extends 
QpidJmsTestCase {
 });
 
 executor.shutdown();
-executor.awaitTermination(20, TimeUnit.SECONDS);
+assertTrue("send + close didnt complete in given time", 
executor.awaitTermination(20, TimeUnit.SECONDS));
 
 session.close();
 

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch main updated: QPIDJMS-529: close down connection at end, ensure test timeout exceeds component timeouts

2021-03-29 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/main by this push:
 new 9e99edf  QPIDJMS-529: close down connection at end, ensure test 
timeout exceeds component timeouts
9e99edf is described below

commit 9e99edf31865b096500e984c2bc577ba72ad910c
Author: Robbie Gemmell 
AuthorDate: Mon Mar 29 15:55:47 2021 +0100

QPIDJMS-529: close down connection at end, ensure test timeout exceeds 
component timeouts
---
 .../org/apache/qpid/jms/integration/ProducerIntegrationTest.java   | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ProducerIntegrationTest.java
 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ProducerIntegrationTest.java
index dc88525..ceba81f 100644
--- 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ProducerIntegrationTest.java
+++ 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ProducerIntegrationTest.java
@@ -3107,7 +3107,7 @@ public class ProducerIntegrationTest extends 
QpidJmsTestCase {
  * @throws Exception
  */
 @Repeat(repetitions = 1)
-@Test(timeout = 2)
+@Test(timeout = 35000)
 public void testSendToRemotelyClosedProducerFailsIfSendAfterDetached() 
throws Exception {
 try (TestAmqpPeer testPeer = new TestAmqpPeer();) {
 JmsConnection connection = (JmsConnection) 
testFixture.establishConnecton(testPeer);
@@ -3159,6 +3159,11 @@ public class ProducerIntegrationTest extends 
QpidJmsTestCase {
 session.close();
 
 testPeer.waitForAllHandlersToComplete(1000);
+
+testPeer.expectClose();
+connection.close();
+
+testPeer.waitForAllHandlersToComplete(1000);
 }
 }
 }

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch asf-site updated: update site for qpid-jms-0.57.0

2021-03-24 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 6d682fa  update site for qpid-jms-0.57.0
6d682fa is described below

commit 6d682fa235c5a7dc192a78a8be660e97bf7d4dab
Author: Robbie Gemmell 
AuthorDate: Wed Mar 24 10:57:22 2021 +

update site for qpid-jms-0.57.0
---
 content/components/jms/index.html  |   8 +-
 content/dashboard.html |   2 +-
 content/documentation.html |   4 +-
 content/download.html  |   6 +-
 content/maven.html |   2 +-
 content/releases/index.html|   3 +-
 content/releases/qpid-jms-0.24.0/index.html|   2 +-
 content/releases/qpid-jms-0.25.0/index.html|   2 +-
 content/releases/qpid-jms-0.26.0/index.html|   2 +-
 content/releases/qpid-jms-0.27.0/index.html|   2 +-
 content/releases/qpid-jms-0.28.0/index.html|   2 +-
 content/releases/qpid-jms-0.29.0/index.html|   2 +-
 content/releases/qpid-jms-0.30.0/index.html|   2 +-
 content/releases/qpid-jms-0.31.0/index.html|   2 +-
 content/releases/qpid-jms-0.32.0/index.html|   2 +-
 content/releases/qpid-jms-0.33.0/index.html|   2 +-
 content/releases/qpid-jms-0.34.0/index.html|   2 +-
 content/releases/qpid-jms-0.35.0/index.html|   2 +-
 content/releases/qpid-jms-0.36.0/index.html|   2 +-
 content/releases/qpid-jms-0.37.0/index.html|   2 +-
 content/releases/qpid-jms-0.38.0/index.html|   2 +-
 content/releases/qpid-jms-0.39.0/index.html|   2 +-
 content/releases/qpid-jms-0.40.0/index.html|   2 +-
 content/releases/qpid-jms-0.41.0/index.html|   2 +-
 content/releases/qpid-jms-0.42.0/index.html|   2 +-
 content/releases/qpid-jms-0.43.0/index.html|   2 +-
 content/releases/qpid-jms-0.44.0/index.html|   2 +-
 content/releases/qpid-jms-0.45.0/index.html|   2 +-
 content/releases/qpid-jms-0.46.0/index.html|   2 +-
 content/releases/qpid-jms-0.47.0/index.html|   2 +-
 content/releases/qpid-jms-0.48.0/index.html|   2 +-
 content/releases/qpid-jms-0.49.0/index.html|   2 +-
 content/releases/qpid-jms-0.50.0/index.html|   2 +-
 content/releases/qpid-jms-0.51.0/index.html|   2 +-
 content/releases/qpid-jms-0.52.0/index.html|   2 +-
 content/releases/qpid-jms-0.53.0/index.html|   2 +-
 content/releases/qpid-jms-0.54.0/index.html|   2 +-
 content/releases/qpid-jms-0.55.0/index.html|   2 +-
 content/releases/qpid-jms-0.56.0/index.html|   2 +-
 .../index.html => qpid-jms-0.57.0/building.html}   |  64 ++-
 content/releases/qpid-jms-0.57.0/docs/index.html   | 584 +
 .../index.html |  24 +-
 .../release-notes.html}|  36 +-
 content/releases/qpid-jms-master/index.html|   2 +-
 input/_transom_config.py   |   2 +-
 input/releases/index.md|   3 +-
 input/releases/qpid-jms-0.57.0/building.md |  46 ++
 input/releases/qpid-jms-0.57.0/docs/index.md   | 386 ++
 input/releases/qpid-jms-0.57.0/index.md|  68 +++
 input/releases/qpid-jms-0.57.0/release-notes.md|  38 ++
 50 files changed, 1237 insertions(+), 107 deletions(-)

diff --git a/content/components/jms/index.html 
b/content/components/jms/index.html
index c4c71e4..8ccc385 100644
--- a/content/components/jms/index.html
+++ b/content/components/jms/index.html
@@ -147,9 +147,9 @@ API
 
 
 http://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html;>API 
reference
-https://github.com/apache/qpid-jms/tree/0.56.0/qpid-jms-examples;>Examples
-Configuration
-Building Qpid 
JMS
+https://github.com/apache/qpid-jms/tree/0.57.0/qpid-jms-examples;>Examples
+Configuration
+Building Qpid 
JMS
 
 
 
@@ -163,7 +163,7 @@ API
 Releases
 
 
-Qpid JMS 0.56.0
+Qpid JMS 0.57.0
 Past releases
 
 
diff --git a/content/dashboard.html b/content/dashboard.html
index 06f0e83..50309e2 100644
--- a/content/dashboard.html
+++ b/content/dashboard.html
@@ -169,7 +169,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
 
 
   Qpid JMS
-  0.56.0
+  0.57.0
   https://issues.apache.org/jira/projects/QPIDJMS;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS+and+resolution+is+null;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS;>All 
issues  https://issues.apache.org/jira/secure/CreateIssue!default.jspa?pid=12314524;>Create
 issue
   https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8/activity;>https://bui

svn commit: r46715 - /release/qpid/jms/0.55.0/

2021-03-23 Thread robbie
Author: robbie
Date: Tue Mar 23 15:46:46 2021
New Revision: 46715

Log:
clean out older release

Removed:
release/qpid/jms/0.55.0/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r46714 - /release/qpid/jms/0.57.0/

2021-03-23 Thread robbie
Author: robbie
Date: Tue Mar 23 15:46:20 2021
New Revision: 46714

Log:
add files for qpid-jms 0.57.0

Added:
release/qpid/jms/0.57.0/
  - copied from r46713, dev/qpid/jms/0.57.0-rc1/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch main updated: NO-JIRA: trivial change to verify repo after branch changes

2021-03-23 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/main by this push:
 new 8113b93  NO-JIRA: trivial change to verify repo after branch changes
8113b93 is described below

commit 8113b93fae8bb7f90f31fe0e68fcab46b330348f
Author: Robbie Gemmell 
AuthorDate: Tue Mar 23 09:51:26 2021 +

NO-JIRA: trivial change to verify repo after branch changes
---
 qpid-jms-examples/README.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/qpid-jms-examples/README.txt b/qpid-jms-examples/README.txt
index 3ba1073..f7f5f3e 100644
--- a/qpid-jms-examples/README.txt
+++ b/qpid-jms-examples/README.txt
@@ -31,3 +31,4 @@ src/main/resources/jndi.properties
 NOTE: The earlier build command will cause Maven to resolve the client artifact
 dependencies against its local and remote repositories. If you wish to use a
 locally-built client, ensure to "mvn install" it in your local repo first.
+

-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: NO-JIRA: update to JDK16 now it is released

2021-03-17 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new ed7e6f3  NO-JIRA: update to JDK16 now it is released
ed7e6f3 is described below

commit ed7e6f3256e77aec3ca49923eb6ea7f792a409b6
Author: Robbie Gemmell 
AuthorDate: Wed Mar 17 16:03:10 2021 +

NO-JIRA: update to JDK16 now it is released
---
 .github/workflows/build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b905791..da9b057 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -8,7 +8,7 @@ jobs:
 strategy:
   fail-fast: false
   matrix:
-java: [ 8, 11, 15 ]
+java: [ 8, 11, 16 ]
 
 steps:
   - uses: actions/checkout@v2


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton-j] branch master updated: NO-JIRA: update to JDK16 now it is released

2021-03-17 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-proton-j.git


The following commit(s) were added to refs/heads/master by this push:
 new c242c26  NO-JIRA: update to JDK16 now it is released
c242c26 is described below

commit c242c260e44d94bba1a9c82a22af3b0b2a0dc5c6
Author: Robbie Gemmell 
AuthorDate: Wed Mar 17 16:04:56 2021 +

NO-JIRA: update to JDK16 now it is released
---
 .github/workflows/build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b905791..da9b057 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -8,7 +8,7 @@ jobs:
 strategy:
   fail-fast: false
   matrix:
-java: [ 8, 11, 15 ]
+java: [ 8, 11, 16 ]
 
 steps:
   - uses: actions/checkout@v2


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r46632 - /dev/qpid/jms/0.57.0-rc1/

2021-03-15 Thread robbie
Author: robbie
Date: Mon Mar 15 16:51:57 2021
New Revision: 46632

Log:
add files for qpid-jms 0.57.0 (RC1)

Added:
dev/qpid/jms/0.57.0-rc1/
dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz   (with props)
dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz.asc   (with props)
dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz.sha512
dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz   (with props)
dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz.asc   (with props)
dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz.sha512

Added: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz
--
svn:mime-type = application/gzip

Added: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz.asc
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz.sha512
==
--- dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-bin.tar.gz.sha512 Mon Mar 15 
16:51:57 2021
@@ -0,0 +1 @@
+cd85eb5f1098bdda4bf31db093616cf9d5d6fe900d49613fb52e0e7320d9ba94259a4bcf3eab12577a7a297efe4b3dc6362fe112bebbafb5db6fcf74f0ffe222
  apache-qpid-jms-0.57.0-bin.tar.gz

Added: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz
--
svn:mime-type = application/gzip

Added: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz.asc
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz.sha512
==
--- dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.57.0-rc1/apache-qpid-jms-0.57.0-src.tar.gz.sha512 Mon Mar 15 
16:51:57 2021
@@ -0,0 +1 @@
+6dc49a2d2c112be63c422ccf44e1cfb7431e93ac6798bfdb2f1bddcd40a0bbb28d90ade5e7d3840b435d797ba1dcc69495af55777674f41803acc290378e40d6
  apache-qpid-jms-0.57.0-src.tar.gz



-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: [maven-release-plugin] prepare for next development iteration

2021-03-15 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new bd28290  [maven-release-plugin] prepare for next development iteration
bd28290 is described below

commit bd28290b446b504043cc76d86a9f3cf6bbef2361
Author: Robbie Gemmell 
AuthorDate: Mon Mar 15 16:16:11 2021 +

[maven-release-plugin] prepare for next development iteration
---
 apache-qpid-jms/pom.xml| 2 +-
 pom.xml| 4 ++--
 qpid-jms-client/pom.xml| 2 +-
 qpid-jms-discovery/pom.xml | 2 +-
 qpid-jms-docs/pom.xml  | 2 +-
 qpid-jms-examples/pom.xml  | 2 +-
 qpid-jms-interop-tests/pom.xml | 2 +-
 qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/apache-qpid-jms/pom.xml b/apache-qpid-jms/pom.xml
index d532945..7e0ade1 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0
+0.58.0-SNAPSHOT
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index 08f971c..2ca64bc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  0.57.0
+  0.58.0-SNAPSHOT
   pom
   QpidJMS
   2013
@@ -89,7 +89,7 @@
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 https://gitbox.apache.org/repos/asf?p=qpid-jms.git
-0.57.0
+HEAD
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index e96ac9f..7a1c42c 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0
+0.58.0-SNAPSHOT
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index 3b00664..e6eda36 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0
+0.58.0-SNAPSHOT
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index 4c5462c..6527bd2 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0
+0.58.0-SNAPSHOT
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index 2bdff1b..77558e2 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0
+0.58.0-SNAPSHOT
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index 043a586..a2b4e4b 100644
--- a/qpid-jms-interop-tests/pom.xml
+++ b/qpid-jms-interop-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0
+0.58.0-SNAPSHOT
   
 
   qpid-jms-interop-tests
diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml 
b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
index 75c2f4e..7b0606e 100644
--- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
+++ b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-interop-tests
-0.57.0
+0.58.0-SNAPSHOT
   
 
   qpid-jms-activemq-tests


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] annotated tag 0.57.0 created (now 36396de)

2021-03-15 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to annotated tag 0.57.0
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git.


  at 36396de  (tag)
 tagging d1da2e29ca530423e17ab4ee82f21c6420decfce (commit)
 replaces 0.56.0
  by Robbie Gemmell
  on Mon Mar 15 16:16:01 2021 +

- Log -
[maven-release-plugin] copy for tag 0.57.0
---

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: [maven-release-plugin] prepare release 0.57.0

2021-03-15 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new d1da2e2  [maven-release-plugin] prepare release 0.57.0
d1da2e2 is described below

commit d1da2e29ca530423e17ab4ee82f21c6420decfce
Author: Robbie Gemmell 
AuthorDate: Mon Mar 15 16:14:23 2021 +

[maven-release-plugin] prepare release 0.57.0
---
 apache-qpid-jms/pom.xml| 2 +-
 pom.xml| 4 ++--
 qpid-jms-client/pom.xml| 2 +-
 qpid-jms-discovery/pom.xml | 2 +-
 qpid-jms-docs/pom.xml  | 2 +-
 qpid-jms-examples/pom.xml  | 2 +-
 qpid-jms-interop-tests/pom.xml | 2 +-
 qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/apache-qpid-jms/pom.xml b/apache-qpid-jms/pom.xml
index 1613cbc..d532945 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0-SNAPSHOT
+0.57.0
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index ced7ee6..08f971c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  0.57.0-SNAPSHOT
+  0.57.0
   pom
   QpidJMS
   2013
@@ -89,7 +89,7 @@
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 https://gitbox.apache.org/repos/asf?p=qpid-jms.git
-HEAD
+0.57.0
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index b7d5198..e96ac9f 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0-SNAPSHOT
+0.57.0
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index 321e832..3b00664 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0-SNAPSHOT
+0.57.0
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index 2bb4996..4c5462c 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0-SNAPSHOT
+0.57.0
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index 17de51a..2bdff1b 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0-SNAPSHOT
+0.57.0
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index 11fb8ba..043a586 100644
--- a/qpid-jms-interop-tests/pom.xml
+++ b/qpid-jms-interop-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.57.0-SNAPSHOT
+0.57.0
   
 
   qpid-jms-interop-tests
diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml 
b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
index 1724943..75c2f4e 100644
--- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
+++ b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-interop-tests
-0.57.0-SNAPSHOT
+0.57.0
   
 
   qpid-jms-activemq-tests


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: QPIDJMS-526: fire the ExceptionListener when handling remote Session closure if it has a consumer with a MessageListener

2021-03-10 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new 44b73fc  QPIDJMS-526: fire the ExceptionListener when handling remote 
Session closure if it has a consumer with a MessageListener
44b73fc is described below

commit 44b73fc591cc2b3907d6b5ee3416f9eec9b56e28
Author: Robbie Gemmell 
AuthorDate: Wed Mar 10 16:56:54 2021 +

QPIDJMS-526: fire the ExceptionListener when handling remote Session 
closure if it has a consumer with a MessageListener
---
 .../main/java/org/apache/qpid/jms/JmsSession.java  |  15 ++-
 .../jms/integration/SessionIntegrationTest.java| 103 +
 2 files changed, 116 insertions(+), 2 deletions(-)

diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java
index dc4b303..274d99c 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java
@@ -327,7 +327,9 @@ public class JmsSession implements AutoCloseable, Session, 
QueueSession, TopicSe
 shutdown(null);
 }
 
-protected void shutdown(Throwable cause) throws JMSException {
+protected boolean shutdown(Throwable cause) throws JMSException {
+boolean listenerPresent = false;
+
 if (closed.compareAndSet(false, true)) {
 JMSException shutdownError = null;
 
@@ -339,6 +341,10 @@ public class JmsSession implements AutoCloseable, Session, 
QueueSession, TopicSe
 stop();
 
 for (JmsMessageConsumer consumer : new 
ArrayList(this.consumers.values())) {
+if(consumer.hasMessageListener()) {
+listenerPresent = true;
+}
+
 consumer.shutdown(cause);
 }
 
@@ -398,13 +404,18 @@ public class JmsSession implements AutoCloseable, 
Session, QueueSession, TopicSe
 connection.removeSession(sessionInfo);
 }
 }
+
+return listenerPresent;
 }
 
 //- Events fired when resource remotely closed due to some error 
-//
 
 void sessionClosed(Throwable cause) {
 try {
-shutdown(cause);
+boolean listenerPresent = shutdown(cause);
+if (listenerPresent) {
+connection.onAsyncException(JmsExceptionSupport.create(cause));
+}
 } catch (Throwable error) {
 LOG.trace("Ignoring exception thrown during cleanup of closed 
session", error);
 }
diff --git 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/SessionIntegrationTest.java
 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/SessionIntegrationTest.java
index a69624e..0bab49e 100644
--- 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/SessionIntegrationTest.java
+++ 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/SessionIntegrationTest.java
@@ -39,6 +39,7 @@ import java.util.Random;
 import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicInteger;
+import java.util.concurrent.atomic.AtomicReference;
 
 import javax.jms.CompletionListener;
 import javax.jms.Connection;
@@ -2689,4 +2690,106 @@ public class SessionIntegrationTest extends 
QpidJmsTestCase {
 connection.close();
 }
 }
+
+@Test(timeout = 2)
+public void testRemotelyEndSessionWithMessageListener() throws Exception {
+final String BREAD_CRUMB = "ErrorDescriptionBreadCrumb";
+
+try (TestAmqpPeer testPeer = new TestAmqpPeer();) {
+JmsConnection connection = (JmsConnection) 
testFixture.establishConnecton(testPeer, "?jms.prefetchPolicy.all=0");
+
+final CountDownLatch exceptionListenerFired = new 
CountDownLatch(1);
+final AtomicReference asyncError = new 
AtomicReference();
+connection.setExceptionListener(ex -> {
+asyncError.compareAndSet(null, ex);
+exceptionListenerFired.countDown();
+});
+
+final CountDownLatch sessionClosed = new CountDownLatch(1);
+connection.addConnectionListener(new 
JmsDefaultConnectionListener() {
+@Override
+public void onSessionClosed(Session session, Throwable 
exception) {
+sessionClosed.countDown();
+}
+});
+
+testPeer.expectBegin();
+Session session = connection.createSession(false, 
Session.AUTO_ACKNOWLEDGE);
+Queue queue = session.createQueue("myQueue");
+
+// Create a consumer
+testPeer

[qpid-jms] branch master updated: QPIDJMS-525: update to Netty 4.1.60

2021-03-10 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new db49d1c  QPIDJMS-525: update to Netty 4.1.60
db49d1c is described below

commit db49d1c15500a185088fe97cf76e483fa05e6f9a
Author: Robbie Gemmell 
AuthorDate: Wed Mar 10 15:29:43 2021 +

QPIDJMS-525: update to Netty 4.1.60
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index d4dffc6..ced7ee6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,7 +37,7 @@
   
 
 0.33.8
-4.1.59.Final
+4.1.60.Final
 1.7.30
 2.14.0
 1.0-alpha-2


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-dispatch] branch master updated: NO-JIRA: enable manual build trigger, useful to pick up recent proton master changes, or trigger a new run while retaining old logs

2021-03-04 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
 new edcf14a  NO-JIRA: enable manual build trigger, useful to pick up 
recent proton master changes, or trigger a new run while retaining old logs
edcf14a is described below

commit edcf14a7b6c50d33736ad8e148b1cdf6057c3d2b
Author: Robbie Gemmell 
AuthorDate: Thu Mar 4 10:43:36 2021 +

NO-JIRA: enable manual build trigger, useful to pick up recent proton 
master changes, or trigger a new run while retaining old logs
---
 .github/workflows/build.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index eab948a..058a907 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -19,7 +19,7 @@
 
 name: Build
 
-on: [push, pull_request]
+on: [push, pull_request, workflow_dispatch]
 
 jobs:
   compile:


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: QPIDJMS-525: update to Netty 4.1.59.Final (and netty-tcnative test dep to 2.0.36)

2021-02-19 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new 06e1872  QPIDJMS-525: update to Netty 4.1.59.Final (and netty-tcnative 
test dep to 2.0.36)
06e1872 is described below

commit 06e1872a24ef496cbb64723f896a6dfaab4f8eb7
Author: Robbie Gemmell 
AuthorDate: Fri Feb 19 13:31:40 2021 +

QPIDJMS-525: update to Netty 4.1.59.Final (and netty-tcnative test dep to 
2.0.36)
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index d81b849..d4dffc6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,7 +37,7 @@
   
 
 0.33.8
-4.1.56.Final
+4.1.59.Final
 1.7.30
 2.14.0
 1.0-alpha-2
@@ -46,7 +46,7 @@
 0.33.0
 
 
-2.0.35.Final
+2.0.36.Final
 5.15.12
 4.13.1
 1.0


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch asf-site updated: NO-JIRA: bump year in NOTICE file

2021-01-18 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new eb3eabf  NO-JIRA: bump year in NOTICE file
eb3eabf is described below

commit eb3eabfe0e9ba5d7ee07b46bd8cb0286378beba2
Author: Robbie Gemmell 
AuthorDate: Mon Jan 18 16:33:32 2021 +

NO-JIRA: bump year in NOTICE file
---
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NOTICE b/NOTICE
index d120f56..95bd9b3 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid Site
-Copyright 2016-2020 The Apache Software Foundation
+Copyright 2016-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-cpp] branch master updated: NO-JIRA: bump years in NOTICE files

2021-01-18 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-cpp.git


The following commit(s) were added to refs/heads/master by this push:
 new 039ba9e  NO-JIRA: bump years in NOTICE files
039ba9e is described below

commit 039ba9ecdb12d8533cea3b693c6687ab6b58fc9a
Author: Robbie Gemmell 
AuthorDate: Mon Jan 18 16:28:25 2021 +

NO-JIRA: bump years in NOTICE files
---
 NOTICE.txt   | 2 +-
 management/python/NOTICE.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/NOTICE.txt b/NOTICE.txt
index 7940f20..16eafb6 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache Qpid CPP
-Copyright 2006-2020 The Apache Software Foundation
+Copyright 2006-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/management/python/NOTICE.txt b/management/python/NOTICE.txt
index d26a0a6..716d749 100644
--- a/management/python/NOTICE.txt
+++ b/management/python/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache Qpid Python Tools
-Copyright 2006-2020 The Apache Software Foundation
+Copyright 2006-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-broker-j] branch 7.1.x updated: NO-JIRA: Update year in files with Copyright references

2021-01-18 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch 7.1.x
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git


The following commit(s) were added to refs/heads/7.1.x by this push:
 new fefd15d  NO-JIRA: Update year in files with Copyright references
fefd15d is described below

commit fefd15db0a036fcde9a1dcbcca8c5b681ee7f3bf
Author: Alex Rudyy 
AuthorDate: Sun Jan 17 18:48:16 2021 +

NO-JIRA: Update year in files with Copyright references

(cherry picked from commit c314275b35731da4c64d05618cf294446895e213)
---
 NOTICE | 2 +-
 apache-qpid-broker-j/src/main/assembly/NOTICE  | 2 +-
 broker-plugins/management-http/src/main/java/resources/footer.html | 2 +-
 perftests/src/main/assembly/NOTICE | 2 +-
 perftests/visualisation-jfc/src/main/assembly/NOTICE   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/NOTICE b/NOTICE
index c660a2c..98dfb74 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid Broker-J
-Copyright 2006-2020 The Apache Software Foundation
+Copyright 2006-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/apache-qpid-broker-j/src/main/assembly/NOTICE 
b/apache-qpid-broker-j/src/main/assembly/NOTICE
index a2e295a..57ff0ff 100644
--- a/apache-qpid-broker-j/src/main/assembly/NOTICE
+++ b/apache-qpid-broker-j/src/main/assembly/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid Broker-J
-Copyright 2006-2020 The Apache Software Foundation
+Copyright 2006-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/broker-plugins/management-http/src/main/java/resources/footer.html 
b/broker-plugins/management-http/src/main/java/resources/footer.html
index aaa81a0..45515c5 100644
--- a/broker-plugins/management-http/src/main/java/resources/footer.html
+++ b/broker-plugins/management-http/src/main/java/resources/footer.html
@@ -19,7 +19,7 @@
  -
  -->
 
- 2004-2020 The 
Apache Software Foundation.
+ 2004-2021 The 
Apache Software Foundation.
   
   Apache Qpid, Qpid, Apache, the Apache feather logo, and the Apache Qpid 
project logo are trademarks of
   The Apache Software Foundation.
diff --git a/perftests/src/main/assembly/NOTICE 
b/perftests/src/main/assembly/NOTICE
index 231eae9..0e23d22 100644
--- a/perftests/src/main/assembly/NOTICE
+++ b/perftests/src/main/assembly/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid Performance Tests
-Copyright (c) 2006-2019 The Apache Software Foundation
+Copyright (c) 2006-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/perftests/visualisation-jfc/src/main/assembly/NOTICE 
b/perftests/visualisation-jfc/src/main/assembly/NOTICE
index 0c6176d..9da79fa 100644
--- a/perftests/visualisation-jfc/src/main/assembly/NOTICE
+++ b/perftests/visualisation-jfc/src/main/assembly/NOTICE
@@ -1,5 +1,5 @@
 Qpid Performance Tests Visualisation JFC
-Copyright 2006-2019 The Apache Software Foundation
+Copyright 2006-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms-amqp-0-x] branch master updated: NO-JIRA: bump year in NOTICE files

2021-01-18 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms-amqp-0-x.git


The following commit(s) were added to refs/heads/master by this push:
 new 350f601  NO-JIRA: bump year in NOTICE files
350f601 is described below

commit 350f6017d5e7d3658be67011cdbcd2f318148ea8
Author: Robbie Gemmell 
AuthorDate: Mon Jan 18 16:19:08 2021 +

NO-JIRA: bump year in NOTICE files
---
 NOTICE| 2 +-
 apache-qpid-jms-amqp-0-x/src/main/assembly/NOTICE | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/NOTICE b/NOTICE
index 0d04207..f5320d7 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid JMS AMQP 0-x
-Copyright 2006-2020 The Apache Software Foundation
+Copyright 2006-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/apache-qpid-jms-amqp-0-x/src/main/assembly/NOTICE 
b/apache-qpid-jms-amqp-0-x/src/main/assembly/NOTICE
index 6a731fb..53c5016 100644
--- a/apache-qpid-jms-amqp-0-x/src/main/assembly/NOTICE
+++ b/apache-qpid-jms-amqp-0-x/src/main/assembly/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid JMS AMQP 0-x
-Copyright 2006-2020 The Apache Software Foundation
+Copyright 2006-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton] branch master updated: NO-JIRA: update year in NOTICE file

2021-01-18 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git


The following commit(s) were added to refs/heads/master by this push:
 new 5e7d7af  NO-JIRA: update year in NOTICE file
5e7d7af is described below

commit 5e7d7af8f15586ad1e1d2a6c440043ab0d3feef5
Author: Robbie Gemmell 
AuthorDate: Mon Jan 18 16:15:05 2021 +

NO-JIRA: update year in NOTICE file
---
 NOTICE.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NOTICE.txt b/NOTICE.txt
index a66f30d..7d5ff3c 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache Qpid Proton
-Copyright 2012-2020 The Apache Software Foundation
+Copyright 2012-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton-j] branch master updated: NO-JIRA: update year in NOTICE files

2021-01-18 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-proton-j.git


The following commit(s) were added to refs/heads/master by this push:
 new 61a3eda  NO-JIRA: update year in NOTICE files
61a3eda is described below

commit 61a3edae6baec4db252794eacd80aef6df9086a1
Author: Robbie Gemmell 
AuthorDate: Mon Jan 18 16:13:32 2021 +

NO-JIRA: update year in NOTICE files
---
 NOTICE| 2 +-
 apache-qpid-proton-j/src/main/assembly/NOTICE | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/NOTICE b/NOTICE
index 234ef7f..11ceb18 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid Proton-J
-Copyright 2012-2020 The Apache Software Foundation
+Copyright 2012-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/apache-qpid-proton-j/src/main/assembly/NOTICE 
b/apache-qpid-proton-j/src/main/assembly/NOTICE
index 234ef7f..11ceb18 100644
--- a/apache-qpid-proton-j/src/main/assembly/NOTICE
+++ b/apache-qpid-proton-j/src/main/assembly/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid Proton-J
-Copyright 2012-2020 The Apache Software Foundation
+Copyright 2012-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: NO-JIRA: update years in NOTICE files

2021-01-18 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new afcf6ab  NO-JIRA: update years in NOTICE files
afcf6ab is described below

commit afcf6ab049aaac9bc818197c406e936ed6cc1206
Author: Robbie Gemmell 
AuthorDate: Mon Jan 18 16:09:50 2021 +

NO-JIRA: update years in NOTICE files
---
 NOTICE   | 2 +-
 apache-qpid-jms/src/main/assembly/NOTICE | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/NOTICE b/NOTICE
index d892f4d..e7ef865 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid JMS
-Copyright 2013-2020 The Apache Software Foundation
+Copyright 2013-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/apache-qpid-jms/src/main/assembly/NOTICE 
b/apache-qpid-jms/src/main/assembly/NOTICE
index 9444bf4..a737c9f 100644
--- a/apache-qpid-jms/src/main/assembly/NOTICE
+++ b/apache-qpid-jms/src/main/assembly/NOTICE
@@ -1,5 +1,5 @@
 Apache Qpid JMS
-Copyright 2013-2020 The Apache Software Foundation
+Copyright 2013-2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch asf-site updated: update site content for Qpid JMS 0.56.0

2020-12-18 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 78cb072  update site content for Qpid JMS 0.56.0
78cb072 is described below

commit 78cb072487369424393355b1f7c59abdfd8a1ae2
Author: Robbie Gemmell 
AuthorDate: Fri Dec 18 15:03:53 2020 +

update site content for Qpid JMS 0.56.0
---
 content/components/jms/index.html  |   8 +-
 content/dashboard.html |   2 +-
 content/documentation.html |   4 +-
 content/download.html  |   6 +-
 content/maven.html |   2 +-
 content/releases/index.html|   3 +-
 content/releases/qpid-jms-0.24.0/index.html|   2 +-
 content/releases/qpid-jms-0.25.0/index.html|   2 +-
 content/releases/qpid-jms-0.26.0/index.html|   2 +-
 content/releases/qpid-jms-0.27.0/index.html|   2 +-
 content/releases/qpid-jms-0.28.0/index.html|   2 +-
 content/releases/qpid-jms-0.29.0/index.html|   2 +-
 content/releases/qpid-jms-0.30.0/index.html|   2 +-
 content/releases/qpid-jms-0.31.0/index.html|   2 +-
 content/releases/qpid-jms-0.32.0/index.html|   2 +-
 content/releases/qpid-jms-0.33.0/index.html|   2 +-
 content/releases/qpid-jms-0.34.0/index.html|   2 +-
 content/releases/qpid-jms-0.35.0/index.html|   2 +-
 content/releases/qpid-jms-0.36.0/index.html|   2 +-
 content/releases/qpid-jms-0.37.0/index.html|   2 +-
 content/releases/qpid-jms-0.38.0/index.html|   2 +-
 content/releases/qpid-jms-0.39.0/index.html|   2 +-
 content/releases/qpid-jms-0.40.0/index.html|   2 +-
 content/releases/qpid-jms-0.41.0/index.html|   2 +-
 content/releases/qpid-jms-0.42.0/index.html|   2 +-
 content/releases/qpid-jms-0.43.0/index.html|   2 +-
 content/releases/qpid-jms-0.44.0/index.html|   2 +-
 content/releases/qpid-jms-0.45.0/index.html|   2 +-
 content/releases/qpid-jms-0.46.0/index.html|   2 +-
 content/releases/qpid-jms-0.47.0/index.html|   2 +-
 content/releases/qpid-jms-0.48.0/index.html|   2 +-
 content/releases/qpid-jms-0.49.0/index.html|   2 +-
 content/releases/qpid-jms-0.50.0/index.html|   2 +-
 content/releases/qpid-jms-0.51.0/index.html|   2 +-
 content/releases/qpid-jms-0.52.0/index.html|   2 +-
 content/releases/qpid-jms-0.53.0/index.html|   2 +-
 content/releases/qpid-jms-0.54.0/index.html|   2 +-
 content/releases/qpid-jms-0.55.0/index.html|   2 +-
 .../index.html => qpid-jms-0.56.0/building.html}   |  64 ++-
 content/releases/qpid-jms-0.56.0/docs/index.html   | 584 +
 .../index.html |  24 +-
 .../release-notes.html}|  39 +-
 content/releases/qpid-jms-master/index.html|   2 +-
 input/_transom_config.py   |   2 +-
 input/releases/index.md|   3 +-
 input/releases/qpid-jms-0.56.0/building.md |  46 ++
 input/releases/qpid-jms-0.56.0/docs/index.md   | 386 ++
 input/releases/qpid-jms-0.56.0/index.md|  68 +++
 input/releases/qpid-jms-0.56.0/release-notes.md|  43 ++
 49 files changed, 1246 insertions(+), 104 deletions(-)

diff --git a/content/components/jms/index.html 
b/content/components/jms/index.html
index 2eb2e1a..c4c71e4 100644
--- a/content/components/jms/index.html
+++ b/content/components/jms/index.html
@@ -147,9 +147,9 @@ API
 
 
 http://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html;>API 
reference
-https://github.com/apache/qpid-jms/tree/0.55.0/qpid-jms-examples;>Examples
-Configuration
-Building Qpid 
JMS
+https://github.com/apache/qpid-jms/tree/0.56.0/qpid-jms-examples;>Examples
+Configuration
+Building Qpid 
JMS
 
 
 
@@ -163,7 +163,7 @@ API
 Releases
 
 
-Qpid JMS 0.55.0
+Qpid JMS 0.56.0
 Past releases
 
 
diff --git a/content/dashboard.html b/content/dashboard.html
index d4db85e..1fa568f 100644
--- a/content/dashboard.html
+++ b/content/dashboard.html
@@ -169,7 +169,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
 
 
   Qpid JMS
-  0.55.0
+  0.56.0
   https://issues.apache.org/jira/projects/QPIDJMS;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS+and+resolution+is+null;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS;>All 
issues  https://issues.apache.org/jira/secure/CreateIssue!default.jspa?pid=12314524;>Create
 issue
   https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid/Qpid-

svn commit: r45007 - /release/qpid/jms/0.54.0/

2020-12-17 Thread robbie
Author: robbie
Date: Thu Dec 17 17:32:55 2020
New Revision: 45007

Log:
remove older release

Removed:
release/qpid/jms/0.54.0/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r45006 - /release/qpid/jms/0.56.0/

2020-12-17 Thread robbie
Author: robbie
Date: Thu Dec 17 17:32:36 2020
New Revision: 45006

Log:
add files for qpid-jms 0.56.0

Added:
release/qpid/jms/0.56.0/
  - copied from r45005, dev/qpid/jms/0.56.0-rc1/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: NO-JIRA: update (or delete as unused) some mock usage to stop using deprecated method

2020-12-17 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new 709cee2  NO-JIRA: update (or delete as unused) some mock usage to stop 
using deprecated method
709cee2 is described below

commit 709cee28e2f22b7d860ac14e5a7f570e691ecd43
Author: Robbie Gemmell 
AuthorDate: Thu Dec 17 12:36:16 2020 +

NO-JIRA: update (or delete as unused) some mock usage to stop using 
deprecated method
---
 .../jms/tracing/opentracing/OpenTracingIntegrationTest.java  | 12 
 .../qpid/jms/tracing/opentracing/OpenTracingTracerTest.java  |  9 -
 2 files changed, 8 insertions(+), 13 deletions(-)

diff --git 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/tracing/opentracing/OpenTracingIntegrationTest.java
 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/tracing/opentracing/OpenTracingIntegrationTest.java
index f1e20f5..ed4cf2c 100644
--- 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/tracing/opentracing/OpenTracingIntegrationTest.java
+++ 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/tracing/opentracing/OpenTracingIntegrationTest.java
@@ -74,11 +74,7 @@ import org.apache.qpid.proton.amqp.DescribedType;
 import org.apache.qpid.proton.amqp.Symbol;
 import org.apache.qpid.proton.amqp.UnsignedInteger;
 import org.hamcrest.Matchers;
-import org.junit.Before;
 import org.junit.Test;
-import org.mockito.ArgumentCaptor;
-import org.mockito.Captor;
-import org.mockito.MockitoAnnotations;
 
 import io.opentracing.Span;
 import io.opentracing.SpanContext;
@@ -93,14 +89,6 @@ import io.opentracing.tag.Tags;
 
 public class OpenTracingIntegrationTest extends QpidJmsTestCase {
 
-@Captor
-private ArgumentCaptor> annotationMapCaptor;
-
-@Before
-public void setUp() {
-MockitoAnnotations.initMocks(this);
-}
-
 @Test(timeout = 2)
 public void testSend() throws Exception {
 try (TestAmqpPeer testPeer = new TestAmqpPeer();) {
diff --git 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/tracing/opentracing/OpenTracingTracerTest.java
 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/tracing/opentracing/OpenTracingTracerTest.java
index 2b8ccce..e6a2d90 100644
--- 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/tracing/opentracing/OpenTracingTracerTest.java
+++ 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/tracing/opentracing/OpenTracingTracerTest.java
@@ -41,6 +41,7 @@ import org.apache.qpid.jms.test.QpidJmsTestCase;
 import org.apache.qpid.jms.tracing.JmsTracer;
 import org.apache.qpid.jms.tracing.JmsTracer.DeliveryOutcome;
 import org.apache.qpid.jms.tracing.TraceableMessage;
+import org.junit.After;
 import org.junit.Before;
 import org.junit.Test;
 import org.mockito.ArgumentCaptor;
@@ -67,10 +68,16 @@ public class OpenTracingTracerTest extends QpidJmsTestCase {
 
 @Captor
 private ArgumentCaptor> annotationMapCaptor;
+private AutoCloseable closable;
 
 @Before
 public void setUp() {
-MockitoAnnotations.initMocks(this);
+closable = MockitoAnnotations.openMocks(this);
+}
+
+@After
+public void tearDown() throws Exception {
+closable.close();
 }
 
 @Test


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r44961 - /dev/qpid/jms/0.56.0-rc1/

2020-12-14 Thread robbie
Author: robbie
Date: Mon Dec 14 17:05:46 2020
New Revision: 44961

Log:
add files for qpid-jms 0.56.0 (RC1)

Added:
dev/qpid/jms/0.56.0-rc1/
dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz   (with props)
dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz.asc   (with props)
dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz.sha512
dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz   (with props)
dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz.asc   (with props)
dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz.sha512

Added: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz
--
svn:mime-type = application/gzip

Added: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz.asc
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz.sha512
==
--- dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-bin.tar.gz.sha512 Mon Dec 14 
17:05:46 2020
@@ -0,0 +1 @@
+057daec56d0e822e8f136ca25e36faf2f3924ed66d49979a57dcc8ff99d38f37acf7aee97789028b68dc6564377164b551d8d81bcd5f447c454e83a5315cc6af
  apache-qpid-jms-0.56.0-bin.tar.gz

Added: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz
--
svn:mime-type = application/gzip

Added: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz.asc
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz.sha512
==
--- dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.56.0-rc1/apache-qpid-jms-0.56.0-src.tar.gz.sha512 Mon Dec 14 
17:05:46 2020
@@ -0,0 +1 @@
+eb7ace7f0d9f9858b1f3426c6c8e29f984d5d388e278006f619ee58cea3d1f83eb398b3b8e6e6304667ad3c0c715e7d02ebb622960a678ba4b641d1828dd9c35
  apache-qpid-jms-0.56.0-src.tar.gz



-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: [maven-release-plugin] prepare for next development iteration

2020-12-14 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new 927483f  [maven-release-plugin] prepare for next development iteration
927483f is described below

commit 927483f7ea897a112db27fb032aeadfc58b87a30
Author: Robbie Gemmell 
AuthorDate: Mon Dec 14 16:18:30 2020 +

[maven-release-plugin] prepare for next development iteration
---
 apache-qpid-jms/pom.xml| 2 +-
 pom.xml| 4 ++--
 qpid-jms-client/pom.xml| 2 +-
 qpid-jms-discovery/pom.xml | 2 +-
 qpid-jms-docs/pom.xml  | 2 +-
 qpid-jms-examples/pom.xml  | 2 +-
 qpid-jms-interop-tests/pom.xml | 2 +-
 qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/apache-qpid-jms/pom.xml b/apache-qpid-jms/pom.xml
index a2c5d60..1613cbc 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0
+0.57.0-SNAPSHOT
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index 97e2844..9fdbd85 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  0.56.0
+  0.57.0-SNAPSHOT
   pom
   QpidJMS
   2013
@@ -89,7 +89,7 @@
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 https://gitbox.apache.org/repos/asf?p=qpid-jms.git
-0.56.0
+HEAD
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index 0b8de9e..b7d5198 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0
+0.57.0-SNAPSHOT
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index 42c32ea..321e832 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0
+0.57.0-SNAPSHOT
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index 3786a32..2bb4996 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0
+0.57.0-SNAPSHOT
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index 12a6914..17de51a 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0
+0.57.0-SNAPSHOT
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index ce30851..11fb8ba 100644
--- a/qpid-jms-interop-tests/pom.xml
+++ b/qpid-jms-interop-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0
+0.57.0-SNAPSHOT
   
 
   qpid-jms-interop-tests
diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml 
b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
index 37a2123..1724943 100644
--- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
+++ b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-interop-tests
-0.56.0
+0.57.0-SNAPSHOT
   
 
   qpid-jms-activemq-tests


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] annotated tag 0.56.0 created (now 6b2434f)

2020-12-14 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to annotated tag 0.56.0
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git.


  at 6b2434f  (tag)
 tagging dddaf67a0d97b6a674eba6ad9d238126e2ad8d38 (commit)
 replaces 0.55.0
  by Robbie Gemmell
  on Mon Dec 14 16:18:19 2020 +

- Log -
[maven-release-plugin] copy for tag 0.56.0
---

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: [maven-release-plugin] prepare release 0.56.0

2020-12-14 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new dddaf67  [maven-release-plugin] prepare release 0.56.0
dddaf67 is described below

commit dddaf67a0d97b6a674eba6ad9d238126e2ad8d38
Author: Robbie Gemmell 
AuthorDate: Mon Dec 14 16:17:54 2020 +

[maven-release-plugin] prepare release 0.56.0
---
 apache-qpid-jms/pom.xml| 2 +-
 pom.xml| 4 ++--
 qpid-jms-client/pom.xml| 2 +-
 qpid-jms-discovery/pom.xml | 2 +-
 qpid-jms-docs/pom.xml  | 2 +-
 qpid-jms-examples/pom.xml  | 2 +-
 qpid-jms-interop-tests/pom.xml | 2 +-
 qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/apache-qpid-jms/pom.xml b/apache-qpid-jms/pom.xml
index 72673a2..a2c5d60 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0-SNAPSHOT
+0.56.0
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index 61bc4b5..97e2844 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  0.56.0-SNAPSHOT
+  0.56.0
   pom
   QpidJMS
   2013
@@ -89,7 +89,7 @@
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 
scm:git:https://gitbox.apache.org/repos/asf/qpid-jms.git
 https://gitbox.apache.org/repos/asf?p=qpid-jms.git
-HEAD
+0.56.0
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index c991eca..0b8de9e 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0-SNAPSHOT
+0.56.0
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index d9b2e81..42c32ea 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0-SNAPSHOT
+0.56.0
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index adcd2ac..3786a32 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0-SNAPSHOT
+0.56.0
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index 59470a1..12a6914 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0-SNAPSHOT
+0.56.0
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index cdb255c..ce30851 100644
--- a/qpid-jms-interop-tests/pom.xml
+++ b/qpid-jms-interop-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.56.0-SNAPSHOT
+0.56.0
   
 
   qpid-jms-interop-tests
diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml 
b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
index 519eb25..37a2123 100644
--- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
+++ b/qpid-jms-interop-tests/qpid-jms-activemq-tests/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-interop-tests
-0.56.0-SNAPSHOT
+0.56.0
   
 
   qpid-jms-activemq-tests


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: QPIDJMS-523: update Netty to 4.1.55 (and netty-tcnative test dep to 2.0.35)

2020-12-10 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new 8d32444  QPIDJMS-523: update Netty to 4.1.55 (and netty-tcnative test 
dep to 2.0.35)
8d32444 is described below

commit 8d32444945718c254982dd62abc632794bdcb43a
Author: Robbie Gemmell 
AuthorDate: Thu Dec 10 12:52:24 2020 +

QPIDJMS-523: update Netty to 4.1.55 (and netty-tcnative test dep to 2.0.35)
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1255440..271a20b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,7 +37,7 @@
   
 
 0.33.8
-4.1.53.Final
+4.1.55.Final
 1.7.30
 2.13.3
 1.0-alpha-2
@@ -46,7 +46,7 @@
 0.33.0
 
 
-2.0.31.Final
+2.0.35.Final
 5.15.12
 4.13.1
 1.0


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: QPIDJMS-522: add a 'jms.validateSelector' URI option to toggle the local validation of message selector strings

2020-12-10 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new 0cf96df  QPIDJMS-522: add a 'jms.validateSelector' URI option to 
toggle the local validation of message selector strings
0cf96df is described below

commit 0cf96dfb9de4b5ea4ebc204b0a0cd650ee065adf
Author: Robbie Gemmell 
AuthorDate: Thu Dec 10 12:13:05 2020 +

QPIDJMS-522: add a 'jms.validateSelector' URI option to toggle the local 
validation of message selector strings
---
 .../java/org/apache/qpid/jms/JmsConnection.java|  8 +++
 .../org/apache/qpid/jms/JmsConnectionFactory.java  | 15 
 .../main/java/org/apache/qpid/jms/JmsSession.java  | 27 +++
 .../apache/qpid/jms/meta/JmsConnectionInfo.java| 10 +++
 .../jms/integration/SessionIntegrationTest.java| 84 +-
 .../qpid/jms/meta/JmsConnectionInfoTest.java   |  3 +
 qpid-jms-docs/Configuration.md |  1 +
 7 files changed, 103 insertions(+), 45 deletions(-)

diff --git 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
index 27a5f66..ad75e6b 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
@@ -993,6 +993,14 @@ public class JmsConnection implements AutoCloseable, 
Connection, TopicConnection
 connectionInfo.setValidatePropertyNames(validatePropertyNames);
 }
 
+public boolean isValidateSelector() {
+return connectionInfo.isValidateSelector();
+}
+
+public void setValidateSelector(boolean validateSelector) {
+connectionInfo.setValidateSelector(validateSelector);
+}
+
 public JmsPrefetchPolicy getPrefetchPolicy() {
 return connectionInfo.getPrefetchPolicy();
 }
diff --git 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnectionFactory.java 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnectionFactory.java
index 1bf65d9..c05da14 100644
--- 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnectionFactory.java
+++ 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnectionFactory.java
@@ -95,6 +95,7 @@ public class JmsConnectionFactory extends JNDIStorable 
implements ConnectionFact
 private String queuePrefix = null;
 private String topicPrefix = null;
 private boolean validatePropertyNames = true;
+private boolean validateSelector = true;
 private boolean awaitClientID = true;
 private boolean useDaemonThread = false;
 private long sendTimeout = JmsConnectionInfo.DEFAULT_SEND_TIMEOUT;
@@ -543,6 +544,20 @@ public class JmsConnectionFactory extends JNDIStorable 
implements ConnectionFact
 this.validatePropertyNames = validatePropertyNames;
 }
 
+public boolean isValidateSelector() {
+return validateSelector;
+}
+
+/**
+ * Sets whether local validation is performed of a consumers message 
selector string
+ * conforming to the JMS selector syntax. Default is true.
+ *
+ * @param validateSelector whether to validate consumer message selector 
strings
+ */
+public void setValidateSelector(boolean validateSelector) {
+this.validateSelector = validateSelector;
+}
+
 /**
  * Gets the currently set close timeout.
  *
diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java
index d9c2c42..dc4b303 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java
@@ -474,7 +474,7 @@ public class JmsSession implements AutoCloseable, Session, 
QueueSession, TopicSe
 public MessageConsumer createConsumer(Destination destination, String 
messageSelector, boolean noLocal) throws JMSException {
 checkClosed();
 checkDestination(destination);
-messageSelector = checkSelector(messageSelector);
+messageSelector = checkSelector(messageSelector, 
connection.isValidateSelector());
 JmsDestination dest = 
JmsMessageTransformation.transformDestination(connection, destination);
 JmsMessageConsumer result = new 
JmsMessageConsumer(getNextConsumerId(), this, dest, messageSelector, noLocal);
 result.init();
@@ -501,7 +501,7 @@ public class JmsSession implements AutoCloseable, Session, 
QueueSession, TopicSe
 public QueueReceiver createReceiver(Queue queue, String messageSelector) 
throws JMSException {
 checkClosed();
 checkDestination(queue);
-messageSelector = checkSelector(messageSelector);
+messageSelector = checkSelector(messageSelector, 
connection.isValidateSelector());
 JmsDestination dest

[qpid-broker-j] branch master updated: NO-JIRA: revert commit d3cacdc24c6f43e88532ab6feb95b1c0f6686d01 as it appears it prevents the build working on master.

2020-12-03 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git


The following commit(s) were added to refs/heads/master by this push:
 new fbac750  NO-JIRA: revert commit 
d3cacdc24c6f43e88532ab6feb95b1c0f6686d01 as it appears it prevents the build 
working on master.
fbac750 is described below

commit fbac750e3f6170acd9518216c6d4b23fafed4b8a
Author: Robbie Gemmell 
AuthorDate: Thu Dec 3 09:32:27 2020 +

NO-JIRA: revert commit d3cacdc24c6f43e88532ab6feb95b1c0f6686d01 as it 
appears it prevents the build working on master.
---
 .travis.yml |  2 +-
 etc/logback.xml | 10 --
 pom.xml |  4 ++--
 3 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 94a9ea4..8061245 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,4 +5,4 @@ jdk:
 env:
   - phase="test" pl="" additionalprops=""
   - phase="verify" pl="-pl 
systests/protocol-tests-amqp-0-8,systests/protocol-tests-amqp-0-10,systests/protocol-tests-amqp-1-0,systests/qpid-systests-jms_1.1,systests/qpid-systests-jms_2.0,systests/qpid-systests-http-management"
 additionalprops="-DskipTests=false -DskipITs=false"
-script: "mvn --fail-at-end ${phase} ${pl} ${additionalprops}" 
-DargLine="-Dlogback.configurationFile=${TRAVIS_BUILD_DIR}/etc/logback.xml 
-Dlogback.statusListenerClass=ch.qos.logback.core.status.OnConsoleStatusListener"
 -Dqpid.tests.redirectTestOutputToFile=false
+script: "mvn --fail-at-end ${phase} ${pl} ${additionalprops}"
diff --git a/etc/logback.xml b/etc/logback.xml
index ef30c46..3ef42b2 100644
--- a/etc/logback.xml
+++ b/etc/logback.xml
@@ -17,18 +17,16 @@
 specific language governing permissions and limitations
 under the License.
 -->
-
+
 
 System.out
 
-%date %-5level [%thread] %logger{10} %msg%n
+%msg%n
 
 
 
-
-
-
-
+
+
 
 
 
diff --git a/pom.xml b/pom.xml
index ee62031..619f296 100644
--- a/pom.xml
+++ b/pom.xml
@@ -98,7 +98,7 @@
 1000
 
true
 
{"type":"ProvidedStore","globalAddressDomains":"${dollar.sign}{qpid.globalAddressDomains}"}
-
true
+
 $
 @
 
@@ -984,7 +984,7 @@
   
 **/*Test.java
   
-  
${qpid.tests.redirectTestOutputToFile}
+  true
   ${test.output.dir}
   
 


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-broker-j] branch 7.1.x updated: NO-JIRA: update CI links/badges, prod jobs

2020-12-02 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch 7.1.x
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git


The following commit(s) were added to refs/heads/7.1.x by this push:
 new 97c7621  NO-JIRA: update CI links/badges, prod jobs
97c7621 is described below

commit 97c7621179f5ce3ff182806d406e5418acd534f5
Author: Robbie Gemmell 
AuthorDate: Wed Dec 2 11:49:29 2020 +

NO-JIRA: update CI links/badges, prod jobs
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 6afc788..4fdd597 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@
 
 |CI Process|Status|
 |---|---|
-|Travis CI 
Build|[![https://travis-ci.org/apache/qpid-broker-j.svg?branch=master](https://travis-ci.org/apache/qpid-broker-j.png?branch=master)](https://travis-ci.org/apache/qpid-broker-j?branch=master)|
-|Apache Jenkins CI 
Build|[![Status](https://builds.apache.org/buildStatus/icon?job=Qpid-Broker-J-TestMatrix)](https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-Broker-J-TestMatrix/)|
+|Travis CI 
Build|[![https://travis-ci.com/apache/qpid-broker-j.svg?branch=7.1.x](https://travis-ci.com/apache/qpid-broker-j.png?branch=7.1.x)](https://travis-ci.com/apache/qpid-broker-j)|
+|Apache Jenkins CI Build|[![Build 
Status](https://ci-builds.apache.org/buildStatus/icon?job=Qpid%2FQpid-Broker-J-7.1.x-TestMatrix)](https://ci-builds.apache.org/job/Qpid/job/Qpid-Broker-J-7.1.x-TestMatrix/)|
 
 ---
 


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-broker-j] branch 8.0.x updated: NO-JIRA: update CI links/badges, prod jobs

2020-12-02 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch 8.0.x
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git


The following commit(s) were added to refs/heads/8.0.x by this push:
 new 7a99db7  NO-JIRA: update CI links/badges, prod jobs
7a99db7 is described below

commit 7a99db7998285020481206cf8b8c7eb03d7820d4
Author: Robbie Gemmell 
AuthorDate: Wed Dec 2 11:43:51 2020 +

NO-JIRA: update CI links/badges, prod jobs
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 38bb999..e1f74a5 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@
 
 |CI Process|Status|
 |---|---|
-|Travis CI 
Build|[![https://travis-ci.org/apache/qpid-broker-j.svg?branch=master](https://travis-ci.org/apache/qpid-broker-j.png?branch=master)](https://travis-ci.org/apache/qpid-broker-j?branch=master)|
-|Apache Jenkins CI 
Build|[![Status](https://builds.apache.org/buildStatus/icon?job=Qpid-Broker-J-TestMatrix)](https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-Broker-J-TestMatrix/)|
+|Travis CI 
Build|[![https://travis-ci.com/apache/qpid-broker-j.svg?branch=8.0.x](https://travis-ci.com/apache/qpid-broker-j.png?branch=8.0.x)](https://travis-ci.com/apache/qpid-broker-j)|
+|Apache Jenkins CI Build|[![Build 
Status](https://ci-builds.apache.org/buildStatus/icon?job=Qpid%2FQpid-Broker-J-8.0.x-TestMatrix)](https://ci-builds.apache.org/job/Qpid/job/Qpid-Broker-J-8.0.x-TestMatrix/)|
 
 ---
 


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-broker-j] branch master updated: NO-JIRA: update CI links/badges, prod jobs

2020-12-02 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git


The following commit(s) were added to refs/heads/master by this push:
 new 3bb88e2  NO-JIRA: update CI links/badges, prod jobs
3bb88e2 is described below

commit 3bb88e28fe4e82bb75822ffd2f9fd839adacb3a6
Author: Robbie Gemmell 
AuthorDate: Wed Dec 2 11:35:18 2020 +

NO-JIRA: update CI links/badges, prod jobs
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 38bb999..3c4a495 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@
 
 |CI Process|Status|
 |---|---|
-|Travis CI 
Build|[![https://travis-ci.org/apache/qpid-broker-j.svg?branch=master](https://travis-ci.org/apache/qpid-broker-j.png?branch=master)](https://travis-ci.org/apache/qpid-broker-j?branch=master)|
-|Apache Jenkins CI 
Build|[![Status](https://builds.apache.org/buildStatus/icon?job=Qpid-Broker-J-TestMatrix)](https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-Broker-J-TestMatrix/)|
+|Travis CI 
Build|[![https://travis-ci.com/apache/qpid-broker-j.svg?branch=master](https://travis-ci.com/apache/qpid-broker-j.png?branch=master)](https://travis-ci.com/apache/qpid-broker-j?branch=master)|
+|Apache Jenkins CI Build|[![Build 
Status](https://ci-builds.apache.org/buildStatus/icon?job=Qpid%2FQpid-Broker-J-TestMatrix)](https://ci-builds.apache.org/job/Qpid/job/Qpid-Broker-J-TestMatrix/)|
 
 ---
 


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch asf-site updated: update Travis CI links/badges to reflect job migration from .org to .com site

2020-12-02 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 51c29cc  update Travis CI links/badges to reflect job migration from 
.org to .com site
51c29cc is described below

commit 51c29ccaa9bf487f35eda33646fb447387c66402
Author: Robbie Gemmell 
AuthorDate: Wed Dec 2 11:04:51 2020 +

update Travis CI links/badges to reflect job migration from .org to .com 
site
---
 content/dashboard.html   | 12 ++--
 input/_transom_config.py |  4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/content/dashboard.html b/content/dashboard.html
index aaaf581..d4db85e 100644
--- a/content/dashboard.html
+++ b/content/dashboard.html
@@ -143,7 +143,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
   Qpid Broker-J
   8.0.2
   https://issues.apache.org/jira/projects/QPID;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+QPID+and+resolution+is+null+and+component+in+%28%22Broker-J%22%2C+%22Java+Build%22%2C+%22Java+Documentation%22%2C+%22Java+Performance+Tests%22%2C+%22Java+Tests%22%2C+%22Java+Tools%22%29;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+QPID+and+component+in+%28%22Broker-J%22%2C+%22Java+Build%22%2C+%22Java
 [...]
-  https://travis-ci.org/apache/qpid-broker-j;>https://travis-ci.org/apache/qpid-broker-j.svg?branch=master; 
height="20"/>
+  https://travis-ci.com/github/apache/qpid-broker-j;>https://travis-ci.com/apache/qpid-broker-j.svg?branch=master; 
height="20"/>
   https://gitbox.apache.org/repos/asf/qpid-broker-j.git;>Git 
 https://github.com/apache/qpid-broker-j;>GitHub
 
 
@@ -157,7 +157,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
   Qpid Dispatch
   1.14.0
   https://issues.apache.org/jira/projects/DISPATCH;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+DISPATCH+and+resolution+is+null;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+DISPATCH;>All 
issues  https://issues.apache.org/jira/secure/CreateIssue!default.jspa?pid=12315321;>Create
 issue
-  https://travis-ci.org/apache/qpid-dispatch;>https://travis-ci.org/apache/qpid-dispatch.svg?branch=master; 
height="20"/>
+  https://travis-ci.com/github/apache/qpid-dispatch;>https://travis-ci.com/apache/qpid-dispatch.svg?branch=master; 
height="20"/>
   https://gitbox.apache.org/repos/asf/qpid-dispatch.git;>Git 
 https://github.com/apache/qpid-dispatch;>GitHub
 
 
@@ -171,7 +171,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
   Qpid JMS
   0.55.0
   https://issues.apache.org/jira/projects/QPIDJMS;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS+and+resolution+is+null;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS;>All 
issues  https://issues.apache.org/jira/secure/CreateIssue!default.jspa?pid=12314524;>Create
 issue
-  https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid/Qpid-JMS-Test-JDK8; 
height="20"/> https://travis-ci.org/apache/qpid-jms;>https://travis-ci.org/apache/qpid-jms.svg?branch=master; height="20"/> 
https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8-Windows/activity;>https://builds.apache.org/buildStatus/i [...]
+  https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid/Qpid-JMS-Test-JDK8; 
height="20"/> https://travis-ci.com/github/apache/qpid-jms;>https://travis-ci.com/apache/qpid-jms.svg?branch=master; height="20"/> 
https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8-Windows/activity;>https://builds.apache.org/buildS [...]
   https://gitbox.apache.org/repos/asf/qpid-jms.git;>Git 
 https://github.com/apache/qpid-jms;>GitHub
 
 
@@ -185,14 +185,14 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
   Qpid Proton-J
   0.33.8
   https://issues.apache.org/jira/projects/PROTON;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+PROTON+and+resolution+is+null+and+component+in+%28%22proton-j%22%29;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+PROTON+and+component+in+%28%22proton-j%22%29;>All
 issues  https://issues.apache.org/jira/secure/CreateIssue!default.jspa?pid=12313720;>Create
 issue
-  https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-Proton-J-JDK8/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid/Qpid-Proton-J-JDK8; 
height="20"/> https://travis-ci

[qpid-proton] branch master updated: NO-JIRA: readme fixups, also prod CI jobs

2020-12-02 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git


The following commit(s) were added to refs/heads/master by this push:
 new 0ee9ad7  NO-JIRA: readme fixups, also prod CI jobs
0ee9ad7 is described below

commit 0ee9ad7ff490a4b6a548ed41bef9e5d79783ec3b
Author: Robbie Gemmell 
AuthorDate: Wed Dec 2 10:54:33 2020 +

NO-JIRA: readme fixups, also prod CI jobs
---
 README.md | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 2c445f3..0f15d88 100644
--- a/README.md
+++ b/README.md
@@ -3,13 +3,13 @@ Qpid Proton - AMQP messaging toolkit
 
 Linux/OSX Build | Windows Build
 |---
-[![Linux/OSX Build 
Status](https://travis-ci.org/apache/qpid-proton.svg?branch=master)](https://travis-ci.org/apache/qpid-proton)
 | [![Windows Build 
Status](https://ci.appveyor.com/api/projects/status/github/apache/qpid-proton?branch=master=true)](https://ci.appveyor.com/project/ke4qqq/qpid-proton/branch/master)
+[![Linux/OSX Build 
Status](https://travis-ci.com/apache/qpid-proton.svg?branch=master)](https://travis-ci.com/github/apache/qpid-proton)
 | [![Windows Build 
Status](https://ci.appveyor.com/api/projects/status/github/apache/qpid-proton?branch=master=true)](https://ci.appveyor.com/project/ke4qqq/qpid-proton/branch/master)
 
-Qpid Proton is a high-performance, lightweight messaging library. It can be
-used in the widest range of messaging applications, including brokers, client
-libraries, routers, bridges, proxies, and more. Proton makes it trivial to
-integrate with the AMQP 1.0 ecosystem from any platform, environment, or
-language
+[Qpid Proton](https://qpid.apache.org/proton) is a high-performance, 
lightweight
+messaging library. It can be used in the widest range of messaging 
applications,
+including brokers, client libraries, routers, bridges, proxies, and more.
+Proton makes it trivial to integrate with the AMQP 1.0 ecosystem from any
+platform, environment, or language.
 
 Features
 
@@ -33,7 +33,8 @@ Standard - Built around the AMQP 1.0 messaging standard, 
Proton is not only
 ideal for building out your own messaging applications but also for connecting
 them to the broader ecosystem of AMQP 1.0-based messaging applications.
 
-Please see <https://qpid.apache.org/proton> for more information.
+Please see [https://qpid.apache.org/proton](https://qpid.apache.org/proton)
+for more information.
 
 Getting Started
 ---


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-dispatch] branch master updated: NO-JIRA: readme tweak, prod CI jobs

2020-12-02 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
 new 06eef72  NO-JIRA: readme tweak, prod CI jobs
06eef72 is described below

commit 06eef7265ad815c558bf024b1b973a1672151b0f
Author: Robbie Gemmell 
AuthorDate: Wed Dec 2 10:35:01 2020 +

NO-JIRA: readme tweak, prod CI jobs
---
 README | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/README b/README
index 14f1f06..7d4cc00 100644
--- a/README
+++ b/README
@@ -1,8 +1,9 @@
 Qpid Dispatch
 =
 
-A lightweight AMQP router for building scalable, available, and performant 
messaging
-interconnect.
+Qpid Dispatch is a high-performance, lightweight AMQP 1.0 message router.
+It provides flexible and scalable interconnect between any AMQP endpoints,
+whether they be clients, brokers or other AMQP-enabled services.
 
 Dependencies
 


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton-j] branch master updated: NO-JIRA: more README fixup

2020-12-02 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-proton-j.git


The following commit(s) were added to refs/heads/master by this push:
 new fcdc705  NO-JIRA: more README fixup
fcdc705 is described below

commit fcdc70521186d626490657823289bd952121f0ce
Author: Robbie Gemmell 
AuthorDate: Wed Dec 2 10:15:43 2020 +

NO-JIRA: more README fixup
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 46552af..e009495 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # Apache Qpid Proton-J
 
-[![Linux Build 
Status](https://travis-ci.org/apache/qpid-proton-j.svg?branch=master)](https://travis-ci.com/github/apache/qpid-proton-j)
+[![Linux Build 
Status](https://travis-ci.com/apache/qpid-proton-j.svg?branch=master)](https://travis-ci.com/github/apache/qpid-proton-j)
 [![Windows Build 
Status](https://ci.appveyor.com/api/projects/status/wh587qrxa3c22mh2/branch/master?svg=true)](https://ci.appveyor.com/project/ApacheSoftwareFoundation/qpid-proton-j/branch/master)
 
 


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton-j] branch master updated: NO-JIRA: README updates, prod the CI builds

2020-12-02 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-proton-j.git


The following commit(s) were added to refs/heads/master by this push:
 new feff47c  NO-JIRA: README updates, prod the CI builds
feff47c is described below

commit feff47ca595b8583e48e48b7f9c114ff54e7b51a
Author: Robbie Gemmell 
AuthorDate: Wed Dec 2 10:12:52 2020 +

NO-JIRA: README updates, prod the CI builds
---
 README.md | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index f3fe2ae..46552af 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,11 @@
-Apache Qpid Proton-J
-
+# Apache Qpid Proton-J
 
-[![Linux Build 
Status](https://travis-ci.org/apache/qpid-proton-j.svg?branch=master)](https://travis-ci.org/apache/qpid-proton-j)
+[![Linux Build 
Status](https://travis-ci.org/apache/qpid-proton-j.svg?branch=master)](https://travis-ci.com/github/apache/qpid-proton-j)
 [![Windows Build 
Status](https://ci.appveyor.com/api/projects/status/wh587qrxa3c22mh2/branch/master?svg=true)](https://ci.appveyor.com/project/ApacheSoftwareFoundation/qpid-proton-j/branch/master)
 
 
-Qpid Proton-J is a high-performance, lightweight messaging library. It can be
-used in the widest range of messaging applications, including brokers, client
-libraries, routers, bridges, proxies, and more.
+[Qpid Proton-J](https://qpid.apache.org/proton) is a high-performance, 
lightweight messaging
+library. It can be used in the widest range of messaging applications, 
including brokers,
+clients libraries, routers, bridges, proxies, and more.
 
-Please see http://qpid.apache.org/proton for more information.
+Please see [https://qpid.apache.org/proton](https://qpid.apache.org/proton) 
for more information.


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: NO-JIRA: some readme tweaks, also to prod the CI builds

2020-12-02 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new 361263e  NO-JIRA: some readme tweaks, also to prod the CI builds
361263e is described below

commit 361263e6aebd8345c83db631d5ae20edb466f035
Author: Robbie Gemmell 
AuthorDate: Wed Dec 2 09:48:18 2020 +

NO-JIRA: some readme tweaks, also to prod the CI builds
---
 README.md | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 2077ec7..5503089 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
-# QpidJMS
+# Qpid JMS
 
-The QpidJMS project provides a JMS based client that uses the AMQP v1.0 
protocol.
+[Qpid JMS](https://qpid.apache.org/components/jms/) is a JMS 2.0 client that 
uses
+the AMQP 1.0 protocol, enabling it to interact with various AMQP 1.0 servers.
 
 Below are some quick pointers you might find useful.
 
@@ -34,7 +35,8 @@ consult the README in the qpid-jms-examples module itself.
 
 ## Documentation
 
-There is some basic documentation in the qpid-jms-docs module.
+Documentation source can be found in the qpid-jms-docs module, with a published
+version available on the [website](https://qpid.apache.org/components/jms/).
 
 ## Distribution assemblies
 


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-jms] branch master updated: QPIDJMS-521: ensure ExceptionListener called during unexpected async dispatch failure is allowed to close the Session/Connection

2020-11-27 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git


The following commit(s) were added to refs/heads/master by this push:
 new 8fea843  QPIDJMS-521: ensure ExceptionListener called during 
unexpected async dispatch failure is allowed to close the Session/Connection
8fea843 is described below

commit 8fea843e9b46457f4dda3b21b35c3c16558b723f
Author: Robbie Gemmell 
AuthorDate: Fri Nov 27 16:03:08 2020 +

QPIDJMS-521: ensure ExceptionListener called during unexpected async 
dispatch failure is allowed to close the Session/Connection
---
 .../org/apache/qpid/jms/JmsMessageConsumer.java|  2 +
 .../main/java/org/apache/qpid/jms/JmsSession.java  |  7 ++-
 .../jms/integration/ConsumerIntegrationTest.java   | 67 ++
 3 files changed, 75 insertions(+), 1 deletion(-)

diff --git 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsMessageConsumer.java 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsMessageConsumer.java
index 4afe91c..a8a6b62 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsMessageConsumer.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsMessageConsumer.java
@@ -741,6 +741,7 @@ public class JmsMessageConsumer implements AutoCloseable, 
MessageConsumer, JmsMe
 
 if (dispatchLock.isHeldByCurrentThread()) {
 reclaimLock = true;
+session.setDeliveryThreadCheckEnabled(false);
 dispatchLock.unlock();
 }
 
@@ -749,6 +750,7 @@ public class JmsMessageConsumer implements AutoCloseable, 
MessageConsumer, JmsMe
 } finally {
 if (reclaimLock) {
 dispatchLock.lock();
+session.setDeliveryThreadCheckEnabled(true);
 }
 }
 }
diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java
index bf6d5cd..d9c2c42 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsSession.java
@@ -127,6 +127,7 @@ public class JmsSession implements AutoCloseable, Session, 
QueueSession, TopicSe
 private volatile ThreadPoolExecutor deliveryExecutor;
 private volatile ThreadPoolExecutor completionExcecutor;
 private AtomicReference deliveryThread = new 
AtomicReference();
+private boolean deliveryThreadCheckEnabled = true;
 private AtomicReference completionThread = new 
AtomicReference();
 
 private final AtomicLong consumerIdGenerator = new AtomicLong();
@@ -1277,8 +1278,12 @@ public class JmsSession implements AutoCloseable, 
Session, QueueSession, TopicSe
 }
 }
 
+void setDeliveryThreadCheckEnabled(boolean enabled) {
+deliveryThreadCheckEnabled = enabled;
+}
+
 void checkIsDeliveryThread() throws JMSException {
-if (Thread.currentThread().equals(deliveryThread.get())) {
+if (deliveryThreadCheckEnabled && 
Thread.currentThread().equals(deliveryThread.get())) {
 throw new IllegalStateException("Illegal invocation from 
MessageListener callback");
 }
 }
diff --git 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ConsumerIntegrationTest.java
 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ConsumerIntegrationTest.java
index e0e751c..ca4e973 100644
--- 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ConsumerIntegrationTest.java
+++ 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/ConsumerIntegrationTest.java
@@ -2437,4 +2437,71 @@ public class ConsumerIntegrationTest extends 
QpidJmsTestCase {
 assertEquals("Message payloads not as expected", expectedPayloads, 
receivedPayloads);
 }
 }
+
+@Test(timeout=2)
+public void 
testClosingSessionAndConnectionWithinExceptionListenerDueToAsyncConsumerDeliveryFailure()
 throws Exception {
+final CountDownLatch exceptionListenerCalled = new CountDownLatch(1);
+final CountDownLatch exceptionListenerCompleted = new 
CountDownLatch(1);
+final AtomicReference asyncError = new 
AtomicReference(null);
+final AtomicBoolean messageListenerCalled = new AtomicBoolean();
+
+try (TestAmqpPeer testPeer = new TestAmqpPeer();) {
+final Connection connection = 
testFixture.establishConnecton(testPeer);
+connection.start();
+
+testPeer.expectBegin();
+
+Session session = connection.createSession(false, 
Session.AUTO_ACKNOWLEDGE);
+Queue destination = session.createQueue(getTestName());
+connection.start();
+
+final PropertiesDescribedType properties = new 
PropertiesDescribedType();
+
properties.setContentType(Symbol.valueOf("text/plain;charset=utf-8"));
+
+

[qpid-site] branch asf-site updated: update site content for qpid-jms 0.55.0

2020-11-25 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 4647040  update site content for qpid-jms 0.55.0
4647040 is described below

commit 4647040ce7e30372c12d504eb4a1f44b6024bdfc
Author: Robbie Gemmell 
AuthorDate: Wed Nov 25 15:30:49 2020 +

update site content for qpid-jms 0.55.0
---
 content/components/jms/index.html  |   8 +-
 content/dashboard.html |   2 +-
 content/documentation.html |   4 +-
 content/download.html  |   6 +-
 content/maven.html |   2 +-
 content/releases/index.html|   3 +-
 content/releases/qpid-jms-0.24.0/index.html|   2 +-
 content/releases/qpid-jms-0.25.0/index.html|   2 +-
 content/releases/qpid-jms-0.26.0/index.html|   2 +-
 content/releases/qpid-jms-0.27.0/index.html|   2 +-
 content/releases/qpid-jms-0.28.0/index.html|   2 +-
 content/releases/qpid-jms-0.29.0/index.html|   2 +-
 content/releases/qpid-jms-0.30.0/index.html|   2 +-
 content/releases/qpid-jms-0.31.0/index.html|   2 +-
 content/releases/qpid-jms-0.32.0/index.html|   2 +-
 content/releases/qpid-jms-0.33.0/index.html|   2 +-
 content/releases/qpid-jms-0.34.0/index.html|   2 +-
 content/releases/qpid-jms-0.35.0/index.html|   2 +-
 content/releases/qpid-jms-0.36.0/index.html|   2 +-
 content/releases/qpid-jms-0.37.0/index.html|   2 +-
 content/releases/qpid-jms-0.38.0/index.html|   2 +-
 content/releases/qpid-jms-0.39.0/index.html|   2 +-
 content/releases/qpid-jms-0.40.0/index.html|   2 +-
 content/releases/qpid-jms-0.41.0/index.html|   2 +-
 content/releases/qpid-jms-0.42.0/index.html|   2 +-
 content/releases/qpid-jms-0.43.0/index.html|   2 +-
 content/releases/qpid-jms-0.44.0/index.html|   2 +-
 content/releases/qpid-jms-0.45.0/index.html|   2 +-
 content/releases/qpid-jms-0.46.0/index.html|   2 +-
 content/releases/qpid-jms-0.47.0/index.html|   2 +-
 content/releases/qpid-jms-0.48.0/index.html|   2 +-
 content/releases/qpid-jms-0.49.0/index.html|   2 +-
 content/releases/qpid-jms-0.50.0/index.html|   2 +-
 content/releases/qpid-jms-0.51.0/index.html|   2 +-
 content/releases/qpid-jms-0.52.0/index.html|   2 +-
 content/releases/qpid-jms-0.53.0/index.html|   2 +-
 content/releases/qpid-jms-0.54.0/index.html|   2 +-
 .../index.html => qpid-jms-0.55.0/building.html}   |  62 ++-
 content/releases/qpid-jms-0.55.0/docs/index.html   | 583 +
 .../index.html |  24 +-
 .../release-notes.html}|  37 +-
 content/releases/qpid-jms-master/index.html|   2 +-
 input/_transom_config.py   |   2 +-
 input/releases/index.md|   3 +-
 input/releases/qpid-jms-0.55.0/building.md |  44 ++
 input/releases/qpid-jms-0.55.0/docs/index.md   | 385 ++
 input/releases/qpid-jms-0.55.0/index.md|  68 +++
 input/releases/qpid-jms-0.55.0/release-notes.md|  39 ++
 48 files changed, 1231 insertions(+), 105 deletions(-)

diff --git a/content/components/jms/index.html 
b/content/components/jms/index.html
index 89840ea..2eb2e1a 100644
--- a/content/components/jms/index.html
+++ b/content/components/jms/index.html
@@ -147,9 +147,9 @@ API
 
 
 http://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html;>API 
reference
-https://github.com/apache/qpid-jms/tree/0.54.0/qpid-jms-examples;>Examples
-Configuration
-Building Qpid 
JMS
+https://github.com/apache/qpid-jms/tree/0.55.0/qpid-jms-examples;>Examples
+Configuration
+Building Qpid 
JMS
 
 
 
@@ -163,7 +163,7 @@ API
 Releases
 
 
-Qpid JMS 0.54.0
+Qpid JMS 0.55.0
 Past releases
 
 
diff --git a/content/dashboard.html b/content/dashboard.html
index 757646c..aaaf581 100644
--- a/content/dashboard.html
+++ b/content/dashboard.html
@@ -169,7 +169,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
 
 
   Qpid JMS
-  0.54.0
+  0.55.0
   https://issues.apache.org/jira/projects/QPIDJMS;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS+and+resolution+is+null;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS;>All 
issues  https://issues.apache.org/jira/secure/CreateIssue!default.jspa?pid=12314524;>Create
 issue
   https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid/Qpid-JMS-Test-JDK8; 
height="20"/> https://travis-ci.o

svn commit: r44669 - /release/qpid/jms/0.55.0/

2020-11-24 Thread robbie
Author: robbie
Date: Tue Nov 24 16:06:19 2020
New Revision: 44669

Log:
add files for qpid-jms 0.55.0

Added:
release/qpid/jms/0.55.0/
  - copied from r44668, dev/qpid/jms/0.55.0-rc1/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-site] branch asf-site updated: fix up dashboard page CI build status entries, stale after recent Jenkins move

2020-11-23 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 45c4cbe  fix up dashboard page CI build status entries, stale after 
recent Jenkins move
45c4cbe is described below

commit 45c4cbe909cc5121f84a73bbc203e4bd6dda6aa7
Author: Robbie Gemmell 
AuthorDate: Mon Nov 23 16:34:30 2020 +

fix up dashboard page CI build status entries, stale after recent Jenkins 
move
---
 content/dashboard.html   | 12 ++--
 input/_transom_config.py |  8 
 input/dashboard.md   | 10 +-
 3 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/content/dashboard.html b/content/dashboard.html
index 65e8e48..757646c 100644
--- a/content/dashboard.html
+++ b/content/dashboard.html
@@ -150,7 +150,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
   https://github.com/apache/qpid-cpp/blob/master/README.md;>Qpid 
C++
   1.39.0
   https://issues.apache.org/jira/projects/QPID;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+QPID+and+resolution+is+null+and+component+in+%28%22C%2B%2B+Broker%22%2C+%22C%2B%2B+Build%22%2C+%22C%2B%2B+Client%22%2C+%22C%2B%2B+Clustering%22%2C+%22C%2B%2B+Documentation%22%2C+%22C%2B%2B+Tests%22%2C+%22C%2B%2B+Tools%22%2C+%22.NET+Client%22%2C+%22Perl+Client%22%2C+%22Python+Client+%28Wrapped%29%22%2C+%22QMF%22%2C+%22Ruby+Client%22%29;>Open
 iss [...]
-  https://builds.apache.org/blue/organizations/jenkins/Qpid-cpp-trunk-test/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid-cpp-trunk-test; 
height="20"/> https://ci.appveyor.com/project/ApacheSoftwareFoundation/qpid-cpp/branch/master;>https://ci.appveyor.com/api/projects/status/wma611lkq1fcyo18?svg=true; 
height="20"/>
+  https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-CPP-Test/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid/Qpid-CPP-Test; 
height="20"/> https://ci.appveyor.com/project/ApacheSoftwareFoundation/qpid-cpp/branch/master;>https://ci.appveyor.com/api/projects/status/wma611lkq1fcyo18?svg=true; 
height="20"/>
   https://gitbox.apache.org/repos/asf/qpid-cpp.git;>Git 
 https://github.com/apache/qpid-cpp;>GitHub
 
 
@@ -171,35 +171,35 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
   Qpid JMS
   0.54.0
   https://issues.apache.org/jira/projects/QPIDJMS;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS+and+resolution+is+null;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+QPIDJMS;>All 
issues  https://issues.apache.org/jira/secure/CreateIssue!default.jspa?pid=12314524;>Create
 issue
-  https://builds.apache.org/blue/organizations/jenkins/Qpid-JMS-Test-JDK8/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid-JMS-Test-JDK8; 
height="20"/> https://travis-ci.org/apache/qpid-jms;>https://travis-ci.org/apache/qpid-jms.svg?branch=master; height="20"/> 
https://builds.apache.org/blue/organizations/jenkins/Qpid-JMS-Test-JDK8-Windows/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid-JMS-Te [...]
+  https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8/activity;>https://builds.apache.org/buildStatus/icon?job=Qpid/Qpid-JMS-Test-JDK8; 
height="20"/> https://travis-ci.org/apache/qpid-jms;>https://travis-ci.org/apache/qpid-jms.svg?branch=master; height="20"/> 
https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-JMS-Test-JDK8-Windows/activity;>https://builds.apache.org/buildStatus/i [...]
   https://gitbox.apache.org/repos/asf/qpid-jms.git;>Git 
 https://github.com/apache/qpid-jms;>GitHub
 
 
   Qpid JMS AMQP 0-x
   6.4.0
   https://issues.apache.org/jira/projects/QPID;>Summary 
 https://issues.apache.org/jira/issues/?jql=project+%3D+QPID+and+resolution+is+null+and+component+in+%28%22JMS+AMQP+0-x%22%29;>Open
 issues  https://issues.apache.org/jira/issues/?jql=project+%3D+QPID+and+component+in+%28%22JMS+AMQP+0-x%22%29;>All
 issues  https://issues.apache.org/jira/secure/CreateIssue!default.jspa?pid=12310520;>Create
 issue
-  https://builds.apache.org/job/Qpid-JMS-AMQP-0-x-Broker-J-TestMatrix/;>https://builds.apache.org/buildStatus/icon?job=Qpid-JMS-AMQP-0-x-Broker-J-TestMatrix;
 height="20"/>
+  https://builds.apache.org/job/Qpid/job/Qpid-JMS-AMQP-0-x-Broker-J-TestMatrix;>https://builds.apache.org/buildStatus/icon?job=Qpid/Qpid-JMS-AMQP-0-x-Broker-J-TestMatrix;
 height="20"/>
   https://gitbox.apache.org/repos/asf/qpid-jms-amqp-0-x.git;>Git 
 https://github.com/apache/qpid-jms-amqp-0-x;>GitHub
 
 
   Qpid Proton-J
   0.33.8
   https://issues.apache.org/jira/projects/PROTON;>Summary 
 https:

svn commit: r44600 - /release/qpid/proton/0.33.0/

2020-11-20 Thread robbie
Author: robbie
Date: Fri Nov 20 17:16:42 2020
New Revision: 44600

Log:
add files for qpid-proton 0.33.0

Added:
release/qpid/proton/0.33.0/
  - copied from r44599, dev/qpid/proton/0.33.0-rc3/


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



[qpid-proton] annotated tag 0.33.0 created (now b82a93f)

2020-11-20 Thread robbie
This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to annotated tag 0.33.0
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git.


  at b82a93f  (tag)
 tagging 745c9a01d19ec51bbd607059ef58f9b1a4defad2 (commit)
 replaces 0.33.0-rc2
  by Robbie Gemmell
  on Fri Nov 20 17:15:00 2020 +

- Log -
Release 0.33.0
---

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



svn commit: r44599 - /dev/qpid/jms/0.55.0-rc1/

2020-11-20 Thread robbie
Author: robbie
Date: Fri Nov 20 17:08:53 2020
New Revision: 44599

Log:
add files for qpid-jms 0.55.0 (RC1)

Added:
dev/qpid/jms/0.55.0-rc1/
dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz   (with props)
dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz.asc   (with props)
dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz.sha512
dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz   (with props)
dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz.asc   (with props)
dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz.sha512

Added: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz
--
svn:mime-type = application/gzip

Added: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz.asc
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz.sha512
==
--- dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-bin.tar.gz.sha512 Fri Nov 20 
17:08:53 2020
@@ -0,0 +1 @@
+2c7c7cab51da2069b40167f79412e3f2b342f82850bf2a1fd808280faae4796b38e304dac0ee749350a43937548c65a1bf11e76ff4d16bb6eeb1164278cb1c1b
  apache-qpid-jms-0.55.0-bin.tar.gz

Added: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz
--
svn:mime-type = application/gzip

Added: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz.asc
==
Binary file - no diff available.

Propchange: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz.sha512
==
--- dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.55.0-rc1/apache-qpid-jms-0.55.0-src.tar.gz.sha512 Fri Nov 20 
17:08:53 2020
@@ -0,0 +1 @@
+ff09e1e2ffa47834de7be3c1bd511a24e7dd2fb3b8ad71dcf1bc9b9e99d74eab28b6fbd74db8748404eb1b909833b8ff0ee3fb66398896808155cc238e2dea04
  apache-qpid-jms-0.55.0-src.tar.gz



-
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org



<    2   3   4   5   6   7   8   9   10   11   >