-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(swiftpm): Add missing package references to the lockfile analysis
Dependencies should always be (transitively) linked to projects. When analyzing a lockfile (only), the dependency tree information is not available. So, simply regard all dependencies as direct dependencies of the project, which is the only option available. Fixes #8234. Signed-off-by: Frank Viernau <[email protected]>
- Loading branch information
Showing
4 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,14 @@ project: | |
revision: "<REPLACE_REVISION>" | ||
path: "<REPLACE_PATH>" | ||
homepage_url: "" | ||
scopes: | ||
- name: "dependencies" | ||
dependencies: | ||
- id: "Swift::github.com/apple/swift-argument-parser:0.2.0" | ||
- id: "Swift::github.com/apple/swift-crypto:" | ||
- id: "Swift::github.com/apple/swift-llbuild:9.0.8" | ||
- id: "Swift::github.com/braze-inc/braze-ios-sdk:branch-master" | ||
- id: "Swift::github.com/grpc/grpc-swift:revision-efb67a324eaf1696b50e66bc471a53690e41fbf6" | ||
packages: | ||
- id: "Swift::github.com/apple/swift-argument-parser:0.2.0" | ||
purl: "pkg:swift/github.com%2Fapple%[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,10 @@ project: | |
revision: "<REPLACE_REVISION>" | ||
path: "<REPLACE_PATH>" | ||
homepage_url: "" | ||
scopes: | ||
- name: "dependencies" | ||
dependencies: | ||
- id: "Swift::github.com/alamofire/alamofire:5.4.4" | ||
packages: | ||
- id: "Swift::github.com/alamofire/alamofire:5.4.4" | ||
purl: "pkg:swift/github.com%2Falamofire%[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters