🔖 发布 1.4.0
This commit is contained in:
@@ -1,5 +1,10 @@
|
|||||||
## 版本更新记录
|
## 版本更新记录
|
||||||
|
|
||||||
|
### 【1.4.0】2021-05-10
|
||||||
|
|
||||||
|
- 升级 `JustAuth` 版本:1.16.1,新增Amazon、Slack、LINE、Okta、钉钉账号登录,同时修复若干BUG,详细信息请参考参考:https://github.com/justauth/JustAuth/blob/master/CHANGELOGS.md#1161
|
||||||
|
- 升级 `hutool-core` 版本:5.6.5
|
||||||
|
|
||||||
### 【1.3.5】2021-01-04
|
### 【1.3.5】2021-01-04
|
||||||
|
|
||||||
- 升级 `JustAuth` 版本:1.15.9,新增飞书、京东、阿里云、喜马拉雅、企业微信网页端登录
|
- 升级 `JustAuth` 版本:1.15.9,新增飞书、京东、阿里云、喜马拉雅、企业微信网页端登录
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ https://github.com/xkcoding/justauth-spring-boot-starter-demo
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.xkcoding.justauth</groupId>
|
<groupId>com.xkcoding.justauth</groupId>
|
||||||
<artifactId>justauth-spring-boot-starter</artifactId>
|
<artifactId>justauth-spring-boot-starter</artifactId>
|
||||||
<version>1.3.5</version>
|
<version>1.4.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
6
pom.xml
6
pom.xml
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
<groupId>com.xkcoding.justauth</groupId>
|
<groupId>com.xkcoding.justauth</groupId>
|
||||||
<artifactId>justauth-spring-boot-starter</artifactId>
|
<artifactId>justauth-spring-boot-starter</artifactId>
|
||||||
<version>1.3.5</version>
|
<version>1.4.0</version>
|
||||||
|
|
||||||
<name>justauth-spring-boot-starter</name>
|
<name>justauth-spring-boot-starter</name>
|
||||||
<url>https://github.com/xkcoding/justauth-spring-boot-starter</url>
|
<url>https://github.com/xkcoding/justauth-spring-boot-starter</url>
|
||||||
@@ -72,8 +72,8 @@
|
|||||||
<!--SpringBoot版本-->
|
<!--SpringBoot版本-->
|
||||||
<spring-boot.version>2.1.8.RELEASE</spring-boot.version>
|
<spring-boot.version>2.1.8.RELEASE</spring-boot.version>
|
||||||
<!--JustAuth版本-->
|
<!--JustAuth版本-->
|
||||||
<justauth.version>1.15.9</justauth.version>
|
<justauth.version>1.16.1</justauth.version>
|
||||||
<hutool.version>5.5.6</hutool.version>
|
<hutool.version>5.6.5</hutool.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|||||||
@@ -186,6 +186,8 @@ public class AuthRequestFactory {
|
|||||||
return new AuthGiteeRequest(config, authStateCache);
|
return new AuthGiteeRequest(config, authStateCache);
|
||||||
case DINGTALK:
|
case DINGTALK:
|
||||||
return new AuthDingTalkRequest(config, authStateCache);
|
return new AuthDingTalkRequest(config, authStateCache);
|
||||||
|
case DINGTALK_ACCOUNT:
|
||||||
|
return new AuthDingTalkAccountRequest(config, authStateCache);
|
||||||
case BAIDU:
|
case BAIDU:
|
||||||
return new AuthBaiduRequest(config, authStateCache);
|
return new AuthBaiduRequest(config, authStateCache);
|
||||||
case CSDN:
|
case CSDN:
|
||||||
@@ -198,10 +200,10 @@ public class AuthRequestFactory {
|
|||||||
return new AuthAlipayRequest(config, authStateCache);
|
return new AuthAlipayRequest(config, authStateCache);
|
||||||
case QQ:
|
case QQ:
|
||||||
return new AuthQqRequest(config, authStateCache);
|
return new AuthQqRequest(config, authStateCache);
|
||||||
case WECHAT_MP:
|
|
||||||
return new AuthWeChatMpRequest(config, authStateCache);
|
|
||||||
case WECHAT_OPEN:
|
case WECHAT_OPEN:
|
||||||
return new AuthWeChatOpenRequest(config, authStateCache);
|
return new AuthWeChatOpenRequest(config, authStateCache);
|
||||||
|
case WECHAT_MP:
|
||||||
|
return new AuthWeChatMpRequest(config, authStateCache);
|
||||||
case WECHAT_ENTERPRISE:
|
case WECHAT_ENTERPRISE:
|
||||||
return new AuthWeChatEnterpriseQrcodeRequest(config, authStateCache);
|
return new AuthWeChatEnterpriseQrcodeRequest(config, authStateCache);
|
||||||
case WECHAT_ENTERPRISE_WEB:
|
case WECHAT_ENTERPRISE_WEB:
|
||||||
@@ -250,6 +252,14 @@ public class AuthRequestFactory {
|
|||||||
return new AuthAliyunRequest(config, authStateCache);
|
return new AuthAliyunRequest(config, authStateCache);
|
||||||
case XMLY:
|
case XMLY:
|
||||||
return new AuthXmlyRequest(config, authStateCache);
|
return new AuthXmlyRequest(config, authStateCache);
|
||||||
|
case AMAZON:
|
||||||
|
return new AuthAmazonRequest(config, authStateCache);
|
||||||
|
case SLACK:
|
||||||
|
return new AuthSlackRequest(config, authStateCache);
|
||||||
|
case LINE:
|
||||||
|
return new AuthLineRequest(config, authStateCache);
|
||||||
|
case OKTA:
|
||||||
|
return new AuthOktaRequest(config, authStateCache);
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user