Skip to content

Commit 6f14ca1

Browse files
committed
Release Aspose.Cells Cloud SDK 25.7.0
1 parent 2f9db45 commit 6f14ca1

File tree

3 files changed

+10
-15
lines changed

3 files changed

+10
-15
lines changed

Aspose.Cells.Cloud.pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
<dependency>
1010
<groupId>com.aspose</groupId>
1111
<artifactId>aspose-cells-cloud</artifactId>
12-
<version>25.6.0</version>
12+
<version>25.7.0</version>
1313
</dependency>
1414
</dependencies>

README.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://img.shields.io/badge/aspose.cells%20Cloud%20SDK%20for%20Java-v25.6.0-green?style=for-the-badge&logo=java)[![Product Page](https://img.shields.io/badge/Product-0288d1?style=for-the-badge&logo=Google-Chrome&logoColor=white)](https://products.aspose.cloud/cells/java/) [![Documentation](https://img.shields.io/badge/Documentation-388e3c?style=for-the-badge&logo=Hugo&logoColor=white)](https://docs.aspose.cloud/cells/) [![API Ref](https://img.shields.io/badge/Reference-f39c12?style=for-the-badge&logo=html5&logoColor=white)](https://reference.aspose.cloud/cells/) [![Examples](https://img.shields.io/badge/Examples-1565c0?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/tree/main/examples) [![Blog](https://img.shields.io/badge/Blog-d32f2f?style=for-the-badge&logo=WordPress&logoColor=white)](https://blog.aspose.cloud/categories/aspose.cells-cloud-product-family/) [![Support](https://img.shields.io/badge/Support-7b1fa2?style=for-the-badge&logo=Discourse&logoColor=white)](https://forum.aspose.cloud/c/cells/7) [![License](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java?style=for-the-badge&logo=rocket&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/blob/master/LICENSE)
1+
![](https://img.shields.io/badge/aspose.cells%20Cloud%20SDK%20for%20Java-v25.7.0-green?style=for-the-badge&logo=java)[![Product Page](https://img.shields.io/badge/Product-0288d1?style=for-the-badge&logo=Google-Chrome&logoColor=white)](https://products.aspose.cloud/cells/java/) [![Documentation](https://img.shields.io/badge/Documentation-388e3c?style=for-the-badge&logo=Hugo&logoColor=white)](https://docs.aspose.cloud/cells/) [![API Ref](https://img.shields.io/badge/Reference-f39c12?style=for-the-badge&logo=html5&logoColor=white)](https://reference.aspose.cloud/cells/) [![Examples](https://img.shields.io/badge/Examples-1565c0?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/tree/main/examples) [![Blog](https://img.shields.io/badge/Blog-d32f2f?style=for-the-badge&logo=WordPress&logoColor=white)](https://blog.aspose.cloud/categories/aspose.cells-cloud-product-family/) [![Support](https://img.shields.io/badge/Support-7b1fa2?style=for-the-badge&logo=Discourse&logoColor=white)](https://forum.aspose.cloud/c/cells/7) [![License](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java?style=for-the-badge&logo=rocket&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/blob/master/LICENSE)
22

33
Aspose.Cells Cloud SDK for Java enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.
44

@@ -22,21 +22,18 @@ To get started with Aspose.Cells Cloud for Java, follow these steps:
2222
<dependency>
2323
<groupId>com.aspose</groupId>
2424
<artifactId>aspose-cells-cloud</artifactId>
25-
<version>25.6.0</version>
25+
<version>25.7.0</version>
2626
</dependency>
2727
</dependencies>
2828
```
2929

3030
```Java
3131
CellsApi cellsApi = new CellsApi(CellsApiUtil.GetClientId(),CellsApiUtil.GetClientSecret());
32-
String localName = "cloud.png";
33-
String remoteName = "cloud.png";
32+
String localPath = "Book1.xlsx";
3433
String format = "csv";
3534
PutConvertWorkbookRequest request = new PutConvertWorkbookRequest();
3635
request.setFormat(format);
37-
HashMap<String,File> fileMap = new HashMap<String,File>();
38-
fileMap.put(localName ,CellsApiUtil.GetFileHolder(localName) );
39-
request.setFile(fileMap);
36+
request.setLocalPath(localPath);
4037
File response = cellsApi.putConvertWorkbook(request);
4138
```
4239

@@ -100,17 +97,15 @@ File response = cellsApi.putConvertWorkbook(request);
10097
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
10198
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
10299

103-
## Feature & Enhancements in Version v25.6.0
100+
## Feature & Enhancements in Version v25.7.0
104101

105102
Full list of issues covering all changes in this release:
106103

107104
|**Summary**| **Category** |
108105
| :- |:-------------|
109-
| Optimize the upload file API | Improvement |
110-
| Support delete blank rows, columns, and worksheets. | New Feature |
111-
| Optimize search context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
112-
| Optimize search broken links for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
113-
| Optimize replace context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
106+
| Optimize operate scope options for extProcessingController. | Improvement |
107+
| Add protect/unprotect spreadsheet APIs. | New Feature |
108+
| Add convert worksheet/table/range to other formats. | New Feature |
114109

115110
## Available SDKs
116111

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>aspose-cells-cloud</artifactId>
66
<packaging>jar</packaging>
77
<name>aspose-cells-cloud</name>
8-
<version>25.6.0</version>
8+
<version>25.7.0</version>
99
<url>https://github.com/aspose-cells-cloud/aspose-cells-cloud-java</url>
1010
<scm>
1111
<connection>scm:git:git@github.com:aspose-cells-cloud/aspose-cells-cloud-java</connection>

0 commit comments

Comments
 (0)