Skip to content

3.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 28 Mar 13:22
· 10 commits to master since this release
c00a35f

What's Changed

  • Fix apple_dynamic_framework_import search paths, thanks @jpsim!
  • Allow underscores in bundle identifiers, thanks @aaronsky!
  • Fix undefined symbols warning with intents stub binary, thanks @keith!
  • Fix private header support in experimental_mixed_language_library, thanks @luispadron!
  • Add apple_metal_library rule, thanks @aaronsky!
  • Allow space in bundle_name for ipa_post_processor, thanks @luispadron!
  • Bundle libMainThreadChecker.dylib to detect main thread violations, thanks @chiragramani!
  • Replace usages of to_json() with json.encode(..), thanks @c-mita!
  • Update rules_swift to 1.17.0
  • Add locales_to_include as target attribute, thanks @sebastianv1!
  • Fix ios_extension with resources, thanks @jszumski!

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.4.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 = "ed432a2d5929452748bd53a4ff9e652f2332283eb3d7ffad6cb63aab96a06301",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/3.4.0/rules_apple.3.4.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()