Skip to content

Commit ab0c7b8

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 16f658e + fee2e5a commit ab0c7b8

File tree

5 files changed

+8
-42
lines changed

5 files changed

+8
-42
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [24.3.0] - Aspose Words Cloud for Dart 24.3 Release Notes
2+
3+
- Added support for 'RemoveEmptyCells' option for the 'Cleanup' parameter in the insert 'MailMerge' API method.
4+
5+
16
## [24.1.0] - Aspose Words Cloud for Dart 24.1 Release Notes
27

38
- Added support for InsertAfterNode in the insert API without NodePath.

JenkinsfileRelease

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,5 @@
11
parameters {
22
string(name: 'tagVersion', description: 'new version number for tag')
3-
string(name: 'testServerUrl', defaultValue: 'https://api-qa.aspose.cloud', description: 'server url')
4-
}
5-
6-
def runtests()
7-
{
8-
dir('dart') {
9-
try {
10-
stage('checkout'){
11-
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'LocalBranch', localBranch: "**"]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '361885ba-9425-4230-950e-0af201d90547', url: 'https://git.auckland.dynabic.com/words-cloud/words-cloud-dart.git']]])
12-
withCredentials([usernamePassword(credentialsId: '6839cbe8-39fa-40c0-86ce-90706f0bae5d', passwordVariable: 'ClientSecret', usernameVariable: 'ClientId')]) {
13-
sh 'mkdir -p settings'
14-
sh 'echo "{\\"ClientId\\": \\"$ClientId\\", \\"ClientSecret\\": \\"$ClientSecret\\", \\"BaseUrl\\": \\"$testServerUrl\\"}" > settings/servercreds.json'
15-
}
16-
}
17-
18-
docker.image('dart:2.19.4').inside {
19-
stage('prepare'){
20-
sh "dart pub get"
21-
sh "dart pub global activate junitreport"
22-
}
23-
24-
stage('lint'){
25-
sh "dart analyze --fatal-warnings ."
26-
}
27-
28-
stage('tests'){
29-
try {
30-
sh "dart run test test/aspose_words_cloud_tests.dart --concurrency=1 --no-color --reporter expanded --file-reporter json:testReport.json"
31-
} finally {
32-
sh "dart pub global run junitreport:tojunit --input testReport.json --output testReport.xml"
33-
junit 'testReport.xml'
34-
}
35-
}
36-
}
37-
} finally {
38-
deleteDir()
39-
}
40-
}
413
}
424

435
def makerelease() {
@@ -73,6 +35,5 @@ def makerelease() {
7335

7436
node('words-linux') {
7537
cleanWs()
76-
runtests()
7738
makerelease()
7839
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Add this dependency to your *pubspec.yaml*:
2727

2828
```yaml
2929
dependencies:
30-
aspose_words_cloud: 24.2.0
30+
aspose_words_cloud: 24.3.0
3131
```
3232
3333
## Getting Started

lib/src/api_client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ class ApiClient {
503503

504504
var httpRequest = http.Request(requestData.method, Uri.parse(requestData.url));
505505
httpRequest.headers['x-aspose-client'] = 'dart sdk';
506-
httpRequest.headers['x-aspose-client-version'] = '24.2';
506+
httpRequest.headers['x-aspose-client-version'] = '24.3';
507507
httpRequest.headers['Authorization'] = await _getAuthToken();
508508
httpRequest.headers.addAll(requestData.headers);
509509

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: aspose_words_cloud
22
description: This package allows you to work with Aspose.Words Cloud REST APIs in your Dart applications quickly and easily, with zero initial cost.
3-
version: 24.2.0
3+
version: 24.3.0
44
homepage: https://github.com/aspose-words-cloud/aspose-words-cloud-dart
55

66
environment:

0 commit comments

Comments
 (0)