[qpid-proton] 03/03: PROTON-2362: epoll proactor: remove ready list sneak peek optimization causing early task deletion

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

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

commit 996b9b114fdb4682c8114ad700705446ff3a24fd
Author: Cliff Jansen 
AuthorDate: Wed Dec 15 17:54:51 2021 -0800

PROTON-2362: epoll proactor: remove ready list sneak peek optimization 
causing early task deletion
---
 c/src/proactor/epoll.c | 68 +++---
 1 file changed, 9 insertions(+), 59 deletions(-)

diff --git a/c/src/proactor/epoll.c b/c/src/proactor/epoll.c
index 6a5beb4..6207267 100644
--- a/c/src/proactor/epoll.c
+++ b/c/src/proactor/epoll.c
@@ -991,35 +991,6 @@ static inline void pconnection_rearm(pconnection_t *pc, 
int wanted_now) {
   // Return immediately.  pc may have just been freed by another thread.
 }
 
-/* Only call when context switch is imminent.  Sched lock is highly contested. 
*/
-// Call with both task and sched locks.
-static bool pconnection_sched_sync(pconnection_t *pc) {
-  uint32_t sync_events = 0;
-  uint32_t sync_args = pc->tick_pending << 1;
-  if (pc->psocket.sched_io_events) {
-pc->new_events = pc->psocket.sched_io_events;
-pc->psocket.sched_io_events = 0;
-pc->current_arm = 0;  // or outside lock?
-sync_events = pc->new_events;
-  }
-  if (pc->task.sched_ready) {
-pc->task.sched_ready = false;
-schedule_done(>task);
-sync_args |= 1;
-  }
-  pc->task.sched_pending = false;
-
-  if (sync_args || sync_events) {
-// Only replace if poller has found new work for us.
-pc->process_args = (1 << 2) | sync_args;
-pc->process_events = sync_events;
-  }
-
-  // Indicate if there are free proactor threads
-  pn_proactor_t *p = pc->task.proactor;
-  return p->poller_suspended || p->suspend_list_head;
-}
-
 /* Call with task lock and having done a write_flush() to "know" the value of 
wbuf_remaining */
 static inline bool pconnection_work_pending(pconnection_t *pc) {
   if (pc->new_events || pni_task_wake_pending(>task) || pc->tick_pending 
|| pc->queued_disconnect)
@@ -1038,14 +1009,9 @@ static void pconnection_done(pconnection_t *pc) {
   bool self_sched = false;
   lock(>task.mutex);
   pc->task.working = false;  // So we can schedule() ourself if necessary.  We 
remain the de facto
- // working task instance while the lock is held.  
Need sched_sync too to drain
- // a possible stale sched_ready.
+ // working task instance while the lock is held.
   pc->hog_count = 0;
   bool has_event = pconnection_has_event(pc);
-  // Do as little as possible while holding the sched lock
-  lock(>sched_mutex);
-  pconnection_sched_sync(pc);
-  unlock(>sched_mutex);
 
   if (has_event || pconnection_work_pending(pc)) {
 self_sched = true;
@@ -1295,9 +1261,6 @@ static pn_event_batch_t 
*pconnection_process(pconnection_t *pc, uint32_t events,
   }
 
   // Never stop working while work remains.  hog_count exception to this rule 
is elsewhere.
-  lock(>task.proactor->sched_mutex);
-  bool workers_free = pconnection_sched_sync(pc);
-  unlock(>task.proactor->sched_mutex);
 
   if (pconnection_work_pending(pc)) {
 goto retry;  // TODO: get rid of goto without adding more locking
@@ -1314,8 +1277,13 @@ static pn_event_batch_t 
*pconnection_process(pconnection_t *pc, uint32_t events,
 }
   }
 
+  // check one last time for new io before context switch
+  bool workers_free;
+  pn_proactor_t *p = pc->task.proactor;
+  lock(>sched_mutex);
+  workers_free = (p->suspend_list_head != NULL);
+  unlock(>sched_mutex);
   if (workers_free && !pc->task.closing && !pc->io_doublecheck) {
-// check one last time for new io before context switch
 pc->io_doublecheck = true;
 pc->read_blocked = false;
 pc->write_blocked = false;
@@ -1831,25 +1799,7 @@ static void listener_done(pn_listener_t *l) {
   bool notify = false;
   l->task.working = false;
 
-  lock(>sched_mutex);
-  int n_events = 0;
-  for (size_t i = 0; i < l->acceptors_size; i++) {
-psocket_t *ps = >acceptors[i].psocket;
-if (ps->sched_io_events) {
-  ps->working_io_events = ps->sched_io_events;
-  ps->sched_io_events = 0;
-}
-if (ps->working_io_events)
-  n_events++;
-  }
-
-  if (l->task.sched_ready) {
-l->task.sched_ready = false;
-schedule_done(>task);
-  }
-  unlock(>sched_mutex);
-
-  if (!n_events && listener_can_free(l)) {
+  if (listener_can_free(l)) {
 unlock(>task.mutex);
 pn_listener_free(l);
 lock(>sched_mutex);
@@ -1859,7 +1809,7 @@ static void listener_done(pn_listener_t *l) {
 if (notify) notify_poller(p);
 if (resume_thread) resume(p, resume_thread);
 return;
-  } else if (n_events || listener_has_event(l))
+  } else if (listener_has_event(l))
 notify = schedule(>task);
   unlock(>task.mutex);
 

-
To unsubscribe, e-mail: 

[qpid-proton] 01/03: PROTON-2362: epoll proactor: prevent opportunistic warm task from running twice

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

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

commit 4f8ac48c48e66d1650308bc1be694dae3215fc9a
Author: Cliff Jansen 
AuthorDate: Wed Dec 15 17:43:30 2021 -0800

PROTON-2362: epoll proactor: prevent opportunistic warm task from running 
twice
---
 c/src/proactor/epoll-internal.h |  4 ++--
 c/src/proactor/epoll.c  | 46 +++--
 2 files changed, 32 insertions(+), 18 deletions(-)

diff --git a/c/src/proactor/epoll-internal.h b/c/src/proactor/epoll-internal.h
index 8e9e1b2..155277b 100644
--- a/c/src/proactor/epoll-internal.h
+++ b/c/src/proactor/epoll-internal.h
@@ -102,7 +102,7 @@ typedef struct task_t {
   tslot_t *prev_runner;
   bool sched_ready;
   bool sched_pending;   /* If true, one or more unseen epoll or other 
events to process() */
-  bool runnable ;   /* on one of the runnable lists */
+  int runnables_idx;/* 0 means unset, idx-1 is array position */
 } task_t;
 
 typedef enum {
@@ -198,7 +198,7 @@ struct pn_proactor_t {
   task_t *resched_cutoff; // last resched task of current poller work 
snapshot.  TODO: superseded by polled_resched_count?
   task_t *resched_next;
   unsigned int resched_count;
-  unsigned int polled_resched_count; 
+  unsigned int polled_resched_count;
   pmutex tslot_mutex;
   int earmark_count;
   bool earmark_drain;
diff --git a/c/src/proactor/epoll.c b/c/src/proactor/epoll.c
index ea2e25a..2363f48 100644
--- a/c/src/proactor/epoll.c
+++ b/c/src/proactor/epoll.c
@@ -47,6 +47,8 @@
 non-proactor-task -> proactor-task
 tslot -> sched
 
+ TODO: doc new work: warm (assigned), earmarked (assigned), runnables 
(unordered), sched_ready
+ list (ordered), resched list (ordered).
  TODO: document role of sched_pending and how sched_XXX (i.e. sched_interrupt)
  transitions from "private to the scheduler" to "visible to the task".
  TODO: document task.working duration can be long: from xxx_process() to 
xxx_done() or null batch.
@@ -442,7 +444,7 @@ static void assign_thread(tslot_t *ts, task_t *tsk) {
   assert(!tsk->runner);
   tsk->runner = ts;
   tsk->prev_runner = NULL;
-  tsk->runnable = false;
+  tsk->runnables_idx = 0;
   ts->task = tsk;
   ts->prev_task = NULL;
 }
@@ -539,10 +541,9 @@ static void remove_earmark(tslot_t *ts) {
 static void make_runnable(task_t *tsk) {
   pn_proactor_t *p = tsk->proactor;
   assert(p->n_runnables <= p->runnables_capacity);
-  assert(!tsk->runnable);
+  assert(!tsk->runnables_idx);
   if (tsk->runner) return;
 
-  tsk->runnable = true;
   // Track it as normal or warm or earmarked
   if (pni_warm_sched) {
 tslot_t *ts = tsk->prev_runner;
@@ -552,8 +553,11 @@ static void make_runnable(task_t *tsk) {
   p->warm_runnables[p->n_warm_runnables++] = tsk;
   assign_thread(ts, tsk);
 }
-else
-  p->runnables[p->n_runnables++] = tsk;
+else {
+  p->runnables[p->n_runnables] = tsk;
+  tsk->runnables_idx = p->n_runnables + 1; // off by one accounting
+  p->n_runnables++;
+}
 return;
   }
   if (ts->state == UNUSED && !p->earmark_drain) {
@@ -563,7 +567,9 @@ static void make_runnable(task_t *tsk) {
   }
 }
   }
-  p->runnables[p->n_runnables++] = tsk;
+  p->runnables[p->n_runnables] = tsk;
+  tsk->runnables_idx = p->n_runnables + 1; // off by one accounting
+  p->n_runnables++;
 }
 
 
@@ -2339,7 +2345,7 @@ static task_t *post_event(pn_proactor_t *p, struct 
epoll_event *evp) {
 break;
   }
   }
-  if (tsk && !tsk->runnable && !tsk->runner && !on_sched_ready_list(tsk, p))
+  if (tsk && !tsk->runnables_idx && !tsk->runner && !on_sched_ready_list(tsk, 
p))
 return tsk;
   return NULL;
 }
@@ -2348,7 +2354,7 @@ static task_t *post_event(pn_proactor_t *p, struct 
epoll_event *evp) {
 static inline task_t *post_ready(pn_proactor_t *p, task_t *tsk) {
   tsk->sched_ready = true;
   tsk->sched_pending = true;
-  if (!tsk->runnable && !tsk->runner)
+  if (!tsk->runnables_idx && !tsk->runner)
 return tsk;
   return NULL;
 }
@@ -2386,33 +2392,38 @@ static task_t *next_runnable(pn_proactor_t *p, tslot_t 
*ts) {
 return ts->task;
   }
 
-  // warm pairing ?
+  // Take any runnables task if it results in a warm pairing.
   task_t *tsk = ts->prev_task;
-  if (tsk && (tsk->runnable)) {
+  if (tsk && (tsk->runnables_idx)) {
+// A task can self delete, so don't allow it to run twice.
+task_t **runnables_slot = >runnables[tsk->runnables_idx -1];
+assert(*runnables_slot == tsk);
+*runnables_slot = NULL;
 assign_thread(ts, tsk);
 return tsk;
   }
 
-  // check for an unassigned runnable task or ready list task
+  // check for remaining runnable tasks
   if (p->n_runnables) {
 // Any unclaimed runnable?
 while (p->n_runnables) {
   tsk = p->runnables[p->next_runnable++];
   if (p->n_runnables == 

[qpid-proton] 02/03: PROTON-2362: epoll proactor: fix locking in listener overflow processing

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

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

commit cfd300e7d41ddfd39ae3e130fde8d1d654cfd099
Author: Cliff Jansen 
AuthorDate: Wed Dec 15 17:48:20 2021 -0800

PROTON-2362: epoll proactor: fix locking in listener overflow processing
---
 c/src/proactor/epoll-internal.h |  1 +
 c/src/proactor/epoll.c  | 17 -
 2 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/c/src/proactor/epoll-internal.h b/c/src/proactor/epoll-internal.h
index 155277b..f0afc9e 100644
--- a/c/src/proactor/epoll-internal.h
+++ b/c/src/proactor/epoll-internal.h
@@ -302,6 +302,7 @@ struct pn_listener_t {
   size_t pending_count;  /* number of pending accepted connections 
*/
   size_t backlog; /* size of pending accepted array */
   bool close_dispatched;
+  int overflow_count;
   uint32_t sched_io_events;
 };
 
diff --git a/c/src/proactor/epoll.c b/c/src/proactor/epoll.c
index 2363f48..6a5beb4 100644
--- a/c/src/proactor/epoll.c
+++ b/c/src/proactor/epoll.c
@@ -715,6 +715,7 @@ static acceptor_t *acceptor_list_next(acceptor_t **start) {
 // Add an overflowing acceptor to the overflow list. Called with listener task 
lock held.
 static void acceptor_set_overflow(acceptor_t *a) {
   a->overflowed = true;
+  a->listener->overflow_count++;
   pn_proactor_t *p = a->listener->task.proactor;
   lock(>overflow_mutex);
   acceptor_list_append(>overflow, a);
@@ -740,6 +741,7 @@ static void proactor_rearm_overflow(pn_proactor_t *p) {
 assert(!a->armed);
 assert(a->overflowed);
 a->overflowed = false;
+l->overflow_count++;
 if (rearming) {
   rearm(p, >psocket.epoll_io);
   a->armed = true;
@@ -1617,7 +1619,7 @@ void pn_proactor_listen(pn_proactor_t *p, pn_listener_t 
*l, const char *addr, in
 
 // call with lock held and task.working false
 static inline bool listener_can_free(pn_listener_t *l) {
-  return l->task.closing && l->close_dispatched && !l->task.ready && 
!l->active_count;
+  return l->task.closing && l->close_dispatched && !l->task.ready && 
!l->active_count && !l->overflow_count;
 }
 
 static inline void listener_final_free(pn_listener_t *l) {
@@ -1675,10 +1677,6 @@ static void listener_begin_close(pn_listener_t* l) {
 }
 assert(!l->pending_count);
 
-unlock(>task.mutex);
-/* Remove all acceptors from the overflow list.  closing flag prevents 
re-insertion.*/
-proactor_rearm_overflow(pn_listener_proactor(l));
-lock(>task.mutex);
 pn_collector_put(l->collector, PN_CLASSCLASS(pn_listener), l, 
PN_LISTENER_CLOSE);
   }
 }
@@ -1799,8 +1797,17 @@ static pn_event_t *listener_batch_next(pn_event_batch_t 
*batch) {
 static void listener_done(pn_listener_t *l) {
   pn_proactor_t *p = l->task.proactor;
   tslot_t *ts = l->task.runner;
+
   lock(>task.mutex);
 
+  if (l->close_dispatched && l->overflow_count) {
+unlock(>task.mutex);
+/* Remove all acceptors from the overflow list.  closing flag prevents 
re-insertion.*/
+proactor_rearm_overflow(pn_listener_proactor(l));
+lock(>task.mutex);
+assert(l->overflow_count == 0);
+  }
+
   // Just in case the app didn't accept all the pending accepts
   // Shuffle the list back to start at 0
   memmove(>pending_accepteds[0], >pending_accepteds[l->pending_first], 
l->pending_count * sizeof(accepted_t));

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



[qpid-proton] branch main updated (89082f1 -> 996b9b1)

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

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


from 89082f1  PROTON-2476: Restore truncation behaviour for transfer frame 
traces
 new 4f8ac48  PROTON-2362: epoll proactor: prevent opportunistic warm task 
from running twice
 new cfd300e  PROTON-2362: epoll proactor: fix locking in listener overflow 
processing
 new 996b9b1  PROTON-2362: epoll proactor: remove ready list sneak peek 
optimization causing early task deletion

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:
 c/src/proactor/epoll-internal.h |   5 +-
 c/src/proactor/epoll.c  | 131 
 2 files changed, 54 insertions(+), 82 deletions(-)

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



svn commit: r51470 - /dev/qpid/jms/0.60.1-rc1/

2021-12-15 Thread robbie
Author: robbie
Date: Wed Dec 15 17:15:21 2021
New Revision: 51470

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

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

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

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

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

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

Added: dev/qpid/jms/0.60.1-rc1/apache-qpid-jms-0.60.1-bin.tar.gz.sha512
==
--- dev/qpid/jms/0.60.1-rc1/apache-qpid-jms-0.60.1-bin.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.60.1-rc1/apache-qpid-jms-0.60.1-bin.tar.gz.sha512 Wed Dec 15 
17:15:21 2021
@@ -0,0 +1 @@
+a3878e2f1a444122109db85185e989e5a3ebc134b63f2494c3064cea11200a1b865801995c12ee2581423fe8e46b769915ba2abf05adff95dbc5ca48a07ce38d
  apache-qpid-jms-0.60.1-bin.tar.gz

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

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

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

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

Added: dev/qpid/jms/0.60.1-rc1/apache-qpid-jms-0.60.1-src.tar.gz.sha512
==
--- dev/qpid/jms/0.60.1-rc1/apache-qpid-jms-0.60.1-src.tar.gz.sha512 (added)
+++ dev/qpid/jms/0.60.1-rc1/apache-qpid-jms-0.60.1-src.tar.gz.sha512 Wed Dec 15 
17:15:21 2021
@@ -0,0 +1 @@
+9390ca21324d7407c60718c3facf87bbb78b3bfcf00936c189f6fdbcd36432db0445719bca84c567368ffa9e24c75fafe210793c32e3fe0bcf4fb9c6a852795e
  apache-qpid-jms-0.60.1-src.tar.gz



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



[qpid-dispatch] branch dependabot/npm_and_yarn/console/react/patternfly/patternfly-4.164.2 created (now d6e5eec)

2021-12-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/console/react/patternfly/patternfly-4.164.2
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git.


  at d6e5eec  Bump @patternfly/patternfly from 4.125.3 to 4.164.2 in 
/console/react

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-dispatch] branch dependabot/npm_and_yarn/console/react/patternfly/react-topology-4.28.1 created (now cb4ac06)

2021-12-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/console/react/patternfly/react-topology-4.28.1
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git.


  at cb4ac06  Bump @patternfly/react-topology from 4.9.42 to 4.28.1 in 
/console/react

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-dispatch] branch dependabot/npm_and_yarn/console/react/patternfly/react-icons-4.32.1 created (now 672e663)

2021-12-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/console/react/patternfly/react-icons-4.32.1
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git.


  at 672e663  Bump @patternfly/react-icons from 4.11.8 to 4.32.1 in 
/console/react

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-dispatch] branch dependabot/npm_and_yarn/console/react/patternfly/react-styles-4.31.1 created (now ea88067)

2021-12-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/console/react/patternfly/react-styles-4.31.1
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git.


  at ea88067  Bump @patternfly/react-styles from 4.11.8 to 4.31.1 in 
/console/react

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 0.x updated: [maven-release-plugin] prepare for next development iteration

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

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


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

commit 0c88ee82efa731415201c2ed0f238105b5e31158
Author: Robbie Gemmell 
AuthorDate: Wed Dec 15 16:53:16 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 5bb5808..18c6f5c 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.60.1
+0.61.0-SNAPSHOT
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index 8e3b086..51dd785 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  0.60.1
+  0.61.0-SNAPSHOT
   pom
   QpidJMS
   2013
@@ -91,7 +91,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.60.1
+0.x
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index 19283b7..bbc8dd2 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.60.1
+0.61.0-SNAPSHOT
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index 72eedc3..5c9edd4 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.60.1
+0.61.0-SNAPSHOT
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index 6acc909..bf7cf02 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.60.1
+0.61.0-SNAPSHOT
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index e5eadca..017b244 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.60.1
+0.61.0-SNAPSHOT
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index 573d093..d20780e 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.60.1
+0.61.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 b681d54..1757140 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.60.1
+0.61.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.60.1 created (now 88bd32b)

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

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


  at 88bd32b  (tag)
 tagging 0f343a40086e01f333b5fe44fd18f1438e35c740 (commit)
 replaces 0.59.0
  by Robbie Gemmell
  on Wed Dec 15 16:53:05 2021 +

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

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 0.x updated: [maven-release-plugin] prepare release 0.60.1

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

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


The following commit(s) were added to refs/heads/0.x by this push:
 new 0f343a4  [maven-release-plugin] prepare release 0.60.1
0f343a4 is described below

commit 0f343a40086e01f333b5fe44fd18f1438e35c740
Author: Robbie Gemmell 
AuthorDate: Wed Dec 15 16:52:09 2021 +

[maven-release-plugin] prepare release 0.60.1
---
 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 18c6f5c..5bb5808 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.61.0-SNAPSHOT
+0.60.1
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index 51dd785..8e3b086 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  0.61.0-SNAPSHOT
+  0.60.1
   pom
   QpidJMS
   2013
@@ -91,7 +91,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.x
+0.60.1
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index bbc8dd2..19283b7 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.61.0-SNAPSHOT
+0.60.1
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index 5c9edd4..72eedc3 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.61.0-SNAPSHOT
+0.60.1
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index bf7cf02..6acc909 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.61.0-SNAPSHOT
+0.60.1
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index 017b244..e5eadca 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-0.61.0-SNAPSHOT
+0.60.1
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index d20780e..573d093 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.61.0-SNAPSHOT
+0.60.1
   
 
   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 1757140..b681d54 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.61.0-SNAPSHOT
+0.60.1
   
 
   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: r51468 - in /dev/qpid/jms: 0.60.0-rc1/ 1.3.0-rc1/ 1.4.0-rc1/

2021-12-15 Thread robbie
Author: robbie
Date: Wed Dec 15 16:51:31 2021
New Revision: 51468

Log:
remove old RCs

Removed:
dev/qpid/jms/0.60.0-rc1/
dev/qpid/jms/1.3.0-rc1/
dev/qpid/jms/1.4.0-rc1/


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



svn commit: r51467 - /dev/qpid/jms/1.4.1-rc1/

2021-12-15 Thread robbie
Author: robbie
Date: Wed Dec 15 16:37:02 2021
New Revision: 51467

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

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

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

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

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

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

Added: dev/qpid/jms/1.4.1-rc1/apache-qpid-jms-1.4.1-bin.tar.gz.sha512
==
--- dev/qpid/jms/1.4.1-rc1/apache-qpid-jms-1.4.1-bin.tar.gz.sha512 (added)
+++ dev/qpid/jms/1.4.1-rc1/apache-qpid-jms-1.4.1-bin.tar.gz.sha512 Wed Dec 15 
16:37:02 2021
@@ -0,0 +1 @@
+940848612ae03ef5acf5b3550c90f80974db73b6c326b9300665a2425baafe3ec0b4fabbfd3dc05f282a1daf30121de905291a15c380f239f0f63abbbecbeec0
  apache-qpid-jms-1.4.1-bin.tar.gz

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

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

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

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

Added: dev/qpid/jms/1.4.1-rc1/apache-qpid-jms-1.4.1-src.tar.gz.sha512
==
--- dev/qpid/jms/1.4.1-rc1/apache-qpid-jms-1.4.1-src.tar.gz.sha512 (added)
+++ dev/qpid/jms/1.4.1-rc1/apache-qpid-jms-1.4.1-src.tar.gz.sha512 Wed Dec 15 
16:37:02 2021
@@ -0,0 +1 @@
+3b5988eaaea06e9e85cb7e40b73735ac0f792b44728d67ba8250d5195bd93fd263d461eb724ec6a3eb2cf0a165be83adffabea2ed9cd2f40a7d7b615d8ade530
  apache-qpid-jms-1.4.1-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-12-15 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 7641bcb  [maven-release-plugin] prepare for next development iteration
7641bcb is described below

commit 7641bcb770e1c1a008293d7c1f941d0ca7575409
Author: Robbie Gemmell 
AuthorDate: Wed Dec 15 16:15:21 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 5c8c34d..4c5c23b 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.4.1
+1.5.0-SNAPSHOT
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index b034566..c704efa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  1.4.1
+  1.5.0-SNAPSHOT
   pom
   QpidJMS
   2013
@@ -91,7 +91,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
-1.4.1
+HEAD
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index 65fb024..00b456b 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.4.1
+1.5.0-SNAPSHOT
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index 7cd8526..32a7a5e 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.4.1
+1.5.0-SNAPSHOT
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index 5c544e8..960f0d3 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.4.1
+1.5.0-SNAPSHOT
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index 08de67f..a6d59ec 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.4.1
+1.5.0-SNAPSHOT
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index 0689aae..d0e5278 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
-1.4.1
+1.5.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 68afb2a..0294c73 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
-1.4.1
+1.5.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 1.4.1 created (now d00070e)

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

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


  at d00070e  (tag)
 tagging 941d39b00abb5185e507abae39f51ef8180a1ab4 (commit)
 replaces 1.3.0
  by Robbie Gemmell
  on Wed Dec 15 16:15:11 2021 +

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

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 1.4.1

2021-12-15 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 941d39b  [maven-release-plugin] prepare release 1.4.1
941d39b is described below

commit 941d39b00abb5185e507abae39f51ef8180a1ab4
Author: Robbie Gemmell 
AuthorDate: Wed Dec 15 16:12:32 2021 +

[maven-release-plugin] prepare release 1.4.1
---
 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 4c5c23b..5c8c34d 100644
--- a/apache-qpid-jms/pom.xml
+++ b/apache-qpid-jms/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.5.0-SNAPSHOT
+1.4.1
   
   4.0.0
 
diff --git a/pom.xml b/pom.xml
index c704efa..b034566 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
   org.apache.qpid
   qpid-jms-parent
-  1.5.0-SNAPSHOT
+  1.4.1
   pom
   QpidJMS
   2013
@@ -91,7 +91,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
+1.4.1
   
 
   
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index 00b456b..65fb024 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.5.0-SNAPSHOT
+1.4.1
   
 
   qpid-jms-client
diff --git a/qpid-jms-discovery/pom.xml b/qpid-jms-discovery/pom.xml
index 32a7a5e..7cd8526 100644
--- a/qpid-jms-discovery/pom.xml
+++ b/qpid-jms-discovery/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.5.0-SNAPSHOT
+1.4.1
   
 
   qpid-jms-discovery
diff --git a/qpid-jms-docs/pom.xml b/qpid-jms-docs/pom.xml
index 960f0d3..5c544e8 100644
--- a/qpid-jms-docs/pom.xml
+++ b/qpid-jms-docs/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.5.0-SNAPSHOT
+1.4.1
   
   4.0.0
 
diff --git a/qpid-jms-examples/pom.xml b/qpid-jms-examples/pom.xml
index a6d59ec..08de67f 100644
--- a/qpid-jms-examples/pom.xml
+++ b/qpid-jms-examples/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.qpid
 qpid-jms-parent
-1.5.0-SNAPSHOT
+1.4.1
   
 
   qpid-jms-examples
diff --git a/qpid-jms-interop-tests/pom.xml b/qpid-jms-interop-tests/pom.xml
index d0e5278..0689aae 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
-1.5.0-SNAPSHOT
+1.4.1
   
 
   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 0294c73..68afb2a 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
-1.5.0-SNAPSHOT
+1.4.1
   
 
   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.60.0 deleted (was 898b9e0)

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

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


*** WARNING: tag 0.60.0 was deleted! ***

   tag was  898b9e0

The revisions that were on this annotated tag 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-jms] annotated tag 1.4.0 deleted (was b679113)

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

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


*** WARNING: tag 1.4.0 was deleted! ***

   tag was  b679113

The revisions that were on this annotated tag 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-jms] 02/02: QPIDJMS-556: update test+examples slf4j-log4j dep to 2.16.0

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

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

commit d796a7a615a6baaf8f043f64bd2d4678a5499451
Author: Robbie Gemmell 
AuthorDate: Wed Dec 15 15:42:57 2021 +

QPIDJMS-556: update test+examples slf4j-log4j dep to 2.16.0

(cherry picked from commit 1071f065ef2da230d2edea16ba1df15d51e403a1)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 64003d3..51dd785 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,7 +39,7 @@
 0.33.10
 4.1.72.Final
 1.7.30
-2.15.0
+2.16.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-jms] 01/02: NO-JIRA: bump travis macos image to match main

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

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

commit 9b8baaffeb02291e13807210f71adda5de2e48f5
Author: Robbie Gemmell 
AuthorDate: Tue May 18 19:44:30 2021 +0100

NO-JIRA: bump travis macos image to match main
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 4125798..2ede47a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,7 +8,7 @@ matrix:
   jdk: openjdk11
   dist: xenial
 - os: osx
-  osx_image: xcode9.3
+  osx_image: xcode12.5
 cache:
   directories:
   - $HOME/.m2

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



[qpid-jms] branch 0.x updated (a2cabdd -> d796a7a)

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

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


from a2cabdd  [maven-release-plugin] prepare for next development iteration
 new 9b8baaf  NO-JIRA: bump travis macos image to match main
 new d796a7a  QPIDJMS-556: update test+examples slf4j-log4j dep to 2.16.0

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:
 .travis.yml | 2 +-
 pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 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-556: update test+examples slf4j-log4j dep to 2.16.0

2021-12-15 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 1071f06  QPIDJMS-556: update test+examples slf4j-log4j dep to 2.16.0
1071f06 is described below

commit 1071f065ef2da230d2edea16ba1df15d51e403a1
Author: Robbie Gemmell 
AuthorDate: Wed Dec 15 15:42:57 2021 +

QPIDJMS-556: update test+examples slf4j-log4j dep to 2.16.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0a4eabb..c704efa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,7 +39,7 @@
 0.33.10
 4.1.72.Final
 1.7.30
-2.15.0
+2.16.0
 1.0-alpha-2
 
 

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