Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 44FBC200D7D for ; Wed, 13 Dec 2017 20:16:39 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 43B4D160C30; Wed, 13 Dec 2017 19:16:39 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E64A4160C31 for ; Wed, 13 Dec 2017 20:16:36 +0100 (CET) Received: (qmail 30749 invoked by uid 500); 13 Dec 2017 19:16:36 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 29977 invoked by uid 99); 13 Dec 2017 19:16:35 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Dec 2017 19:16:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E876CF170F; Wed, 13 Dec 2017 19:16:32 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bsnyder@apache.org To: commits@activemq.apache.org Date: Wed, 13 Dec 2017 19:17:09 -0000 Message-Id: <18e1bf146a084581a0019ada9ebb2cf4@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [39/51] [partial] activemq-web git commit: Initial commit archived-at: Wed, 13 Dec 2017 19:16:39 -0000 http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/activemq-510-release.html ---------------------------------------------------------------------- diff --git a/activemq-510-release.html b/activemq-510-release.html new file mode 100644 index 0000000..702f107 --- /dev/null +++ b/activemq-510-release.html @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + Apache ActiveMQ ™ -- ActiveMQ 5.1.0 Release + + + +
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + +
+
+

+ + +
+ +

New Features in 5.1

+ +

In the 5.1.x release of Apache ActiveMQ there are the following new features:

+ + + + + +

Getting the Binary Distributions

+ + +

Description

Download Link

PGP Signature file of download

Windows Distribution

apache-activemq-5.1.0-bin.zip

apache-activemq-5.1.0-bin.zip.asc

Unix/Linux/Cygwin Distribution

apache-activemq-5.1.0-bin.tar.gz

apache-activemq-5.1.0-bin.tar.gz.asc

+ + +

Do not use Safari to download, the above URLs use redirection

+

The above URLs use the Apache Mirror system to redirect you to a suitable mirror for your download. Some users have experienced issues with some versions of browsers (e.g. some Safari browsers). If the download doesn't seem to work for you from the above URL then try using FireFox

+ +

Verify the Integrity of Downloads

It is essential that you verify the integrity of the downloaded files using the PGP or MD5 signatures. The PGP signatures can be verified using PGP or GPG. Begin by following these steps:

  1. Download the KEYS
  2. Download the asc signature file for the relevant distribution
  3. Verify the signatures using the following commands, depending on your use of PGP or GPG:

    +
    $ pgpk -a KEYS
    +$ pgpv apache-activemq-<version>-bin.tar.gz.asc
    +
    +

    or

    +
    $ pgp -ka KEYS
    +$ pgp apache-activemq-<version>-bin.tar.gz.asc
    +
    +

    or

    +
    $ gpg --import KEYS
    +$ gpg --verify apache-activemq-<version>-bin.tar.gz.asc
    +
    +

(Where <version> is replaced with the actual version, e.g., 5.1.0, 5.2.0, etc.).

Alternatively, you can verify the MD5 signature on the files. A Unix program called md5 or md5sum is included in most Linux and Unix distributions. It is also available as part of GNU Textutils. Windows users can utilize any of the following md5 programs:

+ +

Error When Expanding Tarballs

+

When expanding the binary tarballs you might wind up experiencing the following:

+ +
+
 
+$ tar zxvf /path/to/apache-activemq-5.1.0-bin.tar.gz
+apache-activemq-5.1.0/bin/run.jar
+apache-activemq-5.1.0/activemq-all-5.1.0.jar
+...
+apache-activemq-5.1.0/webapps/fileserver/WEB-INF/web.xml
+apache-activemq-5.1.0/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/FilenameGuardFilter.class
+apache-activemq-5.1.0/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/FilenameGuardFilter$GuardedHttpServletRequest.class
+apache-activemq-5.1.0/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/RestFilter.class
+tar: Unexpected EOF in archive
+tar: A lone zero block at 61740
+tar: Error exit delayed from previous errors
+
+
+ +

These errors are a product of an open bug in Maven and are innocuous and won't affect anything.

+ +

Getting the Binaries using Maven 2

+ +

To use this release in your maven project, the proper dependency configuration that you should use in your Maven POM is:

+ +
+
+<dependency>
+  <groupId>org.apache.activemq</groupId>
+  <artifactId>activemq-core</artifactId>
+  <version>5.1.0</version>
+</dependency>
+
+
+
+ + +

Getting the Source Code

Source Distributions

Description

Download Link

PGP Signature file of download

Source for Windows

apache-activemq-5.1.0-src.zip

apache-activemq-5.1.0-src.zi p.asc

Source for Unix/Linux/Cygwin

apache-activemq-5.1.0-src.tar.gz

apache-activemq-5.1.0-src.tar.gz.asc

SVN Tag Checkout

+
svn co http://svn.apache.org/repos/asf/activemq/tags/activemq-5.1.0
+
+

Changelog

For a more detailed view of new features and bug fixes, see the release notes

+ JIRA Issues Macro: Data cannot be retrieved due to an unexpected error +
+

Also see the previous ActiveMQ 5.0.0 Release

+
+ +
+
+
+
+
+
+
+ +
+
+
+© 2004-2011 The Apache Software Foundation. +
+Apache ActiveMQ, ActiveMQ, Apache, the Apache feather logo, and the Apache ActiveMQ project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners. +
+Graphic Design By Hiram +
+ + + + + + + + http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/activemq-5100-release.html ---------------------------------------------------------------------- diff --git a/activemq-5100-release.html b/activemq-5100-release.html new file mode 100644 index 0000000..04c56bb --- /dev/null +++ b/activemq-5100-release.html @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + Apache ActiveMQ ™ -- ActiveMQ 5.10.0 Release + + + +
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + +
+

+ + +

 

ActiveMQ 5.10.0 Release

Apache ActiveMQ 5.10.0 resolves more than 234 issues, mostly bug fixes and improvements. It has the following new features:

New Features and noteworthy improvements and fixes

  • Java 8 support
  • Apache Shiro Security Plugin - http://activemq.apache.org/shiro.html
  • Hardened MQTT support
  • Hardened AMQP support
  • Hardened LevelDB store
  • Improved RAR/JCA adapter
  • Improved Runtime configuration plugin
  • Improved Web console

Migration Guide

  • Removed org.apache.activemq.camel.converter.IdentityMessageReuseConverter class from the activemq-camel component.

Getting the Binary Distributions

Description

Download Link

PGP Signature file of download

Windows Distribution

apache-activemq-5.10.0-bin.zip

apache-activemq-5.10.0-bin.zip.asc

Unix/Linux/Cygwin Distribution

apache-activemq-5.10.0-bin.tar.gz

apache-activemq-5.10.0-bin.tar.gz.asc

Verify the Integrity of Downloads

It is essential that you verify the integrity of the downloaded files using the PGP or MD5 signatures. The PGP signatures can be verified using PGP or GPG. Begin by following these steps:

  1. Download the KEYS
  2. Download the asc signature file for the relevant distribution
  3. Verify the signatures using the following commands, depending on your use of PGP or GPG:

    +
    $ pgpk -a KEYS
    +$ pgpv apache-activemq-<version>-bin.tar.gz.asc
    +
    +

    or

    +
    $ pgp -ka KEYS
    +$ pgp apache-activemq-<version>-bin.tar.gz.asc
    +
    +

    or

    +
    $ gpg --import KEYS
    +$ gpg --verify apache-activemq-<version>-bin.tar.gz.asc
    +
    +

(Where <version> is replaced with the actual version, e.g., 5.1.0, 5.2.0, etc.).

Alternatively, you can verify the MD5 signature on the files. A Unix program called md5 or md5sum is included in most Linux and Unix distributions. It is also available as part of GNU Textutils. Windows users can utilize any of the following md5 programs:

Getting the Binaries using Maven 2

To use this release in your maven project, the simplest dependency that you can use in your Maven POM is:

+
<dependency>
+  <groupId>org.apache.activemq</groupId>
+  <artifactId>activemq-all</artifactId>
+  <version>5.10.0</version>
+</dependency>
+
+

If you need more fine grained control of your dependencies (activemq-all is an uber jar) pick and choose from the various components activemq-client, activemq-broker, activemq-xx-store etc.

 
+ + +

Getting the Source Code

Source Distributions

Description

Download Link

PGP Signature file of download

Source Release

activemq-parent-5.10.0-source-release.zip

activemq-parent -5.10.0-source-release.zip.asc

Git Tag

https://git-wip-us.apache.org/repos/asf?p=activemq.git;a=tag;h=refs/tags/activemq-5.10.0

Changelog

For a more detailed view of new features and bug fixes, see the release notes

Also see the previous ActiveMQ 5.9.0 Release

+
+ +
+
+
+
+
+
+
+ +
+
+
+© 2004-2011 The Apache Software Foundation. +
+Apache ActiveMQ, ActiveMQ, Apache, the Apache feather logo, and the Apache ActiveMQ project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners. +
+Graphic Design By Hiram +
+ + + + + + + + http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/activemq-5101-release.html ---------------------------------------------------------------------- diff --git a/activemq-5101-release.html b/activemq-5101-release.html new file mode 100644 index 0000000..58fa57f --- /dev/null +++ b/activemq-5101-release.html @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + Apache ActiveMQ ™ -- ActiveMQ 5.10.1 Release + + + +
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + +
+

+ + +

 

ActiveMQ 5.10.1 Release

Apache ActiveMQ 5.10.1 resolves 33 issues, mostly bug fixes.

Getting the Binary Distributions

Description

Download Link

PGP Signature file of download

Windows Distribution

apache-activemq-5.10.1-bin.zip

apache-activemq-5.10.1-bin.zip.asc

Unix/Linux/Cygwin Distribution

apache-activemq-5.10.1-bin.tar.gz

apache-activemq-5.10.1-bin.tar.gz.asc

Verify the Integ rity of Downloads

It is essential that you verify the integrity of the downloaded files using the PGP or MD5 signatures. The PGP signatures can be verified using PGP or GPG. Begin by following these steps:

  1. Download the KEYS
  2. Download the asc signature file for the relevant distribution
  3. Verify the signatures using the following commands, depending on your use of PGP or GPG:

    +
    $ pgpk -a KEYS
    +$ pgpv apache-activemq-<version>-bin.tar.gz.asc
    +
    +

    or

    +
    $ pgp -ka KEYS
    +$ pgp apache-activemq-<version>-bin.tar.gz.asc
    +
    +

    or

    +
    $ gpg --import KEYS
    +$ gpg --verify apache-activemq-<version>-bin.tar.gz.asc
    +
    +

(Where <version> is replaced with the actual version, e.g., 5.1.0, 5.2.0, etc.).

Alternatively, you can verify the MD5 signature on the files. A Unix program called md5 or md5sum is included in most Linux and Unix distributions. It is also available as part of GNU Textutils. Windows users can utilize any of the following md5 programs:

Getting the Binaries using Maven 2

To use this release in your maven project, the simplest dependency that you can use in your Maven POM is:

+
<dependency>
+  <groupId>org.apache.activemq</groupId>
+  <artifactId>activemq-all</artifactId>
+  <version>5.10.1</version>
+</dependency>
+
+

If you need more fine grained control of your dependencies (activemq-all is an uber jar) pick and choose from the various components activemq-client, activemq-broker, activemq-xx-store etc.

 
+ + +

Getting the Source Code

Source Distributions

Description

Download Link

PGP Signature file of download

Source Release

activemq-parent-5.10.1-source-release.zip

activemq-parent-5.10.1- source-release.zip.asc

Git Tag

https://git-wip-us.apache.org/repos/asf?p=activemq.git;a=tag;h=refs/tags/activemq-5.10.1

Changelog

For a more detailed view of new features and bug fixes, see the release notes

Also see the previous ActiveMQ 5.10.0 Release

+
+ +
+
+
+
+
+
+
+ +
+
+
+© 2004-2011 The Apache Software Foundation. +
+Apache ActiveMQ, ActiveMQ, Apache, the Apache feather logo, and the Apache ActiveMQ project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners. +
+Graphic Design By Hiram +
+ + + + + + + +