Re: svn commit: r1769932 - in /jmeter/trunk: src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java src/protocol/http/org/apache/jmeter/protocol/http/util/HTTPConstantsInterface.java xdocs

2016-11-16 Thread Felix Schumacher


Am 16. November 2016 08:28:45 MEZ, schrieb pmoua...@apache.org:
>Author: pmouawad
>Date: Wed Nov 16 07:28:45 2016
>New Revision: 1769932
>
>URL: http://svn.apache.org/viewvc?rev=1769932&view=rev
>Log:
>Bug 60376 - Http Test Script Recorder : If deflate is used by server
>then recording may break application
>Bugzilla Id: 60376
>
>Modified:
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/util/HTTPConstantsInterface.java
>jmeter/trunk/xdocs/changes.xml
>
>Modified:
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java
>URL:
>http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java?rev=1769932&r1=1769931&r2=1769932&view=diff
>==
>---
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java
>(original)
>+++
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java
>Wed Nov 16 07:28:45 2016
>@@ -530,8 +530,11 @@ public class Proxy extends Thread {
> continue;
> }
>   if (HTTPConstants.HEADER_CONTENT_ENCODING.equalsIgnoreCase(parts[0])
>-&&
>-   
>HTTPConstants.ENCODING_GZIP.equalsIgnoreCase(parts[1])
>+&&
>(HTTPConstants.ENCODING_GZIP.equalsIgnoreCase(parts[1])
>+||
>HTTPConstants.ENCODING_DEFLATE.equalsIgnoreCase(parts[1])
>+// TODO BROTLI not supported by HC4, so no
>uncompression would occur, add it once available
>+// ||
>HTTPConstants.ENCODING_BROTLI.equalsIgnoreCase(parts[1]) 
>+)

I would remove the to-do and leave brotli in. It is last in the comparison list 
and thus should be compared rather seldom. On the other hand it is very 
probable that we forget to re-add it one hc4 starts supporting it.

Felix

> ){
>  headerLines[i] = null; // We don't want this passed on to browser
> fixContentLength = true;
>
>Modified:
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/util/HTTPConstantsInterface.java
>URL:
>http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/util/HTTPConstantsInterface.java?rev=1769932&r1=1769931&r2=1769932&view=diff
>==
>---
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/util/HTTPConstantsInterface.java
>(original)
>+++
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/util/HTTPConstantsInterface.java
>Wed Nov 16 07:28:45 2016
>@@ -64,7 +64,11 @@ public interface HTTPConstantsInterface
>String HEADER_CONTENT_ENCODING = "content-encoding"; // $NON-NLS-1$
> String HTTP_1_1 = "HTTP/1.1"; // $NON-NLS-1$
> String HEADER_SET_COOKIE = "set-cookie"; // $NON-NLS-1$
>+// Brotli compression not supported yet by HC4 4.5.2 , but to be
>added
>+String ENCODING_BROTLI = "br"; // $NON-NLS-1$
>+String ENCODING_DEFLATE = "deflate"; // $NON-NLS-1$
> String ENCODING_GZIP = "gzip"; // $NON-NLS-1$
>+
>String HEADER_CONTENT_DISPOSITION = "Content-Disposition"; //
>$NON-NLS-1$
> String HEADER_CONTENT_TYPE = "Content-Type"; // $NON-NLS-1$
> String HEADER_CONTENT_LENGTH = "Content-Length"; // $NON-NLS-1$
>
>Modified: jmeter/trunk/xdocs/changes.xml
>URL:
>http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1769932&r1=1769931&r2=1769932&view=diff
>==
>--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
>+++ jmeter/trunk/xdocs/changes.xml [utf-8] Wed Nov 16 07:28:45 2016
>@@ -303,6 +303,7 @@ This allows you to update Think Times fr
>5HTTP(S) Test Script Recorder (ProxyControl) does
>not add TestElement's returned by
>SamplerCreator#createChildren()
>59902Https handshake failure when setting
>httpclient.socket.https.cps property
>60084JMeter 3.0 embedded resource URL is silently
>encoded
>+60376Http Test Script Recorder : If deflate is used
>by server then recording may break application
>  
> 
> Other Samplers



Re: svn commit: r1769932 - in /jmeter/trunk: src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java src/protocol/http/org/apache/jmeter/protocol/http/util/HTTPConstantsInterface.java xdocs

2016-11-16 Thread Philippe Mouawad
On Wed, Nov 16, 2016 at 9:02 AM, Felix Schumacher  wrote:

>
>
> Am 16. November 2016 08:28:45 MEZ, schrieb pmoua...@apache.org:
> >Author: pmouawad
> >Date: Wed Nov 16 07:28:45 2016
> >New Revision: 1769932
> >
> >URL: http://svn.apache.org/viewvc?rev=1769932&view=rev
> >Log:
> >Bug 60376 - Http Test Script Recorder : If deflate is used by server
> >then recording may break application
> >Bugzilla Id: 60376
> >
> >Modified:
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
> http/proxy/Proxy.java
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
> http/util/HTTPConstantsInterface.java
> >jmeter/trunk/xdocs/changes.xml
> >
> >Modified:
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
> http/proxy/Proxy.java
> >URL:
> >http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http
> /org/apache/jmeter/protocol/http/proxy/Proxy.java?rev=
> 1769932&r1=1769931&r2=1769932&view=diff
> >===
> ===
> >---
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
> http/proxy/Proxy.java
> >(original)
> >+++
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
> http/proxy/Proxy.java
> >Wed Nov 16 07:28:45 2016
> >@@ -530,8 +530,11 @@ public class Proxy extends Thread {
> > continue;
> > }
> >   if (HTTPConstants.HEADER_CONTENT_ENCODING.equalsIgnoreCase(parts[0])
> >-&&
> >-
> >HTTPConstants.ENCODING_GZIP.equalsIgnoreCase(parts[1])
> >+&&
> >(HTTPConstants.ENCODING_GZIP.equalsIgnoreCase(parts[1])
> >+||
> >HTTPConstants.ENCODING_DEFLATE.equalsIgnoreCase(parts[1])
> >+// TODO BROTLI not supported by HC4, so no
> >uncompression would occur, add it once available
> >+// ||
> >HTTPConstants.ENCODING_BROTLI.equalsIgnoreCase(parts[1])
> >+)
>
> I would remove the to-do and leave brotli in. It is last in the comparison
> list and thus should be compared rather seldom. On the other hand it is
> very probable that we forget to re-add it one hc4 starts supporting it.
>
Hi, If we keep it it means we remove header while most probably we didn't
modify it since we don't uncompress it (HC4 does not handle BR), so should
we really remove it, if you are sure, you can change code, I cannot do it
today.
Thanks

>
> Felix
>
> > ){
> >  headerLines[i] = null; // We don't want this passed on to browser
> > fixContentLength = true;
> >
> >Modified:
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
> http/util/HTTPConstantsInterface.java
> >URL:
> >http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http
> /org/apache/jmeter/protocol/http/util/HTTPConstantsInterfa
> ce.java?rev=1769932&r1=1769931&r2=1769932&view=diff
> >===
> ===
> >---
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
> http/util/HTTPConstantsInterface.java
> >(original)
> >+++
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
> http/util/HTTPConstantsInterface.java
> >Wed Nov 16 07:28:45 2016
> >@@ -64,7 +64,11 @@ public interface HTTPConstantsInterface
> >String HEADER_CONTENT_ENCODING = "content-encoding"; // $NON-NLS-1$
> > String HTTP_1_1 = "HTTP/1.1"; // $NON-NLS-1$
> > String HEADER_SET_COOKIE = "set-cookie"; // $NON-NLS-1$
> >+// Brotli compression not supported yet by HC4 4.5.2 , but to be
> >added
> >+String ENCODING_BROTLI = "br"; // $NON-NLS-1$
> >+String ENCODING_DEFLATE = "deflate"; // $NON-NLS-1$
> > String ENCODING_GZIP = "gzip"; // $NON-NLS-1$
> >+
> >String HEADER_CONTENT_DISPOSITION = "Content-Disposition"; //
> >$NON-NLS-1$
> > String HEADER_CONTENT_TYPE = "Content-Type"; // $NON-NLS-1$
> > String HEADER_CONTENT_LENGTH = "Content-Length"; // $NON-NLS-1$
> >
> >Modified: jmeter/trunk/xdocs/changes.xml
> >URL:
> >http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml
> ?rev=1769932&r1=1769931&r2=1769932&view=diff
> >===
> ===
> >--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
> >+++ jmeter/trunk/xdocs/changes.xml [utf-8] Wed Nov 16 07:28:45 2016
> >@@ -303,6 +303,7 @@ This allows you to update Think Times fr
> >5HTTP(S) Test Script Recorder (ProxyControl) does
> >not add TestElement's returned by
> >SamplerCreator#createChildren()
> >59902Https handshake failure when setting
> >httpclient.socket.https.cps property
> >60084JMeter 3.0 embedded resource URL is silently
> >encoded
> >+60376Http Test Script Recorder : If deflate is used
> >by server then recording may break application
> >  
> >
> > Other Samplers
>
>


-- 
Cordialement.
Philippe Mouawad.


Re: svn commit: r1769932 - in /jmeter/trunk: src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java src/protocol/http/org/apache/jmeter/protocol/http/util/HTTPConstantsInterface.java xdocs

2016-11-16 Thread Felix Schumacher


Am 16. November 2016 09:10:39 MEZ, schrieb Philippe Mouawad 
:
>On Wed, Nov 16, 2016 at 9:02 AM, Felix Schumacher internetallee.de> wrote:
>
>>
>>
>> Am 16. November 2016 08:28:45 MEZ, schrieb pmoua...@apache.org:
>> >Author: pmouawad
>> >Date: Wed Nov 16 07:28:45 2016
>> >New Revision: 1769932
>> >
>> >URL: http://svn.apache.org/viewvc?rev=1769932&view=rev
>> >Log:
>> >Bug 60376 - Http Test Script Recorder : If deflate is used by server
>> >then recording may break application
>> >Bugzilla Id: 60376
>> >
>> >Modified:
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
>> http/proxy/Proxy.java
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
>> http/util/HTTPConstantsInterface.java
>> >jmeter/trunk/xdocs/changes.xml
>> >
>> >Modified:
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
>> http/proxy/Proxy.java
>> >URL:
>> >http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http
>> /org/apache/jmeter/protocol/http/proxy/Proxy.java?rev=
>> 1769932&r1=1769931&r2=1769932&view=diff
>> >===
>> ===
>> >---
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
>> http/proxy/Proxy.java
>> >(original)
>> >+++
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
>> http/proxy/Proxy.java
>> >Wed Nov 16 07:28:45 2016
>> >@@ -530,8 +530,11 @@ public class Proxy extends Thread {
>> > continue;
>> > }
>> >   if
>(HTTPConstants.HEADER_CONTENT_ENCODING.equalsIgnoreCase(parts[0])
>> >-&&
>> >-
>> >HTTPConstants.ENCODING_GZIP.equalsIgnoreCase(parts[1])
>> >+&&
>> >(HTTPConstants.ENCODING_GZIP.equalsIgnoreCase(parts[1])
>> >+||
>> >HTTPConstants.ENCODING_DEFLATE.equalsIgnoreCase(parts[1])
>> >+// TODO BROTLI not supported by HC4, so
>no
>> >uncompression would occur, add it once available
>> >+// ||
>> >HTTPConstants.ENCODING_BROTLI.equalsIgnoreCase(parts[1])
>> >+)
>>
>> I would remove the to-do and leave brotli in. It is last in the
>comparison
>> list and thus should be compared rather seldom. On the other hand it
>is
>> very probable that we forget to re-add it one hc4 starts supporting
>it.
>>
>Hi, If we keep it it means we remove header while most probably we
>didn't
>modify it since we don't uncompress it (HC4 does not handle BR), so
>should
>we really remove it, if you are sure, you can change code, I cannot do
>it
>today.

Right, missed that.

Felix

>Thanks
>
>>
>> Felix
>>
>> > ){
>> >  headerLines[i] = null; // We don't want this passed on to
>browser
>> > fixContentLength = true;
>> >
>> >Modified:
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
>> http/util/HTTPConstantsInterface.java
>> >URL:
>> >http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http
>> /org/apache/jmeter/protocol/http/util/HTTPConstantsInterfa
>> ce.java?rev=1769932&r1=1769931&r2=1769932&view=diff
>> >===
>> ===
>> >---
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
>> http/util/HTTPConstantsInterface.java
>> >(original)
>> >+++
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/
>> http/util/HTTPConstantsInterface.java
>> >Wed Nov 16 07:28:45 2016
>> >@@ -64,7 +64,11 @@ public interface HTTPConstantsInterface
>> >String HEADER_CONTENT_ENCODING = "content-encoding"; //
>$NON-NLS-1$
>> > String HTTP_1_1 = "HTTP/1.1"; // $NON-NLS-1$
>> > String HEADER_SET_COOKIE = "set-cookie"; // $NON-NLS-1$
>> >+// Brotli compression not supported yet by HC4 4.5.2 , but to
>be
>> >added
>> >+String ENCODING_BROTLI = "br"; // $NON-NLS-1$
>> >+String ENCODING_DEFLATE = "deflate"; // $NON-NLS-1$
>> > String ENCODING_GZIP = "gzip"; // $NON-NLS-1$
>> >+
>> >String HEADER_CONTENT_DISPOSITION = "Content-Disposition"; //
>> >$NON-NLS-1$
>> > String HEADER_CONTENT_TYPE = "Content-Type"; // $NON-NLS-1$
>> > String HEADER_CONTENT_LENGTH = "Content-Length"; // $NON-NLS-1$
>> >
>> >Modified: jmeter/trunk/xdocs/changes.xml
>> >URL:
>> >http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml
>> ?rev=1769932&r1=1769931&r2=1769932&view=diff
>> >===
>> ===
>> >--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
>> >+++ jmeter/trunk/xdocs/changes.xml [utf-8] Wed Nov 16 07:28:45 2016
>> >@@ -303,6 +303,7 @@ This allows you to update Think Times fr
>> >5HTTP(S) Test Script Recorder (ProxyControl) does
>> >not add TestElement's returned by
>> >SamplerCreator#createChildren()
>> >59902Https handshake failure when setting
>> >httpclient.socket.https.cps property
>> >60084JMeter 3.0 embedded resource URL is silently
>> >encoded
>> >+60376Http Test Script Recorder : If deflate is
>used
>> >b

Re: Brotli compression

2016-11-16 Thread Gary Gregory
There is Java implementation here https://github.com/meteogroup/jbrotli but
it is not 100% Java.

Gary

On Tue, Nov 15, 2016 at 11:33 PM, Philippe Mouawad <
philippe.moua...@gmail.com> wrote:

> Hi Gary,
> I created :
> https://issues.apache.org/jira/browse/COMPRESS-370
>
> Regards
>
> On Wed, Nov 16, 2016 at 12:14 AM, Gary Gregory 
> wrote:
>
> > I do not think so. This would be interesting to add to Commons Compress
> > though.
> >
> > Gary
> >
> > On Nov 15, 2016 11:51 AM, "Philippe Mouawad"  >
> > wrote:
> >
> > > Hello,
> > > Is Brotli (https://en.wikipedia.org/wiki/Brotli) compression supported
> > by
> > > HttpCore/HttpClient ?
> > >
> > > Thanks
> > > Regards
> > > Philippe
> > >
> >
>
>
>
> --
> Cordialement.
> Philippe Mouawad.
>



-- 
E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
Java Persistence with Hibernate, Second Edition



JUnit in Action, Second Edition



Spring Batch in Action


Blog: http://garygregory.wordpress.com
Home: http://garygregory.com/
Tweet! http://twitter.com/GaryGregory


[CANCELLED] Re: [VOTE] Release JMeter 3.1 RC3

2016-11-16 Thread Milamber

Hello,

Due of a annoying bug found by Philippe about the issue of deflate 
requests recording by JMeter Proxy, I cancel the vote and start the next 
RC4.


Hope the RC4 will be the good candidate.

Milamber

On 13/11/2016 19:34, Milamber wrote:

Hello,

The third release candidate for JMeter 3.1 (r1769531) has been 
prepared, and your votes are solicited.


This release brings new features and fixes bugs.

Please, test this release candidate (with load tests and/or functional 
tests) using Java 7/8 on Linux/Windows/Mac OS, especially on the 
changes. The feedback are welcome.


You can read the New and Noteworthy section with some screenshots to 
illustrate improvements and full list of changes at:

http://home.apache.org/~milamber/jmeter-3.1RC3/docs/changes.html

JMeter is a Java desktop application designed to load test functional 
behavior and measure performance. The current version is targeted at 
Java 7+.


Download - Archives/hashes/sigs:

https://dist.apache.org/repos/dist/dev/jmeter/v3.1_RC3/
(dist revision r16985)

RAT report:

http://home.apache.org/~milamber/jmeter-3.1RC3/dist/rat-report-jmeter-3.1RC3.txt 



MD5 hashes of archives for this vote:

37e3c75cf80d2c60444e429bb0c27ae6 *apache-jmeter-3.1.tgz
f096f4991454a22850ec6174331cfeed *apache-jmeter-3.1.zip
a3e308d541a6c077ec322bce0d699a77 *apache-jmeter-3.1_src.tgz
96b94f4e0189bd0aa6e578e80323e6b7 *apache-jmeter-3.1_src.zip

Site Docs are here:
http://home.apache.org/~milamber/jmeter-3.1RC3/docs/

Maven staging repository is accessible here:
https://repository.apache.org/content/repositories/orgapachejmeter-1013/org/apache/jmeter/ 



Tag:
https://svn.apache.org/repos/asf/jmeter/tags/v3_1_RC3/

Keys are here:
https://www.apache.org/dist/jmeter/KEYS

N.B.
To download the dependencies: "ant download_jars"

To create the jars and test JMeter: "ant package test".

JMeter 3.1 requires Java 7 or later to run.

Some known issues and incompatible changes are listed on changes page.
http://home.apache.org/~milamber/jmeter-3.1RC3/docs/changes.html#Known%20problems%20and%20workarounds 




All feedback and vote are welcome.

[  ] +1  I support this release
[  ] +0  I am OK with this release
[  ] -0   OK, but
[  ] -1   I do not support this release (please indicate why)

The vote will remain open for at least 72 hours.

The PMC members please indicate the mention "(binding)" with your vote.


Note: If the vote passes, the intention is to release the archive files
and rename the RC tag as the release tag.

Thanks in advance!

Milamber











[VOTE] Release JMeter 3.1 RC4

2016-11-16 Thread Milamber

Hello,

The fourth release candidate for JMeter 3.1 (r1770033) has been 
prepared, and your votes are solicited.


This release brings new features and fixes bugs.

Please, test this release candidate (with load tests and/or functional 
tests) using Java 7/8 on Linux/Windows/Mac OS, especially on the 
changes. The feedback are welcome.


You can read the New and Noteworthy section with some screenshots to 
illustrate improvements and full list of changes at:

http://home.apache.org/~milamber/jmeter-3.1RC4/docs/changes.html

JMeter is a Java desktop application designed to load test functional 
behavior and measure performance. The current version is targeted at 
Java 7+.


Download - Archives/hashes/sigs:

https://dist.apache.org/repos/dist/dev/jmeter/v3.1_RC4/
(dist revision r17029)

RAT report:

http://home.apache.org/~milamber/jmeter-3.1RC4/dist/rat-report-jmeter-3.1RC4.txt

MD5 hashes of archives for this vote:

f439864f8f14e38228fee5fab8d912b0 *apache-jmeter-3.1.tgz
4b6f6f82e8e11de7c369be0ce3738c3b *apache-jmeter-3.1.zip
ff10ec2aad44b2e9e0fbe14e0c8949fb *apache-jmeter-3.1_src.tgz
db07750a8ecb721acc36f52894278019 *apache-jmeter-3.1_src.zip

Site Docs are here:
http://home.apache.org/~milamber/jmeter-3.1RC4/docs/

Maven staging repository is accessible here:
https://repository.apache.org/content/repositories/orgapachejmeter-1014/org/apache/jmeter/

Tag:
https://svn.apache.org/repos/asf/jmeter/tags/v3_1_RC4/

Keys are here:
https://www.apache.org/dist/jmeter/KEYS

N.B.
To download the dependencies: "ant download_jars"

To create the jars and test JMeter: "ant package test".

JMeter 3.1 requires Java 7 or later to run.

Some known issues and incompatible changes are listed on changes page.
http://home.apache.org/~milamber/jmeter-3.1RC4/docs/changes.html#Known%20problems%20and%20workarounds


All feedback and vote are welcome.

[  ] +1  I support this release
[  ] +0  I am OK with this release
[  ] -0   OK, but
[  ] -1   I do not support this release (please indicate why)

The vote will remain open for at least 72 hours.

The PMC members please indicate the mention "(binding)" with your vote.


Note: If the vote passes, the intention is to release the archive files
and rename the RC tag as the release tag.

Thanks in advance!

Milamber








buildbot failure in on jmeter-nightly

2016-11-16 Thread buildbot
The Buildbot has detected a new failure on builder jmeter-nightly while 
building . Full details are available at:
https://ci.apache.org/builders/jmeter-nightly/builds/495

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: bb_slave1_ubuntu

Build Reason: The Nightly scheduler named 'jmeterNightly' triggered this build
Build Source Stamp: [branch jmeter/trunk] HEAD
Blamelist: 

BUILD FAILED: failed shell_11

Sincerely,
 -The Buildbot





Re: [VOTE] Release JMeter 3.1 RC4

2016-11-16 Thread Andrey Pokhilko
+1

Andrey Pokhilko

On 11/16/2016 11:59 AM, Milamber wrote:
> Hello,
>
> The fourth release candidate for JMeter 3.1 (r1770033) has been
> prepared, and your votes are solicited.
>
> This release brings new features and fixes bugs.
>
> Please, test this release candidate (with load tests and/or functional
> tests) using Java 7/8 on Linux/Windows/Mac OS, especially on the
> changes. The feedback are welcome.
>
> You can read the New and Noteworthy section with some screenshots to
> illustrate improvements and full list of changes at:
> http://home.apache.org/~milamber/jmeter-3.1RC4/docs/changes.html
>
> JMeter is a Java desktop application designed to load test functional
> behavior and measure performance. The current version is targeted at
> Java 7+.
>
> Download - Archives/hashes/sigs:
>
> https://dist.apache.org/repos/dist/dev/jmeter/v3.1_RC4/
> (dist revision r17029)
>
> RAT report:
>
> http://home.apache.org/~milamber/jmeter-3.1RC4/dist/rat-report-jmeter-3.1RC4.txt
>
>
> MD5 hashes of archives for this vote:
>
> f439864f8f14e38228fee5fab8d912b0 *apache-jmeter-3.1.tgz
> 4b6f6f82e8e11de7c369be0ce3738c3b *apache-jmeter-3.1.zip
> ff10ec2aad44b2e9e0fbe14e0c8949fb *apache-jmeter-3.1_src.tgz
> db07750a8ecb721acc36f52894278019 *apache-jmeter-3.1_src.zip
>
> Site Docs are here:
> http://home.apache.org/~milamber/jmeter-3.1RC4/docs/
>
> Maven staging repository is accessible here:
> https://repository.apache.org/content/repositories/orgapachejmeter-1014/org/apache/jmeter/
>
>
> Tag:
> https://svn.apache.org/repos/asf/jmeter/tags/v3_1_RC4/
>
> Keys are here:
> https://www.apache.org/dist/jmeter/KEYS
>
> N.B.
> To download the dependencies: "ant download_jars"
>
> To create the jars and test JMeter: "ant package test".
>
> JMeter 3.1 requires Java 7 or later to run.
>
> Some known issues and incompatible changes are listed on changes page.
> http://home.apache.org/~milamber/jmeter-3.1RC4/docs/changes.html#Known%20problems%20and%20workarounds
>
>
>
> All feedback and vote are welcome.
> 
> [  ] +1  I support this release
> [  ] +0  I am OK with this release
> [  ] -0   OK, but
> [  ] -1   I do not support this release (please indicate why)
>
> The vote will remain open for at least 72 hours.
>
> The PMC members please indicate the mention "(binding)" with your vote.
>
>
> Note: If the vote passes, the intention is to release the archive files
> and rename the RC tag as the release tag.
>
> Thanks in advance!
>
> Milamber
>
>
>
>
>
>