You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: documentation/src/main/markdown/currentreleasenotes.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
* Nuget Inspector now supports the exclusion of user-specified dependency types from the Bill of Materials (BOM) via the [solution_name] property --detect.nuget.dependency.types.excluded. See the [detect.nuget.dependency.types.excluded](properties/detectors/nuget.md#nuget-dependency-types-excluded) property for more information.
8
8
* A new detector for Python packages has been added. The PIP Requirements File Parse is a buildless detector that acts as a LOW accuracy fallback for the PIP Native Inspector. This detector is triggered for PIP projects that contain one or more requirements.txt files if [solution_name] does not have access to a PIP executable in the environment where the scan is run.
9
9
* See [PIP Requirements File Parse](packagemgrs/python.md).
10
-
* To improve Yarn detector performance a new parameter is now available. The `--detect.yarn.monorepo.mode` parameter enables monorepo mode to build the dependency graph without analysis of workspaces. The default setting for this parameter is false and must be set to true to be enabled.
10
+
* To improve Yarn detector performance a new parameter is now available. The `--detect.yarn.ignore.all.workspaces` parameter enables the Yarn detector to build the dependency graph without analysis of workspaces. The default setting for this parameter is false and must be set to true to be enabled.
11
11
* See [Yarn support](packagemgrs/yarn.md).
12
12
* Support for BitBake is now extended to 2.6 (Yocto 4.3.2).
13
13
* Support for Yarn extended to include Yarn 3 and Yarn 4.
Copy file name to clipboardexpand all lines: documentation/src/main/markdown/packagemgrs/yarn.md
+5-3
Original file line number
Diff line number
Diff line change
@@ -64,11 +64,13 @@ referencing guidelines described above. You can also use
64
64
filename globbing-style wildcards and specify multiple values separated
65
65
by commas.
66
66
67
-
### Enable monorepo mode
67
+
### Enable workspace ignore
68
68
69
-
To speed up scanning by building the dependency graph without analysis of workspaces, set the parameter`--detect.yarn.monorepo.mode=true` to enable monorepo mode.
69
+
To speed up scanning by building the dependency graph without analysis of workspaces, set the parameter`--detect.yarn.ignore.all.workspaces=true`.
70
70
The default setting for this parameter is false and must be set to true to enable.
71
71
72
-
<notetype="note">The properties `detect.yarn.excluded.workspaces` and `detect.yarn.included.workspaces` do not apply if `detect.yarn.monorepo.mode=true`.</note>
72
+
Dependencies in workspaces that are not in the Yarn lock file will not be included in the Bill of Materials.
73
+
74
+
<notetype="note">The properties `detect.yarn.excluded.workspaces` and `detect.yarn.included.workspaces` do not apply if `detect.yarn.ignore.all.workspaces=true`.</note>
73
75
74
76
See [Yarn monorepo](https://yarnpkg.com/advanced/lexicon#monorepo) for further information about workspaces and monorepo configuration.
0 commit comments