@itwin/build-tools 5.9.0-dev.8 → 5.9.0

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,6 +1,28 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Fri, 10 Apr 2026 13:03:16 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 04 May 2026 16:32:08 GMT and should not be manually modified.
4
+
5
+ ## 5.9.0
6
+ Mon, 04 May 2026 16:32:08 GMT
7
+
8
+ ### Updates
9
+
10
+ - Update @microsoft/api-extractor to ~7.58.7 (removes lodash CVE GHSA-r5fr-rjxr-66jc, GHSA-f23m-r3pf-42rh).
11
+
12
+ ## 5.8.4
13
+ Thu, 23 Apr 2026 18:05:13 GMT
14
+
15
+ _Version update only_
16
+
17
+ ## 5.8.3
18
+ Thu, 23 Apr 2026 14:52:42 GMT
19
+
20
+ _Version update only_
21
+
22
+ ## 5.8.2
23
+ Thu, 16 Apr 2026 11:05:01 GMT
24
+
25
+ _Version update only_
4
26
 
5
27
  ## 5.8.1
6
28
  Fri, 10 Apr 2026 13:02:00 GMT
@@ -47,8 +47,10 @@ const isCI = process.env.CI || process.env.TF_BUILD;
47
47
  if (isCI) {
48
48
  if (typeof (mocha) !== "undefined")
49
49
  mocha.forbidOnly();
50
- else
51
- require.cache[require.resolve("mocha/lib/mocharc.json", { paths: require.main?.paths ?? module.paths })].exports.forbidOnly = true;
50
+ else {
51
+ const mocharc = require(require.resolve("mocha/lib/mocharc.json", { paths: require.main?.paths ?? module.paths }));
52
+ mocharc.forbidOnly = true;
53
+ }
52
54
  }
53
55
  // This is necessary to enable colored output when running in rush test:
54
56
  Object.defineProperty(Base, "color", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "5.9.0-dev.8",
3
+ "version": "5.9.0",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -21,7 +21,7 @@
21
21
  "url": "http://www.bentley.com"
22
22
  },
23
23
  "dependencies": {
24
- "@microsoft/api-extractor": "~7.57.6",
24
+ "@microsoft/api-extractor": "~7.58.7",
25
25
  "chalk": "^3.0.0",
26
26
  "cpx2": "^8.0.0",
27
27
  "cross-spawn": "^7.0.5",