diff --git a/codegen/Templates/dart/pubspec.mustache b/codegen/Templates/dart/pubspec.mustache index dd22cde..dbf35f4 100644 --- a/codegen/Templates/dart/pubspec.mustache +++ b/codegen/Templates/dart/pubspec.mustache @@ -17,5 +17,5 @@ dependencies: http: '>=0.13.0 <2.0.0' dev_dependencies: - lints: ^5.1.1 + lints: ^6.0.0 test: ^1.25.1 diff --git a/codegen/Templates/nodejs/package.mustache b/codegen/Templates/nodejs/package.mustache index c87e5c1..80e84f8 100644 --- a/codegen/Templates/nodejs/package.mustache +++ b/codegen/Templates/nodejs/package.mustache @@ -156,15 +156,15 @@ "minify": true }, "devDependencies": { - "@types/jest": "^29.5.14", + "@types/jest": "^30.0.0", "@types/uuid": "^10.0.0", "@typescript-eslint/eslint-plugin": "^8.26.1", "@typescript-eslint/parser": "^8.26.1", "eslint": "^9.22.0", - "eslint-config-prettier": "^10.1.1", - "eslint-plugin-prettier": "^5.2.3", + "eslint-config-prettier": "^10.1.5", + "eslint-plugin-prettier": "^5.5.0", "npm-check-updates": "^17.1.15", - "prettier": "^3.5.3", + "prettier": "^3.6.0", "ts-jest": "^29.2.6", "tslib": "^2.8.1", "tsup": "^8.4.0", diff --git a/codegen/config-android.json b/codegen/config-android.json index eaf1ebd..7be2603 100644 --- a/codegen/config-android.json +++ b/codegen/config-android.json @@ -4,7 +4,7 @@ "androidSdkVersion": "33", "apiPackage": "com.aspose.barcode.cloud.demo_app", "artifactId": "Android Application for Barcode Processing in the Cloud via REST API", - "artifactVersion": "25.5.0", + "artifactVersion": "25.6.0", "groupId": "com.aspose", "invokerPackage": "com.aspose.barcode.cloud.demo_app", "modelPackage": "com.aspose.barcode.cloud.demo_app.model" diff --git a/codegen/config-dart.json b/codegen/config-dart.json index deb08f7..f306ef7 100644 --- a/codegen/config-dart.json +++ b/codegen/config-dart.json @@ -3,6 +3,6 @@ "browserClient": false, "pubDescription": "This SDK allows you to work with Aspose.BarCode for Cloud REST APIs in your Dart or Flutter applications quickly and easily", "pubName": "aspose_barcode_cloud", - "pubVersion": "4.25.5", + "pubVersion": "4.25.6", "useEnumExtension": true } \ No newline at end of file diff --git a/codegen/config-go.json b/codegen/config-go.json index c830b66..6beb668 100644 --- a/codegen/config-go.json +++ b/codegen/config-go.json @@ -1,4 +1,4 @@ { "packageName": "barcode", - "packageVersion": "4.2505.0" + "packageVersion": "4.2506.0" } \ No newline at end of file diff --git a/codegen/config-java.json b/codegen/config-java.json index e89940e..7e2a8fc 100644 --- a/codegen/config-java.json +++ b/codegen/config-java.json @@ -3,7 +3,7 @@ "artifactDescription": "Aspose.BarCode Cloud SDK for Java", "artifactId": "aspose-barcode-cloud", "artifactUrl": "https://www.aspose.cloud", - "artifactVersion": "25.5.0", + "artifactVersion": "25.6.0", "developerEmail": "denis.averin@aspose.com", "developerName": "Denis Averin", "developerOrganization": "Aspose", diff --git a/codegen/config-php.json b/codegen/config-php.json index 3596b4a..610956e 100644 --- a/codegen/config-php.json +++ b/codegen/config-php.json @@ -1,4 +1,4 @@ { - "artifactVersion": "25.5.0", + "artifactVersion": "25.6.0", "invokerPackage": "Aspose\\BarCode" } \ No newline at end of file diff --git a/codegen/config-python.json b/codegen/config-python.json index 8ac3113..6aedcc2 100644 --- a/codegen/config-python.json +++ b/codegen/config-python.json @@ -1,6 +1,6 @@ { "packageName": "aspose_barcode_cloud", "packageUrl": "https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-python", - "packageVersion": "25.5.0", + "packageVersion": "25.6.0", "projectName": "aspose-barcode-cloud" } \ No newline at end of file diff --git a/codegen/config.json b/codegen/config.json index 032fe5b..18f1c4b 100644 --- a/codegen/config.json +++ b/codegen/config.json @@ -1,9 +1,9 @@ { "artifactVersion": "23.7.0", "npmName": "aspose-barcode-cloud-node", - "npmVersion": "25.5.0", + "npmVersion": "25.6.0", "packageName": "Aspose.BarCode.Cloud.Sdk", - "packageVersion": "25.5.0", + "packageVersion": "25.6.0", "supportsES6": true, "targetFramework": "netstandard2.0" } \ No newline at end of file diff --git a/scripts/check-urls.py b/scripts/check-urls.py index fafa264..9a3dcdd 100644 --- a/scripts/check-urls.py +++ b/scripts/check-urls.py @@ -40,7 +40,6 @@ class Curl: "https://api.aspose.cloud/v4.0": (Curl.HTTP_RETURNED_ERROR, 404), "https://api.aspose.cloud/v4.0/": (Curl.HTTP_RETURNED_ERROR, 404), "https://id.aspose.cloud/connect/token": (Curl.HTTP_RETURNED_ERROR, 400), - "https://barcode.qa.aspose.cloud/v3.0/barcode/swagger/spec": (Curl.COULDNT_RESOLVE_HOST, None), # TODO: Temporary fix "https://dashboard.aspose.cloud/applications": (Curl.HTTP_RETURNED_ERROR, 404), } @@ -88,7 +87,9 @@ class Curl: ".sonatype.org", ".w3.org", ".wikipedia.org", + # Regular domains + "barcode.qa.aspose.cloud", "editorconfig.org", ] ) diff --git a/scripts/update_swagger_spec.bash b/scripts/update_swagger_spec.bash index 6d54c3c..99aaa1b 100755 --- a/scripts/update_swagger_spec.bash +++ b/scripts/update_swagger_spec.bash @@ -1,8 +1,8 @@ #!/bin/bash set -euo pipefail -# SWAGGER_SPEC_URL="https://api.aspose.cloud/v3.0/barcode/swagger/spec" +# SWAGGER_SPEC_URL="https://barcode.qa.aspose.cloud/v4.0/barcode/swagger/spec" SWAGGER_SPEC_URL="https://api.aspose.cloud/v4.0/barcode/swagger/spec" -# SWAGGER_SPEC_URL="http://localhost:47972/v3.0/barcode/swagger/spec" +# SWAGGER_SPEC_URL="http://localhost:47972/v4.0/barcode/swagger/spec" curl "${SWAGGER_SPEC_URL}" > spec/aspose-barcode-cloud.json diff --git a/submodules/android b/submodules/android index 12f026d..5859b9a 160000 --- a/submodules/android +++ b/submodules/android @@ -1 +1 @@ -Subproject commit 12f026d1205e014207f0fe067e56f4f3e9db3a69 +Subproject commit 5859b9a6df0784dc7878203ed1e78cd0a7812ad2 diff --git a/submodules/dart b/submodules/dart index 308a137..562ed9d 160000 --- a/submodules/dart +++ b/submodules/dart @@ -1 +1 @@ -Subproject commit 308a137edad60d1ae493b8bd6e67a7e29f06fcc7 +Subproject commit 562ed9d17d087cbfbd02eec7dcdded9789dbbc13 diff --git a/submodules/dotnet b/submodules/dotnet index 7758f46..68af368 160000 --- a/submodules/dotnet +++ b/submodules/dotnet @@ -1 +1 @@ -Subproject commit 7758f46c4b2ecf2b8342199800a99c58528749ec +Subproject commit 68af3687edc2ef954107cc88ff000352010d2da2 diff --git a/submodules/go b/submodules/go index ac6e50c..7d145e3 160000 --- a/submodules/go +++ b/submodules/go @@ -1 +1 @@ -Subproject commit ac6e50c87bbb6a3cb43dbe112063b95760c39b32 +Subproject commit 7d145e3d0c18ac767eab2998d42ad2769ace7939 diff --git a/submodules/java b/submodules/java index 70634c4..16d65b2 160000 --- a/submodules/java +++ b/submodules/java @@ -1 +1 @@ -Subproject commit 70634c4f18c13d53a97a80c7c7357f3451793926 +Subproject commit 16d65b277a18b2eb50878ac02904201832d32202 diff --git a/submodules/node b/submodules/node index b8cb6d4..38f2682 160000 --- a/submodules/node +++ b/submodules/node @@ -1 +1 @@ -Subproject commit b8cb6d4578fec891186c800b5e47689bbf6645b4 +Subproject commit 38f2682125ac3565e35eff448d6a2284a68ba88c diff --git a/submodules/php b/submodules/php index 40b0091..1c3b529 160000 --- a/submodules/php +++ b/submodules/php @@ -1 +1 @@ -Subproject commit 40b0091a1592173af2c1dcbb5e184c1248c512af +Subproject commit 1c3b529bb35c2593d16d4c6fbf2f05caf259d771 diff --git a/submodules/python b/submodules/python index cf9e37d..bfb0f30 160000 --- a/submodules/python +++ b/submodules/python @@ -1 +1 @@ -Subproject commit cf9e37d19b1b5997c40f523d17936e0bc2831ac0 +Subproject commit bfb0f30a8e192f81808f835a44e3486f27dcba15