We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b9dc17 commit a4d2b14Copy full SHA for a4d2b14
3 files changed
sdks/bkpaas-auth/CHANGES.md
@@ -1,5 +1,9 @@
1
# 版本历史
2
3
+## 3.2.1
4
+
5
+- 使用 json 替换 pickle 来完成用户数据的序列化/反序列化
6
7
## 3.2.0
8
9
- 增加对 Django 5.x 版本的支持,并移除对 Python 3.9 版本的支持
sdks/bkpaas-auth/bkpaas_auth/__init__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-__version__ = "3.1.3"
+__version__ = "3.2.1"
def get_user_by_user_id(user_id: str, username_only: bool = True):
sdks/bkpaas-auth/pyproject.toml
@@ -5,7 +5,7 @@ classifiers = ["License :: OSI Approved :: MIT License"]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
name = "bkpaas-auth"
-version = "3.2.0"
+version = "3.2.1"
description = "User authentication django app for blueking internal projects"
10
readme = "README.md"
11
authors = [{ name = "blueking", email = "blueking@tencent.com" }]
0 commit comments