1
0
mirror of https://github.com/chillzhuang/Sword synced 2025-01-23 21:31:36 +08:00

🎉 4.4.0.RELEASE 新增黑白名单、脱敏工具、BladeRedis新版工具

This commit is contained in:
smallchill 2025-01-18 18:22:40 +08:00
parent d4abb05e9b
commit bd2589853c
7 changed files with 23 additions and 9 deletions

View File

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

View File

@ -18,7 +18,7 @@ module.exports = {
pwa: true,
auth: {
// 使用后端工程 @org.springblade.test.Sm2KeyGenerator 获取
publicKey: '请配置国密sm2公钥',
publicKey: '048ecaec81db406275b5fd8a18164c4a58cc8575159b89d3cb61871cab34bd267fe0a7543277d4c9cfd13c946c507c3e8dfe0121b845ba968221eaf64a242cf7f0',
},
// 第三方登陆授权地址
authUrl: 'http://localhost/blade-auth/oauth/render',

View File

@ -20,7 +20,7 @@ class Workplace extends PureComponent {
<Row gutter={24}>
<Col span={24}>
<div style={{ textAlign: 'center' }}>
<img src="https://img.shields.io/badge/Release-V4.2.0-green.svg" alt="Downloads" />
<img src="https://img.shields.io/badge/Release-V4.4.0-green.svg" alt="Downloads" />
<img src="https://img.shields.io/badge/JDK-17+-green.svg" alt="Build Status" />
<img
src="https://img.shields.io/badge/Spring%20Cloud-2023-blue.svg"
@ -212,7 +212,21 @@ class Workplace extends PureComponent {
</Row>
<Row gutter={24}>
<Card className={styles.card} bordered={false}>
<Collapse bordered={false} defaultActiveKey={['39']}>
<Collapse bordered={false} defaultActiveKey={['40']}>
<Panel header="4.4.0发布 新增黑白名单、脱敏工具、BladeRedis新版工具" key="40">
<div>1.[升级]Spring 6.1.15</div>
<div>2.[升级]SpringBoot 3.2.12</div>
<div>3.[新增]黑名单与白名单IP配置功能</div>
<div>4.[新增]自定义URL拦截功能默认屏蔽外部访问actuator接口</div>
<div>5.[新增]脱敏工具类</div>
<div>6.[新增]BladeRedis工具类代替RedisUtil工具类</div>
<div>7.[新增]基于Redisson支持redis pub/sub 发布</div>
<div>8.[新增]@TenantIgnore注解用于接口排除租户逻辑</div>
<div>9.[优化]jackson序列化时支持空字符串转换为null对象</div>
<div>10.[优化]调整 sql 日志打印实现逻辑</div>
<div>11.[优化]关闭 mybatis 默认的日志</div>
<div>12.[优化]默认放行feign接口特定前缀的feign接口不再二次鉴权</div>
</Panel>
<Panel header="4.3.0发布 多租户支持线程模式指定租户ID与忽略租户" key="39">
<div>1.[升级]SpringBoot 6.1.14</div>
<div>2.[升级]SpringBoot 3.2.10</div>

View File

@ -109,7 +109,7 @@ class LogApi extends PureComponent {
loading={loading}
data={apiData}
columns={columns}
pkField="strId"
pkField="id"
/>
</Panel>
);

View File

@ -100,7 +100,7 @@ class LogError extends PureComponent {
loading={loading}
data={errorData}
columns={columns}
pkField="strId"
pkField="id"
/>
</Panel>
);

View File

@ -109,7 +109,7 @@ class LogUsual extends PureComponent {
loading={loading}
data={usualData}
columns={columns}
pkField="strId"
pkField="id"
/>
</Panel>
);

View File

@ -16,7 +16,7 @@ export async function remove(params) {
return request('/api/blade-desk/notice/remove', {
method: 'POST',
body: func.toFormData(params),
cryptoToken: true,
cryptoToken: false,
});
}
@ -24,7 +24,7 @@ export async function submit(params) {
return request('/api/blade-desk/notice/submit', {
method: 'POST',
body: params,
cryptoToken: true,
cryptoToken: false,
});
}