build(deps-dev): apply updates
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 9 Jul 2023 22:18:42 +0000 (00:18 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 9 Jul 2023 22:18:42 +0000 (00:18 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
package.json
pnpm-lock.yaml
src/worker/abstract-worker.ts

index 9552ec424e67512a4b2e18344e20a5240e097f95..112fd1e65b5ba93316e8faec45faca893f1d5268 100644 (file)
   "devDependencies": {
     "@commitlint/cli": "^17.6.6",
     "@commitlint/config-conventional": "^17.6.6",
-    "@release-it/bumper": "^4.0.2",
+    "@release-it/bumper": "^5.0.0",
     "@release-it/keep-a-changelog": "^3.1.0",
     "@rollup/plugin-terser": "^0.4.3",
     "@rollup/plugin-typescript": "^11.1.2",
index 5c4f738dbf281c2fe3d2a5f0d00ec492cec16ef6..db3d632daf2bf471464dd47e6d5208ae43c9105a 100644 (file)
@@ -15,8 +15,8 @@ devDependencies:
     specifier: ^17.6.6
     version: 17.6.6
   '@release-it/bumper':
-    specifier: ^4.0.2
-    version: 4.0.2(release-it@16.1.0)
+    specifier: ^5.0.0
+    version: 5.0.0(release-it@16.1.0)
   '@release-it/keep-a-changelog':
     specifier: ^3.1.0
     version: 3.1.0(release-it@16.1.0)
@@ -707,16 +707,16 @@ packages:
       config-chain: 1.1.13
     dev: true
 
-  /@release-it/bumper@4.0.2(release-it@16.1.0):
-    resolution: {integrity: sha512-HjiFIBNvb67cLTbzdm6EqiSRwpB4MJY4TGJFY/ac5qnIxERWK5gx1zBnwbJZffDSoS46hJMugoXrDbITEfX4gA==}
-    engines: {node: '>=14'}
+  /@release-it/bumper@5.0.0(release-it@16.1.0):
+    resolution: {integrity: sha512-s5DNaLhM177WSaV8GtHTKbEmkKmszsqChktFUVpAmoLDlUW4WmXq/S92DSfC9BHdM7SFhVTHsjgZBYReRpp3zw==}
+    engines: {node: '>=16'}
     peerDependencies:
-      release-it: ^15.2.0
+      release-it: ^16.0.0
     dependencies:
       '@iarna/toml': 2.2.5
       detect-indent: 7.0.1
-      fast-glob: 3.2.12
-      ini: 3.0.1
+      fast-glob: 3.3.0
+      ini: 4.1.1
       js-yaml: 4.1.0
       lodash.castarray: 4.4.0
       lodash.get: 4.4.2
@@ -2676,17 +2676,6 @@ packages:
     resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
     dev: true
 
-  /fast-glob@3.2.12:
-    resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
-    engines: {node: '>=8.6.0'}
-    dependencies:
-      '@nodelib/fs.stat': 2.0.5
-      '@nodelib/fs.walk': 1.2.8
-      glob-parent: 5.1.2
-      merge2: 1.4.1
-      micromatch: 4.0.5
-    dev: true
-
   /fast-glob@3.3.0:
     resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==}
     engines: {node: '>=8.6.0'}
@@ -3302,9 +3291,9 @@ packages:
     engines: {node: '>=10'}
     dev: true
 
-  /ini@3.0.1:
-    resolution: {integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==}
-    engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+  /ini@4.1.1:
+    resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
+    engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
     dev: true
 
   /inquirer@9.2.7:
index 1c1ff3d7700d72e11ad02d48b4e283282241833a..5598378a241cb94f3901f35b4ad621d87a2599d2 100644 (file)
@@ -380,7 +380,7 @@ export abstract class AbstractWorker<
   }
 
   /**
-   * Runs the given function synchronously.
+   * Runs the given task function synchronously.
    *
    * @param fn - Task function that will be executed.
    * @param task - Input data for the task function.
@@ -418,7 +418,7 @@ export abstract class AbstractWorker<
   }
 
   /**
-   * Runs the given function asynchronously.
+   * Runs the given task function asynchronously.
    *
    * @param fn - Task function that will be executed.
    * @param task - Input data for the task function.