Skip to content

2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Dec 16:59
· 569 commits to master since this release
c628b0e

What's Changed

  • Add mnemonic to FindProvisioningProfile, thanks @erikkerber!
  • Ignore skip_codesign_simulator_bundles for frameworks when building for device, thanks @BalestraPatrick!
  • Allow for deps with only CcInfo on framework imports, thanks @dierksen!
  • Update rules_swift
  • Add validation for the proximity reader payment entitlement (#1740)
  • Strip bitcode from stub binaries to fix errors during App Store Connect validation (#1703)
  • Add resources support to apple_static_xcframework (#1577)
  • Add sanitizer support for iOS tests (#1590)
  • The 2.x releases drop support for Bazel 5.x TLS. Use the 1.x releases for bazel 5.x

This release is compatible with: 6.0.0

Workspace Snippet

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

http_archive(
    name = "build_bazel_rules_apple",
    sha256 = "43737f28a578d8d8d7ab7df2fb80225a6b23b9af9655fcdc66ae38eb2abcf2ed",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/2.0.0/rules_apple.2.0.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()