Skip to content

Commit

Permalink
Merge pull request #432 from openedx/ammar/update-uuid-regex
Browse files Browse the repository at this point in the history
fix: update uuid4 regex
  • Loading branch information
muhammad-ammar authored Feb 22, 2024
2 parents a0121ca + 8973937 commit 4988d93
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ Unreleased
----------

=========================
[6.1.1] - 2024-02-22
---------------------
* Update uuid4 regex

[6.1.0] - 2024-02-15
---------------------
* Permanently enable streaming csv
Expand Down
2 changes: 1 addition & 1 deletion enterprise_data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Enterprise data api application. This Django app exposes API endpoints used by enterprises.
"""

__version__ = "6.1.0"
__version__ = "6.1.1"
2 changes: 1 addition & 1 deletion enterprise_data/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
ANALYTICS_API_VERSION_0 = 'V0'
ANALYTICS_API_VERSION_1 = 'V1'

UUID4_REGEX = '[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}'
UUID4_REGEX = '[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}'

0 comments on commit 4988d93

Please sign in to comment.