Skip to content

3.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Oct 21:00
· 91 commits to master since this release
c544011

What's Changed

  • Updated apple_support by @brentleyjones in #2260 and #2293
  • Made appintentsmetadataprocessor error with no output by @keith in #2262
  • Added extension_safe to apple_xcframework by @keith in #2261
  • We now correctly add .swiftinterface files to imported dynamic xcframework public_hdrs by @brentleyjones in #2266
  • We now filter out spurious "note:" messages from momc under Xcode 15 by @jszumski in #2276
  • Changed xcarchive ApplicationPath by @maxwellE in #2280
  • Added objc_generate_linkmap to apple_verification_test by @mattrobmattrob in #2284
  • Propagate linkmaps into xcarchives by @maxwellE in #2282
  • Set Python-specific environment variables in xctoolrunner to avoid UTF-8 encoding issues in actions that can return Unicode characters actool and ibtool when the user's environment for Python is not configured for UTF-8 by @brentleyjones in #2287
  • Fixed codesigningtool to work with openssl 3 by @Jichao in #2285
  • Added missing bzl_library dependencies by @brentleyjones in #2292
  • Updated rules_swift by @brentleyjones in #2307

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.1.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 = "483cbf889d4d6f78a8302d32692012445271e21290102bad2f858f633154cc95",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/3.1.0/rules_apple.3.1.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()