-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies and use latest archives
Updates the dependencies of the latest versions, fixes some bzlmod warnings introduced by rules_apple 3 PR ``` WARNING: For repository 'build_bazel_apple_support', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. WARNING: For repository 'build_bazel_rules_swift', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. ``` Additionally, moves the latest versions in `repositories.bzl` back to using the release archive instead of a git clone. Not sure why those were changed Finally, fixes issues with stardoc and rules_apple 3 + bzlmod. It re-enables bzlmod for stardoc in CI
- Loading branch information
1 parent
6f5c50e
commit b7b957c
Showing
12 changed files
with
23 additions
and
47 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
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,14 +15,22 @@ module( | |
# Declare the bzlmod dependencies needed by rules_ios and users of rules_ios | ||
bazel_dep( | ||
name = "apple_support", | ||
version = "1.6.0", | ||
version = "1.11.1", | ||
repo_name = "build_bazel_apple_support", | ||
) | ||
bazel_dep( | ||
name = "rules_apple", | ||
version = "3.0.0", | ||
repo_name = "build_bazel_rules_apple", | ||
) | ||
|
||
# TODO: remove before merging | ||
git_override( | ||
module_name = "rules_apple", | ||
commit = "b33b8bce365bd325270a05770b1b5408e4361e4f", | ||
remote = "[email protected]:bazelbuild/rules_apple.git", | ||
) | ||
|
||
bazel_dep( | ||
name = "rules_cc", | ||
version = "0.0.6", | ||
|
@@ -33,7 +41,7 @@ bazel_dep( | |
) | ||
bazel_dep( | ||
name = "rules_swift", | ||
version = "1.8.0", | ||
version = "1.12.0", | ||
repo_name = "build_bazel_rules_swift", | ||
) | ||
|
||
|
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 |
---|---|---|
|
@@ -13,6 +13,5 @@ bzl_library( | |
"xcspec_evals.bzl", | ||
"xcspecs.bzl", | ||
], | ||
tags = ["manual"], | ||
visibility = ["//visibility:public"], | ||
) |
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
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
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
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
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