Skip to content
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

[bazel] Flag flips to get us ready for 8.x #15222

Merged
merged 2 commits into from
Feb 3, 2025
Merged

Conversation

shs96c
Copy link
Member

@shs96c shs96c commented Feb 3, 2025

PR Type

Enhancement, Bug fix


Description

  • Enabled Bazel flags for compatibility with Bazel 8.

  • Removed empty globs to comply with Bazel 8 defaults.

  • Updated workspace naming convention in .bazelrc.

  • Simplified and cleaned up Bazel build files across multiple languages.


Changes walkthrough 📝

Relevant files
Configuration changes
1 files
.bazelrc
Added Bazel 8 compatibility flags and updated workspace naming
+5/-1     
Bug fix
1 files
BUILD.bazel
Removed empty globs from C# build definitions                       
+0/-2     
Enhancement
5 files
BUILD.bazel
Simplified glob patterns in test suite definition               
+1/-4     
BUILD.bazel
Removed unnecessary glob pattern in Java build file           
+0/-1     
BUILD.bazel
Removed redundant glob pattern in JavaScript build file   
+0/-1     
BUILD.bazel
Removed unused glob pattern in JavaScript build file         
+0/-1     
BUILD.bazel
Removed redundant glob pattern in Ruby lint test                 
+0/-1     
Cleanup
2 files
BUILD.bazel
Deleted unused Java test suite build file                               
+0/-31   
BUILD.bazel
Deleted unused Java test suite build file                               
+0/-17   

Need help?
  • Type /help how to ... in the comments thread for any questions about Qodo Merge usage.
  • Check out the documentation for more information.
  • In Bazel 8, the default is to disallow empty globs. Rather
    than make more changes as we update, instead we'll flip the
    flag now and fix up any issues. This will make the Bazel 8
    update simpler.
    Copy link
    Contributor

    qodo-merge-pro bot commented Feb 3, 2025

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    ⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
    🧪 No relevant tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    Removed Code

    Removal of 'lib/atoms/bidi-mutation-listener.js' from glob pattern may break functionality if this file is still needed. Verify this removal is intentional and won't impact BIDI mutation listening capabilities.

    ] + glob([
        "*.js",
        "example/*.js",
        "http/*.js",
        "io/*.js",
        "lib/*.js",
        "lib/fedcm/*.js",
        "net/*.js",
        "remote/*.js",
        "testing/*.js",
    Configuration Change

    The addition of incompatible flags for Bazel 8 compatibility could potentially break existing builds. Verify that all projects using this configuration have been tested with these new settings.

    # Prepare for Bazel 8. These become the default in 8.0.0
    common --incompatible_disallow_empty_glob
    common --incompatible_use_plus_in_repo_names

    Copy link
    Contributor

    qodo-merge-pro bot commented Feb 3, 2025

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Score
    Possible issue
    Include all test file patterns

    **The glob pattern for test files is too restrictive. It will miss test files
    ending with 'Tests.cs'. Consider including both 'Test.cs' and 'Tests.cs'
    patterns.

    dotnet/test/support/Events/BUILD.bazel [24-26]

     srcs = glob(
    -    ["*Test.cs"],
    +    ["*Test.cs", "*Tests.cs"],
         exclude = SMALL_TESTS,
     )
    • Apply this suggestion
    Suggestion importance[1-10]: 7

    Why: The suggestion correctly identifies that the new glob pattern is more restrictive than the old one, potentially missing valid test files with the 'Tests.cs' suffix that were previously included.

    7

    @shs96c shs96c merged commit 00111ed into SeleniumHQ:trunk Feb 3, 2025
    25 of 26 checks passed
    @shs96c shs96c deleted the flag-flips branch February 3, 2025 14:09
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    1 participant