Skip to content

Commit

Permalink
Merge pull request #2787 from nannan00/doc_1.10.31_version_log
Browse files Browse the repository at this point in the history
docs: 1.10.31 version log
  • Loading branch information
nannan00 authored Aug 22, 2024
2 parents 02368a8 + c6c210c commit 07a64cf
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
2 changes: 1 addition & 1 deletion saas/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.10.30
1.10.31
8 changes: 3 additions & 5 deletions saas/backend/api/admin/views/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,11 @@ def list(self, request, *args, **kwargs):

if page is None:
return Response(
{
"detail": "Pagination is required, but no valid page parameters were provided."},
status=status.HTTP_400_BAD_REQUEST
{"detail": "Pagination is required, but no valid page parameters were provided."},
status=status.HTTP_400_BAD_REQUEST,
)

serializer = AdminTemplateListSLZ(page, many=True,
role_system_actions=role_system_actions)
serializer = AdminTemplateListSLZ(page, many=True, role_system_actions=role_system_actions)
return paginator.get_paginated_response(serializer.data)

@swagger_auto_schema(
Expand Down
14 changes: 14 additions & 0 deletions saas/resources/version_log/change_log.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<!-- 2024-08-22 -->
# V1.10.31 版本更新日志

### 新增功能

* 超级管理类 API - 模板列表和用户组添加成员

### 缺陷修复

* 蓝盾内嵌页面隐藏跳转到授权边界入口
* 修复退出登录重定向地址转义多次

---

<!-- 2024-08-14 -->
# V1.10.30 版本更新日志

Expand Down
14 changes: 14 additions & 0 deletions saas/resources/version_log/change_log_en.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<!-- 2024-08-22 -->
# V1.10.31 Version Update Log

### New Features

* Super Admin API: Added template list and the ability to add members to user groups.

### Bug Fixes

* Embedded pages in BlueKing now hide the link to the authorization boundary entry.
* Fixed multiple escapes of the redirect URL upon logout.

---

<!-- 2024-08-14 -->
# V1.10.30 Version Update Log

Expand Down

0 comments on commit 07a64cf

Please sign in to comment.