Skip to content

Commit 1d431dc

Browse files
committed
adding dev-v0.29.2 tag to this commit to ensure building
1 parent 187d6ff commit 1d431dc

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

html/supertokens_python/constants.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h1 class="title">Module <code>supertokens_python.constants</code></h1>
4343
from __future__ import annotations
4444

4545
SUPPORTED_CDI_VERSIONS = [&#34;5.2&#34;]
46-
VERSION = &#34;0.29.1&#34;
46+
VERSION = &#34;0.29.2&#34;
4747
TELEMETRY = &#34;/telemetry&#34;
4848
USER_COUNT = &#34;/users/count&#34;
4949
USER_DELETE = &#34;/user/remove&#34;

html/supertokens_python/framework/django/django_response.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ <h1 class="title">Module <code>supertokens_python.framework.django.django_respon
7979
key=key,
8080
value=value,
8181
expires=datetime.fromtimestamp(ceil(expires / 1000)).strftime(
82-
&#34;%a, %d %b %Y %H:%M:%S UTC&#34;
82+
# NOTE: This should always be GMT. HTTP only supports GMT in cookies.
83+
# If this is not respected, the cookie is always treated as a session cookie.
84+
&#34;%a, %d %b %Y %H:%M:%S GMT&#34;
8385
),
8486
path=path,
8587
domain=domain,
@@ -177,7 +179,9 @@ <h2 class="section-title" id="header-classes">Classes</h2>
177179
key=key,
178180
value=value,
179181
expires=datetime.fromtimestamp(ceil(expires / 1000)).strftime(
180-
&#34;%a, %d %b %Y %H:%M:%S UTC&#34;
182+
# NOTE: This should always be GMT. HTTP only supports GMT in cookies.
183+
# If this is not respected, the cookie is always treated as a session cookie.
184+
&#34;%a, %d %b %Y %H:%M:%S GMT&#34;
181185
),
182186
path=path,
183187
domain=domain,

0 commit comments

Comments
 (0)