Releases: bazelbuild/rules_apple
3.16.1
What's Changed
- Add Label() to archive_contents_test marco by @erikkerber in #2618
- Make
AppleDynamicFrameworkInfo
public by @brentleyjones in #2620 - Upgrade rules_cc to 0.0.10 by @brentleyjones in #2622
Full Changelog: 3.16.0...3.16.1
This release is compatible with Bazel 7.x LTS and 8.x LTS releases.
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "3.16.1", 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 = "352428421c89dba8859055c3e1ba42f742c224544bf0e196c926d1cf44a2d726",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.16.1/rules_apple.3.16.1.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()
3.16.0
What's Changed
- Fix compatibility with bazel 8.x RC3+
Full Changelog: 3.15.0...3.16.0
This release is compatible with Bazel 7.x LTS and 8.x releases
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "3.16.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 = "86ff9c3a2c7bc308fef339bcd5b3819aa735215033886cc281eb63f10cd17976",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.16.0/rules_apple.3.16.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()
3.15.0
What's Changed
- Drop bazel 6.x support by @keith in #2610
- Remove legacy Objc provider linking support by @keith in #2611
- Bump MODULE.bazel bazel_compatibility by @keith in #2613
- Remove internal uses of @build_bazel_rules_apple by @keith in #2614
- Remove platform_mappings, again by @aaronsky in #2616
Full Changelog: 3.14.0...3.15.0
This release is compatible with Bazel 7.x LTS releases.
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "3.15.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 = "bfda21dabddade5eef7504e933723222b1f30fde4fa8e17c3d9f1390e1a072ee",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.15.0/rules_apple.3.15.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()
3.14.0
What's Changed
- Improve
MainThreadCheckerLibsCopy
performance by @luispadron in #2599 - Update apple_support.run callsites to remove positional args by @aaronsky in #2600
- Add XML_OUTPUT_FILE envar to the non-macOS test runners by @aaronsky in #2596
- Make the
hmaptool
support response file by @qyang-nj in #2601 - Recover from simulator already booted errors by @brentleyjones in #2598
- Allow setting the dtrace binary by @stevebarrau in #2607
New Contributors
- @qyang-nj made their first contribution in #2601
- @stevebarrau made their first contribution in #2607
Full Changelog: 3.13.0...3.14.0
This release is compatible with Bazel 6.x LTS and 7.x LTS releases.
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "3.14.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 = "c328123c4868be233f7023762da7891e6a862d7dc27611ec7a3331d8c969a18d",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.14.0/rules_apple.3.14.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()
3.13.0
What's Changed
- Fix docc archive bugs by @AttilaTheFun in #2595
- Add
destination_timeout
attribute toios_xctestrun_runner
by @luispadron in #2577 - Adjust and add
apple_precompiled_resource_bundle
tests by @brentleyjones in #2593
New Contributors
- @AttilaTheFun made their first contribution in #2595
Full Changelog: 3.12.0...3.13.0
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.13.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 = "b892911288715b354e05b9a6fe9009635f7155991f24f27e779fe80d435c92bc",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.13.0/rules_apple.3.13.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()
3.12.0
What's Changed
- Add proper support for rules_swift
mixed_language_library
by @brentleyjones in #2580 - Stop using rule(output_to_genfiles = True) by @EdSchouten in #2586
- Fix
ios_xctestrun_runner
not updating binary on delta updates by @brentleyjones in #2590 - Fix nesting of bundles with
apple_precompiled_resource_bundle
by @brentleyjones in #2588 - Fix nested resources (e.g.
.momd
directories) withapple_precompiled_resource_bundle
by @brentleyjones in #2592 - Always process
Info.plist
files withapple_precompiled_resource_bundle
by @brentleyjones in #2591 - Expose a new
AppleDeviceTestRunnerInfo
provider from device-based test runners by @brentleyjones in #2581
Full Changelog: 3.11.2...3.12.0
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.12.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 = "ccb75e9a25f55fa2088834bcdf052a1fb53250737651ee3532e420e36d375283",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.12.0/rules_apple.3.12.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()
3.11.2
What's Changed
- Fix
mixed_language_library
by @brentleyjones in #2578
Full Changelog: 3.11.1...3.11.2
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.11.2", 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 = "b770067261140c0a3c5f84f900e3d6059d7036d7954da243016acfdb17216799",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.11.2/rules_apple.3.11.2.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()
3.11.1
What's Changed
- Add support for rules_swift
mixed_language_library
by @brentleyjones in #2575 - Dont override destination-timeout in xctestrun runner by @luispadron in #2572
- Fix storyboard
processed_origins
by @brentleyjones in #2576
Full Changelog: 3.11.0...3.11.1
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.11.1", 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 = "085dda98c2669ecb1df8c7b59b328876b699849c9645aa6fe1f84299f1460726",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.11.1/rules_apple.3.11.1.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()
3.11.0
What's Changed
- Add support for macos in
apple_*_xcframework
rules by @luispadron in #2459 - Return
AppleResourceBundleInfo
provider fromapple_precompiled_resource_bundle
by @brentleyjones in #2569 - Fix
bundle_id
calculation inapple_precompiled_resource_bundle
by @brentleyjones in #2574 - Add the
strip_structured_resources_prefixes
attribute wherestructured_resources
exists by @brentleyjones in #2570
Full Changelog: 3.10.0...3.11.0
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.11.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 = "9859954b7af3276c3521dbfb4fc2fad7f438a6d87e3df409dee2c27209007532",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.11.0/rules_apple.3.11.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()
3.10.0
What's Changed
- Fix apple_static_xcframework rule to exclude bundles of dependencies marked as avoid_deps by @sewerynplazuk in #2541
- Add
apple_precompiled_resource_bundle
by @maxwellE in #2504 - Allow to opt-out from library evolution by @sewerynplazuk in #2484
- Support Linux with
dossier_codesigning_reader.py
by @brentleyjones in #2539 - Remove j2objc_dead_code_pruner from rules_apple by @erikkerber in #2552
- Fix processing of
infoplists
inapple_precompiled_resource_bundle
by @brentleyjones in #2565 - Fix
apple_precompiled_resource_bundle
to process all types by @brentleyjones in #2567
Full Changelog: 3.9.2...3.10.0
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.10.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 = "d5fc8f919fd193ed7cf54e35e007914e4e5d9c1ac4941cf423c00efe865ad0c7",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.10.0/rules_apple.3.10.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()