@gatling.io/cli 3.13.1 → 3.13.103

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/package.json CHANGED
@@ -1,7 +1,22 @@
1
1
  {
2
2
  "name": "@gatling.io/cli",
3
- "version": "3.13.1",
3
+ "version": "3.13.103",
4
4
  "license": "Apache-2.0",
5
+ "homepage": "https://gatling.io",
6
+ "repository": "github:gatling/gatling-js",
7
+ "bugs": "https://github.com/gatling/gatling/issues",
8
+ "keywords": [
9
+ "gatling",
10
+ "typescript",
11
+ "test",
12
+ "testing",
13
+ "loadtest",
14
+ "loadtesting",
15
+ "load test",
16
+ "load testing",
17
+ "performance test",
18
+ "performance testing"
19
+ ],
5
20
  "bin": {
6
21
  "gatling": "target/index.js"
7
22
  },
@@ -10,6 +10,6 @@ export const versions = {
10
10
  gatling: {
11
11
  core: "3.13.1",
12
12
  enterprisePluginCommons: "1.9.8",
13
- jsAdapter: "3.13.1"
13
+ jsAdapter: "3.13.103"
14
14
  }
15
15
  };
package/src/run.ts CHANGED
@@ -29,6 +29,7 @@ export const runSimulation = async (options: RunSimulationOptions): Promise<void
29
29
  const memoryArgs = options.memory !== undefined ? [`-Xms${options.memory}M`, `-Xmx${options.memory}M`] : [];
30
30
  const javaArgs = [
31
31
  ...Object.entries(options.runParameters).map(([key, value]) => `-D${key}=${value}`),
32
+ "--add-opens=java.base/java.lang=ALL-UNNAMED",
32
33
  `-Dgatling.js.bundle.filePath=${options.bundleFile}`,
33
34
  `-Dgatling.js.simulation=${options.simulation}`,
34
35
  ...jitTuningArgs,
@@ -13,6 +13,6 @@ exports.versions = {
13
13
  gatling: {
14
14
  core: "3.13.1",
15
15
  enterprisePluginCommons: "1.9.8",
16
- jsAdapter: "3.13.1"
16
+ jsAdapter: "3.13.103"
17
17
  }
18
18
  };
package/target/run.js CHANGED
@@ -15,6 +15,7 @@ const runSimulation = async (options) => {
15
15
  const memoryArgs = options.memory !== undefined ? [`-Xms${options.memory}M`, `-Xmx${options.memory}M`] : [];
16
16
  const javaArgs = [
17
17
  ...Object.entries(options.runParameters).map(([key, value]) => `-D${key}=${value}`),
18
+ "--add-opens=java.base/java.lang=ALL-UNNAMED",
18
19
  `-Dgatling.js.bundle.filePath=${options.bundleFile}`,
19
20
  `-Dgatling.js.simulation=${options.simulation}`,
20
21
  ...jitTuningArgs,