Skip to content

0.7.1: Indexing, navigation, and scheme improvements

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 25 Aug 16:53
· 1800 commits to main since this release
0.7.1
579b14e

What’s Changed

New

  • Added {device,simulator}_only_targets attributes to device_and_simulator: #925
  • Added rules documentation: #936, #944, #964, #969, and #974

Fixes and Improvements

  • Improved scheme generation: #890, #901, #905, #909, #934, #940, #942, #956, #962, #963, #966
  • Improved Xcode 14 support: #892
  • Fixed issues not navigating to source files in BwB mode: #893
  • Fixed VFS overlay generation: #898, #918, #919, #921, and #941
  • Fixed indexing of local_repository and new_local_repository targets: #900 and #929
  • Fixed linking BwB SwiftUI Previews: #922
  • Fixed external/ header search paths: #923
  • Unfocusing of "invalid" labels is now supported: #938
  • Targets can now merge into multiple top-level targets: #937
  • Top-level bundle targets can now have multiple dependencies: #939
  • Fixed -D quote handing: #948
  • The ASSETCATALOG_COMPILER_APPICON_NAME build setting is now set: #932
  • Fixed Resource bundle detection: #958
  • Added no-remote to project generation: #972
  • Upgrade warnings are now disabled: #970

Full Changelog: 0.7.0...0.7.1

Contributors

Workspace Snippet

Please use the release asset (release.tar.gz) from your Bazel WORKSPACE instead of GitHub's source asset to reduce download size and improve reproducibility.

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

http_archive(
    name = "com_github_buildbuddy_io_rules_xcodeproj",
    sha256 = "1dd8e60ccb457536960d37ad77109c941060d8bc1e6c8b318c7a54ac7cec1b68",
    url = "https://github.com/buildbuddy-io/rules_xcodeproj/releases/download/0.7.1/release.tar.gz",
)

load(
    "@com_github_buildbuddy_io_rules_xcodeproj//xcodeproj:repositories.bzl",
    "xcodeproj_rules_dependencies",
)

xcodeproj_rules_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_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()