1
0
mirror of synced 2025-11-06 04:21:05 +08:00

🔖 发布 1.4.0

This commit is contained in:
Yangkai.Shen
2021-05-10 15:55:28 +08:00
parent 7f04dd3bfd
commit 4233902219
4 changed files with 21 additions and 6 deletions

View File

@@ -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
- 升级 `JustAuth` 版本1.15.9,新增飞书、京东、阿里云、喜马拉雅、企业微信网页端登录

View File

@@ -28,7 +28,7 @@ https://github.com/xkcoding/justauth-spring-boot-starter-demo
<dependency>
<groupId>com.xkcoding.justauth</groupId>
<artifactId>justauth-spring-boot-starter</artifactId>
<version>1.3.5</version>
<version>1.4.0</version>
</dependency>
```

View File

@@ -23,7 +23,7 @@
<groupId>com.xkcoding.justauth</groupId>
<artifactId>justauth-spring-boot-starter</artifactId>
<version>1.3.5</version>
<version>1.4.0</version>
<name>justauth-spring-boot-starter</name>
<url>https://github.com/xkcoding/justauth-spring-boot-starter</url>
@@ -72,8 +72,8 @@
<!--SpringBoot版本-->
<spring-boot.version>2.1.8.RELEASE</spring-boot.version>
<!--JustAuth版本-->
<justauth.version>1.15.9</justauth.version>
<hutool.version>5.5.6</hutool.version>
<justauth.version>1.16.1</justauth.version>
<hutool.version>5.6.5</hutool.version>
</properties>
<dependencies>

View File

@@ -186,6 +186,8 @@ public class AuthRequestFactory {
return new AuthGiteeRequest(config, authStateCache);
case DINGTALK:
return new AuthDingTalkRequest(config, authStateCache);
case DINGTALK_ACCOUNT:
return new AuthDingTalkAccountRequest(config, authStateCache);
case BAIDU:
return new AuthBaiduRequest(config, authStateCache);
case CSDN:
@@ -198,10 +200,10 @@ public class AuthRequestFactory {
return new AuthAlipayRequest(config, authStateCache);
case QQ:
return new AuthQqRequest(config, authStateCache);
case WECHAT_MP:
return new AuthWeChatMpRequest(config, authStateCache);
case WECHAT_OPEN:
return new AuthWeChatOpenRequest(config, authStateCache);
case WECHAT_MP:
return new AuthWeChatMpRequest(config, authStateCache);
case WECHAT_ENTERPRISE:
return new AuthWeChatEnterpriseQrcodeRequest(config, authStateCache);
case WECHAT_ENTERPRISE_WEB:
@@ -250,6 +252,14 @@ public class AuthRequestFactory {
return new AuthAliyunRequest(config, authStateCache);
case XMLY:
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:
return null;
}