🎉 3.7.1.RELEASE 升级系统安全性能

This commit is contained in:
smallchill 2023-12-08 00:49:06 +08:00
parent ac9abc8cc0
commit 84cae50f4a
4 changed files with 19 additions and 9 deletions

View File

@ -1,9 +1,9 @@
<p align="center">
<img src="https://img.shields.io/badge/Release-V3.7.0-green.svg" alt="Downloads">
<img src="https://img.shields.io/badge/Release-V3.7.1-green.svg" alt="Downloads">
<img src="https://img.shields.io/badge/JDK-1.8+-green.svg" alt="Build Status">
<img src="https://img.shields.io/badge/license-Apache%202-blue.svg" alt="Build Status">
<img src="https://img.shields.io/badge/Spring%20Cloud-2021-blue.svg" alt="Coverage Status">
<img src="https://img.shields.io/badge/Spring%20Boot-2.7.15-blue.svg" alt="Downloads">
<img src="https://img.shields.io/badge/Spring%20Boot-2.7.18-blue.svg" alt="Downloads">
<a target="_blank" href="https://bladex.cn">
<img src="https://img.shields.io/badge/Author-Small%20Chill-ff69b4.svg" alt="Downloads">
</a>

View File

@ -1,6 +1,6 @@
{
"name": "sword-admin",
"version": "3.7.0",
"version": "3.7.1",
"description": "An out-of-box UI solution for enterprise applications",
"private": true,
"scripts": {

View File

@ -20,14 +20,14 @@ class Workplace extends PureComponent {
<Row gutter={24}>
<Col span={24}>
<div style={{ textAlign: 'center' }}>
<img src="https://img.shields.io/badge/Release-V3.7.0-green.svg" alt="Downloads" />
<img src="https://img.shields.io/badge/Release-V3.7.1-green.svg" alt="Downloads" />
<img src="https://img.shields.io/badge/JDK-1.8+-green.svg" alt="Build Status" />
<img
src="https://img.shields.io/badge/Spring%20Cloud-2021-blue.svg"
alt="Coverage Status"
/>
<img
src="https://img.shields.io/badge/Spring%20Boot-2.7.15-blue.svg"
src="https://img.shields.io/badge/Spring%20Boot-2.7.18-blue.svg"
alt="Downloads"
/>
<a href="https://bladex.cn">
@ -212,7 +212,17 @@ class Workplace extends PureComponent {
</Row>
<Row gutter={24}>
<Card className={styles.card} bordered={false}>
<Collapse bordered={false} defaultActiveKey={['34']}>
<Collapse bordered={false} defaultActiveKey={['35']}>
<Panel header="3.7.1发布 升级系统安全性能" key="35">
<div>1.升级 SpringBoot 2.7.18</div>
<div>2.升级 SpringBootAdmin 2.7.14</div>
<div>3.升级 Mybatis-Plus 3.5.4.1</div>
<div>4.升级 Mybatis-Plus-Generator 3.5.4.1</div>
<div>5.升级 Knife4j 4.3.0</div>
<div>6.优化 防SQL注入逻辑避免双写等情况出现</div>
<div>7.调整 重要API调用等级防止被恶意调用</div>
<div>8.调整 默认关闭通知公告模块的Token加密功能</div>
</Panel>
<Panel header="3.7.0发布 新增Token加密传输功能" key="34">
<div>1.升级 SpringCloud 2021.0.8</div>
<div>2.升级 SpringBoot 2.7.15</div>

View File

@ -5,11 +5,11 @@ import request from '../utils/request';
// =====================通知公告===========================
export async function queryProjectNotice(params = {}) {
return request(`/api/blade-desk/dashboard/notices?${stringify(params)}`, { cryptoToken: true });
return request(`/api/blade-desk/dashboard/notices?${stringify(params)}`, { cryptoToken: false });
}
export async function list(params) {
return request(`/api/blade-desk/notice/list?${stringify(params)}`, { cryptoToken: true });
return request(`/api/blade-desk/notice/list?${stringify(params)}`, { cryptoToken: false });
}
export async function remove(params) {
@ -29,5 +29,5 @@ export async function submit(params) {
}
export async function detail(params) {
return request(`/api/blade-desk/notice/detail?${stringify(params)}`, { cryptoToken: true });
return request(`/api/blade-desk/notice/detail?${stringify(params)}`, { cryptoToken: false });
}