mirror of
https://github.com/chillzhuang/Sword
synced 2024-11-22 02:09:26 +08:00
🎉 2.6.2.RELEASE,升级支持Seata1.1,支持阿里云oss
This commit is contained in:
parent
e380417953
commit
471c659f38
@ -1,9 +1,9 @@
|
|||||||
<p align="center">
|
<p align="center">
|
||||||
<img src="https://img.shields.io/badge/Release-V2.6.1-green.svg" alt="Downloads">
|
<img src="https://img.shields.io/badge/Release-V2.6.2-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/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/license-Apache%202-blue.svg" alt="Build Status">
|
||||||
<img src="https://img.shields.io/badge/Spring%20Cloud-Hoxton.SR1-blue.svg" alt="Coverage Status">
|
<img src="https://img.shields.io/badge/Spring%20Cloud-Hoxton.SR2-blue.svg" alt="Coverage Status">
|
||||||
<img src="https://img.shields.io/badge/Spring%20Boot-2.2.2.RELEASE-blue.svg" alt="Downloads">
|
<img src="https://img.shields.io/badge/Spring%20Boot-2.2.5.RELEASE-blue.svg" alt="Downloads">
|
||||||
<a target="_blank" href="https://bladex.vip">
|
<a target="_blank" href="https://bladex.vip">
|
||||||
<img src="https://img.shields.io/badge/Author-Small%20Chill-ff69b4.svg" alt="Downloads">
|
<img src="https://img.shields.io/badge/Author-Small%20Chill-ff69b4.svg" alt="Downloads">
|
||||||
</a>
|
</a>
|
||||||
|
11
mock/user.js
11
mock/user.js
@ -166,6 +166,17 @@ const proxy = {
|
|||||||
msg: '操作成功',
|
msg: '操作成功',
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
'GET /api/blade-auth/captcha': (req, res) => {
|
||||||
|
res.send({
|
||||||
|
code: 200,
|
||||||
|
success: true,
|
||||||
|
data: {
|
||||||
|
key: 'blade-captcha',
|
||||||
|
image: 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7',
|
||||||
|
},
|
||||||
|
msg: '操作成功',
|
||||||
|
});
|
||||||
|
},
|
||||||
'POST /api/register': (req, res) => {
|
'POST /api/register': (req, res) => {
|
||||||
res.send({ status: 'ok', currentAuthority: 'user' });
|
res.send({ status: 'ok', currentAuthority: 'user' });
|
||||||
},
|
},
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "sword",
|
"name": "sword",
|
||||||
"version": "2.6.1",
|
"version": "2.6.2",
|
||||||
"description": "An out-of-box UI solution for enterprise applications",
|
"description": "An out-of-box UI solution for enterprise applications",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"presite": "cd functions && npm install",
|
"presite": "cd functions && npm install",
|
||||||
"start": "cross-env APP_TYPE=site PORT=8888 umi dev",
|
"start": "cross-env MOCK=none PORT=8888 umi dev",
|
||||||
"start:no-mock": "cross-env MOCK=none PORT=8888 umi dev",
|
"start:no-mock": "cross-env MOCK=none PORT=8888 umi dev",
|
||||||
|
"start:mock": "cross-env APP_TYPE=site PORT=8888 umi dev",
|
||||||
"build": "umi build",
|
"build": "umi build",
|
||||||
"site": "npm run presite && cross-env APP_TYPE=site npm run build && firebase deploy && npm run docker:push",
|
"site": "npm run presite && cross-env APP_TYPE=site npm run build && firebase deploy && npm run docker:push",
|
||||||
"analyze": "cross-env ANALYZE=1 umi build",
|
"analyze": "cross-env ANALYZE=1 umi build",
|
||||||
|
@ -14,14 +14,14 @@ class Workplace extends PureComponent {
|
|||||||
<Row gutter={24}>
|
<Row gutter={24}>
|
||||||
<Col span={24}>
|
<Col span={24}>
|
||||||
<div style={{ textAlign: 'center' }}>
|
<div style={{ textAlign: 'center' }}>
|
||||||
<img src="https://img.shields.io/badge/Release-V2.6.1-green.svg" alt="Downloads" />
|
<img src="https://img.shields.io/badge/Release-V2.6.2-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/JDK-1.8+-green.svg" alt="Build Status" />
|
||||||
<img
|
<img
|
||||||
src="https://img.shields.io/badge/Spring%20Cloud-Hoxton.SR1-blue.svg"
|
src="https://img.shields.io/badge/Spring%20Cloud-Hoxton.SR2-blue.svg"
|
||||||
alt="Coverage Status"
|
alt="Coverage Status"
|
||||||
/>
|
/>
|
||||||
<img
|
<img
|
||||||
src="https://img.shields.io/badge/Spring%20Boot-2.2.4.RELEASE-blue.svg"
|
src="https://img.shields.io/badge/Spring%20Boot-2.2.5.RELEASE-blue.svg"
|
||||||
alt="Downloads"
|
alt="Downloads"
|
||||||
/>
|
/>
|
||||||
<a href="https://bladex.vip">
|
<a href="https://bladex.vip">
|
||||||
@ -206,7 +206,15 @@ class Workplace extends PureComponent {
|
|||||||
</Row>
|
</Row>
|
||||||
<Row gutter={24}>
|
<Row gutter={24}>
|
||||||
<Card className={styles.card} bordered={false}>
|
<Card className={styles.card} bordered={false}>
|
||||||
<Collapse bordered={false} defaultActiveKey={['15']}>
|
<Collapse bordered={false} defaultActiveKey={['16']}>
|
||||||
|
<Panel header="2.6.1发布 增加登陆验证码,支持seata1.0" key="16">
|
||||||
|
<div>1.升级SpringBoot 2.2.5.RELEASE</div>
|
||||||
|
<div>2.升级SpringCloud Hoxton.SR2</div>
|
||||||
|
<div>3.升级Seata 1.1.0</div>
|
||||||
|
<div>4.增加阿里云对象存储封装</div>
|
||||||
|
<div>5.优化BladeFeignTargeter的加载逻辑</div>
|
||||||
|
<div>6.优化系统配置</div>
|
||||||
|
</Panel>
|
||||||
<Panel header="2.6.1发布 增加登陆验证码,支持seata1.0" key="15">
|
<Panel header="2.6.1发布 增加登陆验证码,支持seata1.0" key="15">
|
||||||
<div>1.升级SpringBoot 2.2.4.RELEASE</div>
|
<div>1.升级SpringBoot 2.2.4.RELEASE</div>
|
||||||
<div>2.升级Alibaba Cloud 2.2.0.RELEASE</div>
|
<div>2.升级Alibaba Cloud 2.2.0.RELEASE</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user