Skip to content

Commit f82e3c8

Browse files
committed
Prepared v3 release 24.13
1 parent 53d9be2 commit f82e3c8

20 files changed

+51
-49
lines changed

.github/workflows/check-codegen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ name: Check pull request
44
# events but only for the main branch
55
on:
66
push:
7-
branches: [main]
7+
branches: [ v3 ]
88
pull_request:
9-
branches: [main]
9+
branches: [ v3 ]
1010

1111
jobs:
1212
check-submodules:

codegen/Templates/dart/pubspec.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ dependencies:
1717
http: '>=0.13.0 <2.0.0'
1818
1919
dev_dependencies:
20-
lints: ^5.1.1
20+
lints: ^6.0.0
2121
test: ^1.25.1

codegen/Templates/java/ApiClient.mustache

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,10 @@ public class ApiClient {
705705
response.message(), e, response.code(), response.headers().toMultimap());
706706
}
707707

708-
throw new ApiException(response.message(), response.code(), errorResponse);
708+
throw new ApiException(
709+
response.message().isEmpty() ? String.valueOf(response.code()) : response.message(),
710+
response.code(),
711+
errorResponse);
709712
}
710713

711714
/**

codegen/Templates/java/pom.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,14 +245,14 @@
245245
<maven.compiler.target>${java.version}</maven.compiler.target>
246246
<gson-fire-version>1.9.0</gson-fire-version>
247247
{{! Check version compatibility with gson-fire }}
248-
<gson-version>2.11.0</gson-version>
249-
<swagger-core-version>1.6.14</swagger-core-version>
248+
<gson-version>2.13.1</gson-version>
249+
<swagger-core-version>1.6.16</swagger-core-version>
250250
<okhttp-version>4.12.0</okhttp-version>
251251
{{#joda}}
252252
<jodatime-version>2.9.9</jodatime-version>
253253
{{/joda}}
254254
{{#threetenbp}}
255-
<threetenbp-version>1.7.0</threetenbp-version>
255+
<threetenbp-version>1.7.1</threetenbp-version>
256256
{{/threetenbp}}
257257
<maven-plugin-version>1.0.0</maven-plugin-version>
258258
<junit-version>4.13.2</junit-version>

codegen/Templates/nodejs/package.mustache

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,13 @@
149149
"devDependencies": {
150150
"@types/uuid": "^10.0.0",
151151
"dts-cli": "^2.0.5",
152-
"eslint-config-prettier": "^9.1.0",
153-
"eslint-plugin-prettier": "^5.2.1",
152+
"eslint-config-prettier": "^10.1.5",
153+
"eslint-plugin-prettier": "^5.4.1",
154154
"npm-check-updates": "^16.14.20",
155-
"prettier": "^3.4.2",
155+
"prettier": "^3.5.3",
156156
"ts-jest": "^29.1.3",
157157
"tslib": "^2.8.1",
158-
"uuid": "^11.0.3"
158+
"uuid": "^11.1.0"
159159
},
160160
"bugs": {
161161
"url": "https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-node/issues"

codegen/Templates/python/README.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This repository contains Aspose.BarCode Cloud SDK for Python source code. This S
2121

2222
Supported Python versions:
2323

24-
- Python 3.6+
24+
- Python 3.8+
2525

2626
To use these SDKs, you will need Client Id and Client Secret which can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/applications) (free registration in Aspose Cloud is required for this).
2727

codegen/Templates/python/setup.mustache

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ setup(
4444
"License :: OSI Approved :: MIT License",
4545
"Operating System :: OS Independent",
4646
"Programming Language :: Python :: 3",
47-
"Programming Language :: Python :: 3.6",
48-
"Programming Language :: Python :: 3.7",
4947
"Programming Language :: Python :: 3.8",
5048
"Programming Language :: Python :: 3.9",
5149
"Programming Language :: Python :: 3.10",

codegen/Templates/python/tox.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
; Use tox version 3.x
22
; Run particular env:
3-
; python -m tox -e 3.6
3+
; python -m tox -e 3.8
44
[tox]
5-
envlist = 3.6, 3.12
5+
envlist = 3.8, 3.13
66

77
[testenv]
88
passenv = TEST_CONFIGURATION_ACCESS_TOKEN

codegen/config-android.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"androidSdkVersion": "33",
55
"apiPackage": "com.aspose.barcode.cloud.demo_app",
66
"artifactId": "Android Application for Barcode Processing in the Cloud via REST API",
7-
"artifactVersion": "24.12.0",
7+
"artifactVersion": "24.13.0",
88
"groupId": "com.aspose",
99
"invokerPackage": "com.aspose.barcode.cloud.demo_app",
1010
"modelPackage": "com.aspose.barcode.cloud.demo_app.model"

codegen/config-dart.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"browserClient": false,
44
"pubDescription": "This SDK allows you to work with Aspose.BarCode for Cloud REST APIs in your Dart or Flutter applications quickly and easily",
55
"pubName": "aspose_barcode_cloud",
6-
"pubVersion": "1.24.12",
6+
"pubVersion": "1.24.13",
77
"useEnumExtension": true
88
}

0 commit comments

Comments
 (0)