Skip to content

3.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Jan 16:05
· 54 commits to master since this release
813b031

What's Changed

  • Avoid failure when shutting down a simulator already in the shutdown state by @ileitch in #2311
  • Update test runner tests to iPhone Xs by @mattrobmattrob in #2312
  • Add validation for platform type attribute in apple_{,static}_xcframework rule by @thii in #2313
  • Fix/support implementation deps in objc library by @xinzhengzhang in #2317
  • Avoid the deprecated --product_type argument for actool actions, use the new arguments for the sticker icons for messages extensions. by @brentleyjones in #2316
  • [Docs] Refresh iOS tutorial by @BalestraPatrick in #2314
  • Fix unbound variable when printing an archive_contents_test failure message by @jszumski in #2319
  • Remove Samuel from OWNERS by @keith in #2321
  • Include dSYMs for any bundled extension targets in the app's xcarchive by @jszumski in #2320
  • Fix dSYM generation for extensions containing spaces in bundle_name by @jszumski in #2323
  • Remove platform_mappings from README.md by @luispadron in #2325
  • Add support to run visionos_application in simulator via bazel run by @BalestraPatrick in #2327
  • Remove subset of valid values from families attribute documentation by @BalestraPatrick in #2326
  • Add swiftinterface_imports to apple_static_xcframework_import by @keith in #2328
  • Support extensions within single-target watchOS apps by @markvasiv in #2309
  • Downgrade last_green to avoid failure by @BalestraPatrick in #2332
  • Update rules_xcodeproj version on ios-app.md by @herlianzhang in #2333
  • Cherry-pick visionOS changes for Xcode 15.1 and more by @BalestraPatrick in #2331
  • Removing --experimental_strict_conflict_checks flag by @sgowroji in #2336
  • Pass launch arguments to simctl launch command by @BalestraPatrick in #2338
  • Fix the test_file location for UITests by @codeman9 in #2349
  • Fix minor issues with module_map rule by @luispadron in #2350
  • Add support for clang modules in experimental_mixed_language_library by @luispadron in #2351
  • Collect data from objc_import by @cpsauer in #2346
  • Added swift_module param in partials to use it in xibs, storyboards and datamodels compilation by @tymurmustafaiev in #2335
  • Fix deprecation warning in imported_dynamic_framework_processor.py by @jszumski in #2334
  • Add support for --attachment_lifetime in ios_xctestrun_runner by @kapoorlakshya in #2347
  • Fix compatibility with --incompatible_objc_provider_remove_linking_info by @keith in #2356
  • Update bazel version support table by @keith in #2358
  • Update rules_swift to avoid objc provider linking removal issues by @keith in #2359
  • Remove more bitcode support by @keith in #2362
  • Avoid looking at install name of a versioned framework if there's only one version by @maxbelanger in #2364
  • Update rules_swift by @keith in #2369
  • Add header_map rule by @luispadron in #2352
  • Add support for headermap to experimental_mixed_language_library by @luispadron in #2372

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.2.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 = "841b8d1bd270ee19c75c5e953be1b58ace0ecb35ed97c56f53c28392ef86e0d7",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/3.2.0/rules_apple.3.2.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()

New Contributors

Full Changelog: 3.1.1...3.2.0