Skip to content

Commit bafdef3

Browse files
committed
Aspose.Cells Cloud SDK 24.5.1.
1 parent e40354d commit bafdef3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](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+
![](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)
22

33
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.
44

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

2222

23-
## Feature & Enhancements in Version 24.5
23+
## Feature & Enhancements in Version 24.5.1
2424

2525
Full list of issues covering all changes in this release:
2626

2727
- Add merge queries method for loading data of data transformation.
2828
- Optimize chart data model.
29-
- Update obtaining access token address.
29+
3030

3131
## Support file format
3232

lib/Api/CellsApi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5400,8 +5400,8 @@ public function getAccessToken($grant_type, $client_id, $client_secret ,$version
54005400
$query = \GuzzleHttp\Psr7\Query::build($queryParams);
54015401
$request = new Request(
54025402
'POST',
5403-
// $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
5404-
'https://id.aspose.cloud' . $resourcePath . ($query ? "?{$query}" : ''),
5403+
$this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
5404+
// 'https://id.aspose.cloud' . $resourcePath . ($query ? "?{$query}" : ''),
54055405
$headers,
54065406
$httpBody
54075407
);

lib/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class Configuration
8787
*
8888
* @var string
8989
*/
90-
protected $userAgent = 'Aspose-Cells-Cloud/24.5/php';
90+
protected $userAgent = 'Aspose-Cells-Cloud/24.5.1/php';
9191

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

402402
return $report;

0 commit comments

Comments
 (0)