Skip to content

3.8.0

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Aug 15:42
· 18 commits to master since this release
01ea71d

What's Changed

  • Add support for alternate app icons in UIKit via actool in Xcode 14+ (first introduced in 13) by @vakhidbetrakhmadov in #2505
  • Add implementation_deps to _FRAMEWORK_PROVIDERS_ASPECT_ATTRS by @brentleyjones in #2508
  • Allow GenerateCodesigningDossier to run in a sandbox and remotely by @brentleyjones in #2509
  • Add use_runfiles aspect_hint to include runfiles for specific cc_libr… by @gkoreman in #2479
  • Fix bad docc argument for multiple symbol graphs by @luispadron in #2511

Full Changelog: 3.7.0...3.8.0

This release is compatible with Bazel 6.x LTS, 7.x LTS, and 8.x rolling releases.

MODULE.bazel Snippet

bazel_dep(name = "rules_apple", version = "3.8.0", repo_name = "build_bazel_rules_apple")

Workspace Snippet

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "build_bazel_rules_apple",
    sha256 = "62847b3f444ce514ae386704a119ad7b29fa6dfb65a38bff4ae239f2389a0429",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/3.8.0/rules_apple.3.8.0.tar.gz",
)

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_rules_swift//swift:extras.bzl",
    "swift_rules_extra_dependencies",
)

swift_rules_extra_dependencies()

load(
    "@build_bazel_apple_support//lib:repositories.bzl",
    "apple_support_dependencies",
)

apple_support_dependencies()