Skip to content

2.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 17 May 17:43
· 464 commits to master since this release
915ac30

What's Changed

  • Deprecate support for runtime_deps which have been removed from bazel. Use data instead.
  • Add testonly support to experimental_mixed_language_library
  • Remove support for bitcode now that Xcode 14.1 is the minimum supported version required for uploading to the App Store
  • Fix UI tests with the new test runner and Xcode 14.3, thanks @maxwellE!
  • Update xctestrunner to support Xcode 14.3
  • Respect --incompatible_objc_alwayslink_by_default

This release is compatible with 6.x LTS and bazel 7.x rolling releasess

MODULE.bazel Snippet

bazel_dep(name = "rules_apple", version = "2.3.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 = "a6141240657093fa7ccc7ca1ee5a62408dd9996d1bf47bc2369b8b9faefb2698",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/2.3.0/rules_apple.2.3.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()