Skip to content

5.1.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 10 Sep 01:58
· 4 commits to master since this release
cf60105

Bzlmod Snippet

bazel_dep(name = "rules_ios", version = "5.1.0", repo_name = "build_bazel_rules_ios")

Workspace Snippet

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

http_archive(
    name = "build_bazel_rules_ios",
    sha256 = "605f308503c5b3555bb5fb62d800ca75cb6203e06274df21070380db419c64b4",
    url = "https://github.com/bazel-ios/rules_ios/releases/download/5.1.0/rules_ios.5.1.0.tar.gz",
)

load(
    "@build_bazel_rules_ios//rules:repositories.bzl",
    "rules_ios_dependencies"
)

rules_ios_dependencies()

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_apple_support//lib:repositories.bzl",
    "apple_support_dependencies",
)

apple_support_dependencies()

load(
    "@com_google_protobuf//:protobuf_deps.bzl",
    "protobuf_deps",
)

protobuf_deps()

What's Changed

  • Revert "Add headers to headermap action inputs" by @luispadron in #893
  • Fix apple_library rule not working in sandbox when do SwiftCompile in mixed sources by @gyfelton in #894
  • Add sandbox mode to CI testing matrix by @gyfelton in #895
  • Avoid umbrella header crash error in remote compilation when no default umbrella header generated by @gyfelton in #897
  • Remove extended modulemap from swiftc_inputs by @luispadron in #900
  • Add CI tests for latest rules_swift and rules_apple by @luispadron in #899
  • Fix rules_swift 2 compatibility issues by @luispadron in #903
  • Fix import_middleman broken with Bazel 7 + sandbox mode by @gyfelton in #910
  • Ensures the determinism of vfsoverlay file by @congt in #912

Full Changelog: 5.0.0...5.1.0