Skip to content

Commit

Permalink
Aspose.Cells Cloud SDK 24.5.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
roywangaspose committed May 24, 2024
1 parent e40354d commit bafdef3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Packagist Version](https://img.shields.io/packagist/v/aspose/cells-sdk-php) ![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/aspose/cells-sdk-php) ![Packagist Downloads](https://img.shields.io/packagist/dt/aspose/cells-sdk-php) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-php/24.5)
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Packagist Version](https://img.shields.io/packagist/v/aspose/cells-sdk-php) ![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/aspose/cells-sdk-php) ![Packagist Downloads](https://img.shields.io/packagist/dt/aspose/cells-sdk-php) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-php/24.5.1)

Aspose.Cells Cloud for PHP 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.

Expand All @@ -20,13 +20,13 @@ Enhance your PHP applications with the [Aspose.Cells Cloud](https://products.asp
- 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.


## Feature & Enhancements in Version 24.5
## Feature & Enhancements in Version 24.5.1

Full list of issues covering all changes in this release:

- Add merge queries method for loading data of data transformation.
- Optimize chart data model.
- Update obtaining access token address.


## Support file format

Expand Down
4 changes: 2 additions & 2 deletions lib/Api/CellsApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -5400,8 +5400,8 @@ public function getAccessToken($grant_type, $client_id, $client_secret ,$version
$query = \GuzzleHttp\Psr7\Query::build($queryParams);
$request = new Request(
'POST',
// $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
'https://id.aspose.cloud' . $resourcePath . ($query ? "?{$query}" : ''),
$this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
// 'https://id.aspose.cloud' . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
Expand Down
4 changes: 2 additions & 2 deletions lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class Configuration
*
* @var string
*/
protected $userAgent = 'Aspose-Cells-Cloud/24.5/php';
protected $userAgent = 'Aspose-Cells-Cloud/24.5.1/php';

/**
* Debug switch (default set to false)
Expand Down Expand Up @@ -396,7 +396,7 @@ public static function toDebugReport()
$report .= ' OS: ' . php_uname() . PHP_EOL;
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
$report .= ' OpenAPI Spec Version: 3.0' . PHP_EOL;
$report .= ' SDK Package Version: 24.5' . PHP_EOL;
$report .= ' SDK Package Version: 24.5.1' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;

return $report;
Expand Down

0 comments on commit bafdef3

Please sign in to comment.