Skip to content

Commit 9a7d054

Browse files
authored
Merge pull request #102 from 1171736840/dev
Release 1.0.1
2 parents 9fea859 + 525bed3 commit 9a7d054

File tree

11 files changed

+29
-13
lines changed

11 files changed

+29
-13
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ Amazon S3、GoogleCloud Storage、金山云 KS3、美团云 MSS、京东云 OSS
3232

3333
后续即将支持 Samba、NFS
3434

35-
最新版 `1.0.0` 包含了大量功能更新与问题修复,例如解决了内存占用过大问题,支持大文件上传、 [脱离 SpringBoot 单独使用](https://spring-file-storage.xuyanwu.cn/#/脱离SpringBoot单独使用) 等,AmazonS3 和 GoogleCloudStorage 存储平台配置名称与之前版本不兼容,查看 [更新记录](https://spring-file-storage.xuyanwu.cn/#/更新记录?id=1.0.0)
35+
`1.0.1` 修复了 MultipartFile 无法正确获取文件名等问题,查看 [更新记录](https://spring-file-storage.xuyanwu.cn/#/更新记录?id=101)
36+
<br />
37+
`1.0.0` 包含了大量功能更新与问题修复,例如解决了内存占用过大问题,支持大文件上传、 [脱离 SpringBoot 单独使用](https://spring-file-storage.xuyanwu.cn/#/脱离SpringBoot单独使用) 等,AmazonS3 和 GoogleCloudStorage 存储平台配置名称与之前版本不兼容,查看 [更新记录](https://spring-file-storage.xuyanwu.cn/#/更新记录?id=100)
3638

3739
> 通过 WebDAV 连接到 Alist 后,可以使用百度网盘、天翼云盘、阿里云盘、迅雷网盘等常见存储服务,查看 [Alist 支持的存储平台](https://alist-doc.nn.ci/docs/webdav)
3840

docs/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ Amazon S3、GoogleCloud Storage、金山云 KS3、美团云 MSS、京东云 OSS
3232

3333
后续即将支持 Samba、NFS
3434

35-
最新版 `1.0.0` 包含了大量功能更新与问题修复,例如解决了内存占用过大问题,支持大文件上传、 [脱离 SpringBoot 单独使用](脱离SpringBoot单独使用) 等,AmazonS3 和 GoogleCloudStorage 存储平台配置名称与之前版本不兼容,查看 [更新记录](更新记录?id=1.0.0)
35+
`1.0.1` 修复了 MultipartFile 无法正确获取文件名等问题,查看 [更新记录](更新记录?id=101)
36+
<br />
37+
`1.0.0` 包含了大量功能更新与问题修复,例如解决了内存占用过大问题,支持大文件上传、 [脱离 SpringBoot 单独使用](脱离SpringBoot单独使用) 等,AmazonS3 和 GoogleCloudStorage 存储平台配置名称与之前版本不兼容,查看 [更新记录](更新记录?id=100)
3638

3739
> 通过 WebDAV 连接到 Alist 后,可以使用百度网盘、天翼云盘、阿里云盘、迅雷网盘等常见存储服务,查看 [Alist 支持的存储平台](https://alist-doc.nn.ci/docs/webdav)
3840

docs/_navbar.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
* 文档版本 1.0.0
1+
* 文档版本 1.0.1
2+
* [1.0.1](https://spring-file-storage.xuyanwu.cn/1.0.1/)
23
* [1.0.0](https://spring-file-storage.xuyanwu.cn/1.0.0/)
34
* [0.7.0](https://spring-file-storage.xuyanwu.cn/0.7.0/)
45
* [0.6.1](https://spring-file-storage.xuyanwu.cn/0.6.1/)

docs/快速入门.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<dependency>
99
<groupId>cn.xuyanwu</groupId>
1010
<artifactId>spring-file-storage</artifactId>
11-
<version>1.0.0</version>
11+
<version>1.0.1</version>
1212
</dependency>
1313
```
1414

docs/更新记录.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# 更新记录
22

3+
## 1.0.1
4+
2023-08-08
5+
- 修复了 MultipartFileWrapperAdapter 无法正确获取文件名的问题
6+
- 修复了缺少配置文件元数据的问题
7+
38
## 1.0.0
49
2023-08-06
510

docs/脱离SpringBoot单独使用.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<dependency>
99
<groupId>cn.xuyanwu</groupId>
1010
<artifactId>file-storage-core</artifactId>
11-
<version>1.0.0</version>
11+
<version>1.0.1</version>
1212
</dependency>
1313
```
1414

file-storage-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>spring-file-storage-parent</artifactId>
77
<groupId>cn.xuyanwu</groupId>
8-
<version>1.0.0</version>
8+
<version>1.0.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>file-storage-core</artifactId>
13-
<version>1.0.0</version>
13+
<version>1.0.1</version>
1414

1515
<properties>
1616
<maven.compiler.source>8</maven.compiler.source>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>cn.xuyanwu</groupId>
88
<artifactId>spring-file-storage-parent</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.0.0</version>
10+
<version>1.0.1</version>
1111

1212
<name>spring-file-storage-parent</name>
1313
<description>A File Storage Service</description>
@@ -63,7 +63,7 @@
6363
<dependency>
6464
<groupId>cn.xuyanwu</groupId>
6565
<artifactId>file-storage-core</artifactId>
66-
<version>1.0.0</version>
66+
<version>1.0.1</version>
6767
</dependency>
6868
<!-- Apache commons-pool2 -->
6969
<dependency>

spring-file-storage-test/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>cn.xuyanwu</groupId>
1414
<artifactId>spring-file-storage-test</artifactId>
15-
<version>1.0.0</version>
15+
<version>1.0.1</version>
1616
<name>spring-file-storage-test</name>
1717
<description>spring-file-storage 的测试和演示模块</description>
1818

@@ -145,7 +145,7 @@
145145
<dependency>
146146
<groupId>cn.xuyanwu</groupId>
147147
<artifactId>spring-file-storage</artifactId>
148-
<version>1.0.0</version>
148+
<version>1.0.1</version>
149149
</dependency>
150150

151151
<dependency>

spring-file-storage/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spring-file-storage-parent</artifactId>
77
<groupId>cn.xuyanwu</groupId>
8-
<version>1.0.0</version>
8+
<version>1.0.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -133,6 +133,12 @@
133133
<artifactId>spring-boot-starter-web</artifactId>
134134
<scope>provided</scope>
135135
</dependency>
136+
137+
<dependency>
138+
<groupId>org.springframework.boot</groupId>
139+
<artifactId>spring-boot-configuration-processor</artifactId>
140+
<optional>true</optional>
141+
</dependency>
136142
</dependencies>
137143

138144
</project>

0 commit comments

Comments
 (0)