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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit 69cb996265ba603e0be5b1c98097775f2467a6c2
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Aug 8 07:25:21 2024 -0400

    Deprecate static RandomStringUtils.random*() methods in favor or
    .secure() and .insecure() versions
---
 src/changes/changes.xml                            |  1 +
 .../apache/commons/lang3/RandomStringUtils.java    | 38 ++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 862e4225b..e6ac9e638 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -48,6 +48,7 @@ The <action> type attribute can be add,update,fix,remove.
   <release version="3.16.1" date="YYYY-MM-DD" description="This is a feature 
and maintenance release. Java 8 or later is required.">
     <!-- FIX -->
     <action                   type="fix" dev="ggregory" due-to="Gary 
Gregory">Deprecate static RandomUtils.next*() methods in favor or .secure() and 
.insecure() versions.</action>
+    <action                   type="fix" dev="ggregory" due-to="Gary 
Gregory">Deprecate static RandomStringUtils.random*() methods in favor or 
.secure() and .insecure() versions.</action>
     <!-- ADD -->
     <action                   type="add" dev="ggregory" due-to="Gary 
Gregory">Make RandomUtils.insecure() public.</action>
     <!-- UPDATE -->
diff --git a/src/main/java/org/apache/commons/lang3/RandomStringUtils.java 
b/src/main/java/org/apache/commons/lang3/RandomStringUtils.java
index d64ec5ebf..37b243d37 100644
--- a/src/main/java/org/apache/commons/lang3/RandomStringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/RandomStringUtils.java
@@ -107,7 +107,9 @@ public class RandomStringUtils {
      * @param count the length of random string to create
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String random(final int count) {
         return secure().next(count);
     }
@@ -124,7 +126,9 @@ public class RandomStringUtils {
      * @param numbers if {@code true}, generated string may include numeric 
characters
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String random(final int count, final boolean letters, final 
boolean numbers) {
         return secure().next(count, letters, numbers);
     }
@@ -140,7 +144,9 @@ public class RandomStringUtils {
      * @param chars the character array containing the set of characters to 
use, may be null
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String random(final int count, final char... chars) {
         return secure().next(count, chars);
     }
@@ -159,7 +165,9 @@ public class RandomStringUtils {
      * @param numbers if {@code true}, generated string may include numeric 
characters
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String random(final int count, final int start, final int 
end, final boolean letters,
             final boolean numbers) {
         return secure().next(count, start, end, letters, numbers);
@@ -183,7 +191,9 @@ public class RandomStringUtils {
      * @return the random string
      * @throws ArrayIndexOutOfBoundsException if there are not {@code (end - 
start) + 1} characters in the set array.
      * @throws IllegalArgumentException       if {@code count} &lt; 0.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String random(final int count, final int start, final int 
end, final boolean letters,
             final boolean numbers, final char... chars) {
         return secure().next(count, start, end, letters, numbers, chars);
@@ -219,7 +229,9 @@ public class RandomStringUtils {
      * @throws ArrayIndexOutOfBoundsException if there are not {@code (end - 
start) + 1} characters in the set array.
      * @throws IllegalArgumentException       if {@code count} &lt; 0 or the 
provided chars array is empty.
      * @since 2.0
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String random(int count, int start, int end, final boolean 
letters, final boolean numbers,
             final char[] chars, final Random random) {
         if (count == 0) {
@@ -361,7 +373,9 @@ public class RandomStringUtils {
      * @param chars the String containing the set of characters to use, may be 
null, but must not be empty
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0 or the string 
is empty.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String random(final int count, final String chars) {
         return secure().next(count, chars);
     }
@@ -376,7 +390,9 @@ public class RandomStringUtils {
      * @param count the length of random string to create
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomAlphabetic(final int count) {
         return secure().nextAlphabetic(count);
     }
@@ -392,7 +408,9 @@ public class RandomStringUtils {
      * @param maxLengthExclusive the exclusive maximum length of the string to 
generate
      * @return the random string
      * @since 3.5
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomAlphabetic(final int minLengthInclusive, final 
int maxLengthExclusive) {
         return secure().nextAlphabetic(minLengthInclusive, maxLengthExclusive);
     }
@@ -407,7 +425,9 @@ public class RandomStringUtils {
      * @param count the length of random string to create
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomAlphanumeric(final int count) {
         return secure().nextAlphanumeric(count);
     }
@@ -423,7 +443,9 @@ public class RandomStringUtils {
      * @param maxLengthExclusive the exclusive maximum length of the string to 
generate
      * @return the random string
      * @since 3.5
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomAlphanumeric(final int minLengthInclusive, 
final int maxLengthExclusive) {
         return secure().nextAlphanumeric(minLengthInclusive, 
maxLengthExclusive);
     }
@@ -439,7 +461,9 @@ public class RandomStringUtils {
      * @param count the length of random string to create
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomAscii(final int count) {
         return secure().nextAscii(count);
     }
@@ -456,7 +480,9 @@ public class RandomStringUtils {
      * @param maxLengthExclusive the exclusive maximum length of the string to 
generate
      * @return the random string
      * @since 3.5
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomAscii(final int minLengthInclusive, final int 
maxLengthExclusive) {
         return secure().nextAscii(minLengthInclusive, maxLengthExclusive);
     }
@@ -473,7 +499,9 @@ public class RandomStringUtils {
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
      * @since 3.5
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomGraph(final int count) {
         return secure().nextGraph(count);
     }
@@ -489,7 +517,9 @@ public class RandomStringUtils {
      * @param maxLengthExclusive the exclusive maximum length of the string to 
generate
      * @return the random string
      * @since 3.5
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomGraph(final int minLengthInclusive, final int 
maxLengthExclusive) {
         return secure().nextGraph(minLengthInclusive, maxLengthExclusive);
     }
@@ -504,7 +534,9 @@ public class RandomStringUtils {
      * @param count the length of random string to create
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomNumeric(final int count) {
         return secure().nextNumeric(count);
     }
@@ -520,7 +552,9 @@ public class RandomStringUtils {
      * @param maxLengthExclusive the exclusive maximum length of the string to 
generate
      * @return the random string
      * @since 3.5
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomNumeric(final int minLengthInclusive, final int 
maxLengthExclusive) {
         return secure().nextNumeric(minLengthInclusive, maxLengthExclusive);
     }
@@ -537,7 +571,9 @@ public class RandomStringUtils {
      * @return the random string
      * @throws IllegalArgumentException if {@code count} &lt; 0.
      * @since 3.5
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomPrint(final int count) {
         return secure().nextPrint(count);
     }
@@ -553,7 +589,9 @@ public class RandomStringUtils {
      * @param maxLengthExclusive the exclusive maximum length of the string to 
generate
      * @return the random string
      * @since 3.5
+     * @deprecated Use {@link #secure()} or {@link #insecure()}.
      */
+    @Deprecated
     public static String randomPrint(final int minLengthInclusive, final int 
maxLengthExclusive) {
         return secure().nextPrint(minLengthInclusive, maxLengthExclusive);
     }

Reply via email to