qase-javascript-commons 2.2.4 → 2.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# qase-javascript-commons@2.2.5
|
|
2
|
+
|
|
3
|
+
## What's new
|
|
4
|
+
|
|
5
|
+
Use the API v2 client by default. If you want to use the API v1 client, specify the `useV2` option in the config file or
|
|
6
|
+
the environment variable `QASE_TESTOPS_USEV2` as `False`.
|
|
7
|
+
|
|
1
8
|
# qase-javascript-commons@2.2.3
|
|
2
9
|
|
|
3
10
|
## What's new
|
|
@@ -47,7 +47,7 @@ class TestOpsReporter extends abstract_reporter_1.AbstractReporter {
|
|
|
47
47
|
this.environment = environment;
|
|
48
48
|
this.planId = plan.id;
|
|
49
49
|
this.batchSize = options.batch?.size ?? defaultChunkSize;
|
|
50
|
-
this.useV2 = options.useV2 ??
|
|
50
|
+
this.useV2 = options.useV2 ?? true;
|
|
51
51
|
this.defect = options.defect ?? false;
|
|
52
52
|
this.rootSuite = rootSuite;
|
|
53
53
|
}
|