[utils] Deprecate random_uuidv4 (#17301)

Authored by: doe1080
This commit is contained in:
doe1080
2026-08-19 15:42:14 +09:00
committed by GitHub
parent 4ce0e4d331
commit 0d1e029d14
4 changed files with 9 additions and 10 deletions
+5
View File
@@ -3,6 +3,7 @@ import base64
import hashlib
import hmac
import json
import uuid
import warnings
from ..compat.compat_utils import passthrough_module
@@ -62,4 +63,8 @@ def number_of_digits(number):
return len('%d' % number)
def random_uuidv4():
return str(uuid.uuid4())
compiled_regex_type = type(re.compile(''))