5.0.0
Bzlmod Snippet
bazel_dep(name = "rules_ios", version = "5.0.0", repo_name = "build_bazel_rules_ios")
Workspace Snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "build_bazel_rules_ios",
sha256 = "d1cc852aa9e989c12b802e04cb66dfe51418153c781d6073bb30e82284866865",
url = "https://github.com/bazel-ios/rules_ios/releases/download/5.0.0/rules_ios.5.0.0.tar.gz",
)
load(
"@build_bazel_rules_ios//rules:repositories.bzl",
"rules_ios_dependencies"
)
rules_ios_dependencies()
load(
"@build_bazel_rules_apple//apple:repositories.bzl",
"apple_rules_dependencies",
)
apple_rules_dependencies()
load(
"@build_bazel_rules_swift//swift:repositories.bzl",
"swift_rules_dependencies",
)
swift_rules_dependencies()
load(
"@build_bazel_apple_support//lib:repositories.bzl",
"apple_support_dependencies",
)
apple_support_dependencies()
load(
"@com_google_protobuf//:protobuf_deps.bzl",
"protobuf_deps",
)
protobuf_deps()
What's Changed
- Remove support for xcodeproj rules by @luispadron in #883
- CI: Bazel 7 tests use Build without the Bytes by @luispadron in #886
- Add headers to
headermap
actioninputs
by @luispadron in #888 - Add
direct_public_headers
to CcInfocompilation_context
by @luispadron in #889 - Remove usage of predeclared outputs from rules by @luispadron in #891
- Remove
_headermap_builder
fromframework.bzl
by @luispadron in #890 - Handle
swift.swift_disable_import_underlying_module
infeatures
by @luispadron in #892
Full Changelog: 4.8.2...5.0.0