[jenkinsci/jms-messaging-plugin] 1e7217: Add support for Fedora messaging wire format

2020-03-12 Thread Zlopez
  Branch: refs/heads/master

  Home:   https://github.com/jenkinsci/jms-messaging-plugin

  Commit: 1e721769267fe96dea11d158f91bf457bed1b4bc

  
https://github.com/jenkinsci/jms-messaging-plugin/commit/1e721769267fe96dea11d158f91bf457bed1b4bc

  Author: Michal Konečný 

  Date:   2020-03-12 (Thu, 12 Mar 2020)



  Changed paths:

M 
plugin/src/main/java/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessagingWorker.java

M 
plugin/src/main/java/com/redhat/jenkins/plugins/ci/provider/data/RabbitMQPublisherProviderData.java

M 
plugin/src/main/resources/com/redhat/jenkins/plugins/ci/provider/data/RabbitMQPublisherProviderData/RabbitMQPublisherProviderDataDescriptor/rabbitmq-publisher.jelly

A 
src/main/resources/com/redhat/jenkins/plugins/ci/provider/data/RabbitMQPublisherProviderData/help-fedoraMessagingFields.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/provider/data/RabbitMQPublisherProviderData/help-schema.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/provider/data/RabbitMQPublisherProviderData/help-severity.html

M 
ui-tests/src/test/java/com/redhat/jenkins/plugins/ci/integration/RabbitMQMessagingPluginIntegrationTest.java

M 
ui-tests/src/test/java/com/redhat/jenkins/plugins/ci/integration/po/CINotifierPostBuildStep.java



  Log Message:

  ---

  Add support for Fedora messaging wire format



Fedora messaging recently introduced wire format (see

https://fedora-messaging.readthedocs.io/en/latest/wire-format.html).

This commit adds support for the new headers.



Signed-off-by: Michal Konečný 





-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/jms-messaging-plugin/push/refs/heads/master/77b50a-1e7217%40github.com.


[jenkinsci/jms-messaging-plugin] 444956: Fix: Incorrect timestamp format

2020-02-19 Thread Zlopez
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/jms-messaging-plugin
  Commit: 444956ccd86ed9680dd5e78febfa6d2d6924234b
  
https://github.com/jenkinsci/jms-messaging-plugin/commit/444956ccd86ed9680dd5e78febfa6d2d6924234b
  Author: Zlopez 
  Date:   2020-02-19 (Wed, 19 Feb 2020)

  Changed paths:
M 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessagingWorker.java

  Log Message:
  ---
  Fix: Incorrect timestamp format


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/jms-messaging-plugin/push/refs/heads/master/2d72f3-444956%40github.com.


[jenkinsci/jms-messaging-plugin] d6d6a6: Fix: CI_MESSAGE has incorrect format

2020-02-19 Thread Zlopez
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/jms-messaging-plugin
  Commit: d6d6a601379915f18a2c45904bfcc4d2ad0c3ecb
  
https://github.com/jenkinsci/jms-messaging-plugin/commit/d6d6a601379915f18a2c45904bfcc4d2ad0c3ecb
  Author: Zlopez 
  Date:   2020-02-19 (Wed, 19 Feb 2020)

  Changed paths:
M 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessagingWorker.java

  Log Message:
  ---
  Fix: CI_MESSAGE has incorrect format

I noticed that there is difference between FedMsg implementation and RabbitMQ 
implementation and this is probably causing wrong format of CI_MESSAGE.

Fixes #165


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/jms-messaging-plugin/push/refs/heads/master/02cd35-d6d6a6%40github.com.


[jenkinsci/jms-messaging-plugin] 4a3320: Add simple client for RabbitMQ

2020-01-08 Thread Zlopez
  Branch: refs/heads/master

  Home:   https://github.com/jenkinsci/jms-messaging-plugin

  Commit: 4a3320f019ca7900af4b5d3248b6e3dd01681cdf

  
https://github.com/jenkinsci/jms-messaging-plugin/commit/4a3320f019ca7900af4b5d3248b6e3dd01681cdf

  Author: Michal Konečný 

  Date:   2020-01-08 (Wed, 08 Jan 2020)



  Changed paths:

M pom.xml

M src/main/java/com/redhat/jenkins/plugins/ci/GlobalCIConfiguration.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/authentication/AuthenticationMethod.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/authentication/activemq/ActiveMQAuthenticationMethod.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/authentication/activemq/SSLCertificateAuthenticationMethod.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/authentication/activemq/UsernameAuthenticationMethod.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/RabbitMQAuthenticationMethod.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/SSLCertificateAuthenticationMethod.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/UsernameAuthenticationMethod.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/ActiveMqMessagingProvider.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/ActiveMqMessagingWorker.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/FedMsgMessagingWorker.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/JMSMessagingWorker.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/MessageProviderMigrator.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/MessagingProviderOverrides.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessageWatcher.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessagingProvider.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessagingWorker.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/messaging/data/RabbitMQMessage.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/pipeline/CIMessageSenderStep.java

M 
src/main/java/com/redhat/jenkins/plugins/ci/pipeline/CIMessageSubscriberStep.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/provider/data/RabbitMQProviderData.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/provider/data/RabbitMQPublisherProviderData.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/provider/data/RabbitMQSubscriberProviderData.java

A 
src/main/java/com/redhat/jenkins/plugins/ci/threads/RabbitMqTriggerThread.java

A 
src/main/resources/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/SSLCertificateAuthenticationMethod/SSLCertificateAuthenticationMethodDescriptor/help-keypwd.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/SSLCertificateAuthenticationMethod/SSLCertificateAuthenticationMethodDescriptor/help-keystore.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/SSLCertificateAuthenticationMethod/SSLCertificateAuthenticationMethodDescriptor/help-trustpwd.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/SSLCertificateAuthenticationMethod/SSLCertificateAuthenticationMethodDescriptor/help-truststore.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/SSLCertificateAuthenticationMethod/SSLCertificateAuthenticationMethodDescriptor/help-username.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/SSLCertificateAuthenticationMethod/SSLCertificateAuthenticationMethodDescriptor/sslcert.jelly

A 
src/main/resources/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/UsernameAuthenticationMethod/UsernameAuthenticationMethodDescriptor/help-password.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/UsernameAuthenticationMethod/UsernameAuthenticationMethodDescriptor/help-username.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/authentication/rabbitmq/UsernameAuthenticationMethod/UsernameAuthenticationMethodDescriptor/username.jelly

A 
src/main/resources/com/redhat/jenkins/plugins/ci/integration/docker/fixtures/RabbitMQRelayContainer/Dockerfile

A 
src/main/resources/com/redhat/jenkins/plugins/ci/integration/docker/fixtures/RabbitMQRelayContainer/override.conf

A 
src/main/resources/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessagingProvider/config.jelly

A 
src/main/resources/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessagingProvider/help-authenticationMethod.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessagingProvider/help-exchange.html

A 
src/main/resources/com/redhat/jenkins/plugins/ci/messaging/RabbitMQMessagingProvider/help-hostname.html

A