We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1134fb commit d84ff35Copy full SHA for d84ff35
3 files changed
runtime/bk-plugin-runtime/bk_plugin_runtime/__version__.py
@@ -9,4 +9,4 @@
9
specific language governing permissions and limitations under the License.
10
"""
11
12
-__version__ = "2.1.2"
+__version__ = "2.1.3"
runtime/bk-plugin-runtime/bk_plugin_runtime/config/default.py
@@ -77,6 +77,8 @@
77
"apigw_manager.apigw.authentication.ApiGatewayJWTUserMiddleware", # JWT 透传的用户信息
78
)
79
80
+# 用户认证
81
+AUTHENTICATION_BACKENDS += ("bk_plugin_runtime.packages.apigw.backends.APIGWUserModelBackend",) # noqa
82
83
# 所有环境的日志级别可以在这里配置
84
# LOG_LEVEL = 'INFO'
runtime/bk-plugin-runtime/pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "bk-plugin-runtime"
3
-version = "2.1.3rc4"
+version = "2.1.3"
4
description = "bk plugin python django runtime"
5
authors = ["Your Name <you@example.com>"]
6
license = "MIT"
0 commit comments