You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2019/10/06 21:04:20 UTC

[jmeter] branch master updated (a6a23b4 -> 73f8e1f)

This is an automated email from the ASF dual-hosted git repository.

pmouawad pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git.


    from a6a23b4  Fix Documentation: HTTP Request's Path isn't required (#532)
     new 37388b3  Mention Graham in PR
     new 73f8e1f  DigestEncodeFunction: Fix import order

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:
 .../src/main/java/org/apache/jmeter/functions/DigestEncodeFunction.java | 2 +-
 xdocs/changes.xml                                                       | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)


[jmeter] 01/02: Mention Graham in PR

Posted by pm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pmouawad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit 37388b3df78cdc989c83db0cc600d55d64241425
Author: pmouawad <p....@ubik-ingenierie.com>
AuthorDate: Sun Oct 6 23:00:26 2019 +0200

    Mention Graham in PR
---
 xdocs/changes.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/xdocs/changes.xml b/xdocs/changes.xml
index 10b7c98..33032e4 100644
--- a/xdocs/changes.xml
+++ b/xdocs/changes.xml
@@ -179,6 +179,7 @@ to view the last release notes of version 5.1.1.
     <li>Clean-up of code in <code>CompareAssertion</code> and other locations. Based on patch by Graham Russell (graham at ham1.co.uk)</li>
     <li><pr>491</pr>Increase Graphite metrics coverage. Contributed by Graham Russell (graham at ham1.co.uk)</li>
     <li><pr>520</pr>Replace anonymous classes with lambda expressions. Contributed by Graham Russell (graham at ham1.co.uk).</li>
+    <li><pr>524</pr>Migration from JUnit 4 to JUnit 5. Contributed by Graham Russell (graham at ham1.co.uk).</li>
 </ul>
 
  <!-- =================== Bug fixes =================== -->


[jmeter] 02/02: DigestEncodeFunction: Fix import order

Posted by pm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pmouawad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit 73f8e1f8ef46461c6a295554c877dac90f6e2994
Author: pmouawad <p....@ubik-ingenierie.com>
AuthorDate: Sun Oct 6 23:04:30 2019 +0200

    DigestEncodeFunction: Fix import order
---
 .../src/main/java/org/apache/jmeter/functions/DigestEncodeFunction.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/functions/src/main/java/org/apache/jmeter/functions/DigestEncodeFunction.java b/src/functions/src/main/java/org/apache/jmeter/functions/DigestEncodeFunction.java
index 27cdccc..5eba733 100644
--- a/src/functions/src/main/java/org/apache/jmeter/functions/DigestEncodeFunction.java
+++ b/src/functions/src/main/java/org/apache/jmeter/functions/DigestEncodeFunction.java
@@ -19,6 +19,7 @@
 package org.apache.jmeter.functions;
 
 import java.io.UnsupportedEncodingException;
+import java.nio.charset.StandardCharsets;
 import java.security.MessageDigest;
 import java.security.NoSuchAlgorithmException;
 import java.util.Collection;
@@ -33,7 +34,6 @@ import org.apache.jmeter.samplers.Sampler;
 import org.apache.jmeter.util.JMeterUtils;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import java.nio.charset.StandardCharsets;
 
 /**
  * Digest Encode Function that provides computing of different SHA-XXX, can