-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update rules for ObjcProvider deprecations #850
Merged
luispadron
merged 5 commits into
master
from
luis/update-ccinfo-for-objc-provider-deprecation
Apr 18, 2024
Merged
Update rules for ObjcProvider deprecations #850
luispadron
merged 5 commits into
master
from
luis/update-ccinfo-for-objc-provider-deprecation
Apr 18, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54f23fd
to
d120169
Compare
89d3b46
to
b25d77a
Compare
1418b1a
to
476584a
Compare
a1761ca
to
2cdd6ee
Compare
jszumski
reviewed
Mar 27, 2024
d04484b
to
4dcd8ac
Compare
jszumski
approved these changes
Apr 3, 2024
1fe8de7
to
cf1ba61
Compare
5513720
to
4b4fad7
Compare
jszumski
approved these changes
Apr 15, 2024
thiagohmcruz
approved these changes
Apr 18, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thx for improving the readability here as part of this 🙇
luispadron
added a commit
that referenced
this pull request
Apr 18, 2024
thiagohmcruz
added a commit
that referenced
this pull request
Jun 5, 2024
Can be considered a follow up to #850 to fix `import_middleman` in Bazel 7 while keeping it backwards compatible with Bazel 6.
nataliejameson
pushed a commit
to discord/rules_ios
that referenced
this pull request
Aug 13, 2024
Can be considered a follow up to bazel-ios/rules_ios#850 to fix `import_middleman` in Bazel 7 while keeping it backwards compatible with Bazel 6.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In Bazel 7+
ObjcProvider
no longer supports/provides the required linking attributes.The migrations is detailed here: bazelbuild/bazel#16939. In summary, as part of the migration, the
ObjcProvider
fields which previously provided linking related information are now now longer providing that info. In addition to this, a new flag:--incompatible_objc_linking_info_migration
was added to further delete these link attrs from theObjcProvider
making it an error if the attr is used or set.The goal of this PR is to address support for
ObjcProvider
migration and to instead use the correct linking information fromCcInfo
. This will support both Bazel 6/7+. It does not try to support--incompatible_objc_linking_info_migration
as that requires more changes and should be a separate PRDepends on: