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
When investigating #99, it was discovered that the effective_components installed as part of a components = [...] declaration only install the transitive dependencies, and not the actual requested dependencies. For example:
- fix: add requested component to list of effective components
installed via bindist
Fixes and closes#100. Thanks to
@mantasindrasius for reporting!
Relates-To: #100
Relates-To: #99
Signed-off-by: Sam Gammon <[email protected]>
- fix: add requested component to list of effective components
installed via bindist
Fixes and closes#100. Thanks to
@mantasindrasius for reporting!
Relates-To: #100
Relates-To: #99
Signed-off-by: Sam Gammon <[email protected]>
- fix: add requested component to list of effective components
installed via bindist
Fixes and closes#100. Thanks to
@mantasindrasius for reporting!
Relates-To: #100
Relates-To: #99
Signed-off-by: Sam Gammon <[email protected]>
When investigating #99, it was discovered that the
effective_components
installed as part of acomponents = [...]
declaration only install the transitive dependencies, and not the actual requested dependencies. For example:👆🏻 should install
js
,icu4j
,regex
, etc (the dependencies ofjs
in addition tojs
), but instead, onlyicu4j
andregex
are installed, andjs
is not.The text was updated successfully, but these errors were encountered: