Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sdks/bkpaas-auth/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 版本历史

## 3.2.1

- 使用 json 替换 pickle 来完成用户数据的序列化/反序列化

## 3.2.0

- 增加对 Django 5.x 版本的支持,并移除对 Python 3.9 版本的支持
Expand Down
2 changes: 1 addition & 1 deletion sdks/bkpaas-auth/bkpaas_auth/__init__.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
2 changes: 1 addition & 1 deletion sdks/bkpaas-auth/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
readme = "README.md"
authors = [{ name = "blueking", email = "blueking@tencent.com" }]
Expand Down
Loading