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

Update dependency @apollo/client to v3.11.8 #14132

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) 3.10.4 -> 3.11.8 age adoption passing confidence

Release Notes

apollographql/apollo-client (@​apollo/client)

v3.11.8

Compare Source

Patch Changes

v3.11.7

Compare Source

Patch Changes
  • #​12052 e471cef Thanks @​jerelmiller! - Fixes a regression from where passing an invalid identifier to from in useFragment would result in the warning TypeError: Cannot read properties of undefined (reading '__typename').

v3.11.6

Compare Source

Patch Changes

v3.11.5

Compare Source

Patch Changes

v3.11.4

Compare Source

Patch Changes
  • #​11994 41b17e5 Thanks @​jerelmiller! - Update the Modifier function type to allow cache.modify to return deeply partial data.

  • #​11989 e609156 Thanks @​phryneas! - Fix a potential crash when calling clearStore while a query was running.

    Previously, calling client.clearStore() while a query was running had one of these results:

    • useQuery would stay in a loading: true state.
    • useLazyQuery would stay in a loading: true state, but also crash with a "Cannot read property 'data' of undefined" error.

    Now, in both cases, the hook will enter an error state with a networkError, and the promise returned by the useLazyQuery execute function will return a result in an error state.

  • #​11994 41b17e5 Thanks @​jerelmiller! - Prevent accidental distribution on cache.modify field modifiers when a field is a union type array.

v3.11.3

Compare Source

Patch Changes
Potentially disruptive change

When calling fetchMore with a query that has a no-cache fetch policy, fetchMore will now throw if an updateQuery function is not provided. This provides a mechanism to merge the results from the fetchMore call with the query's previous result.

v3.11.2

Compare Source

Patch Changes

v3.11.1

Compare Source

Patch Changes
  • #​11969 061cab6 Thanks @​jerelmiller! - Remove check for window.__APOLLO_CLIENT__ when determining whether to connect to Apollo Client Devtools when connectToDevtools or devtools.enabled is not specified. This now simply checks to see if the application is in development mode.

  • #​11971 ecf77f6 Thanks @​jerelmiller! - Prevent the setTimeout for suggesting devtools from running in non-browser environments.

v3.11.0

Compare Source

Potentially Breaking Fixes
  • #​11789 5793301 Thanks @​phryneas! - Changes usages of the GraphQLError type to GraphQLFormattedError.

    This was a type bug - these errors were never GraphQLError instances
    to begin with, and the GraphQLError class has additional properties that can
    never be correctly rehydrated from a GraphQL result.
    The correct type to use here is GraphQLFormattedError.

    Similarly, please ensure to use the type FormattedExecutionResult
    instead of ExecutionResult - the non-"Formatted" versions of these types
    are for use on the server only, but don't get transported over the network.

  • #​11626 228429a Thanks @​phryneas! - Call nextFetchPolicy with "variables-changed" even if there is a fetchPolicy specified.

    Previously this would only be called when the current fetchPolicy was equal to the fetchPolicy option or the option was not specified. If you use nextFetchPolicy as a function, expect to see this function called more often.

    Due to this bug, this also meant that the fetchPolicy might be reset to the initial fetchPolicy, even when you specified a nextFetchPolicy function. If you previously relied on this behavior, you will need to update your nextFetchPolicy callback function to implement this resetting behavior.

    As an example, if your code looked like the following:

    useQuery(QUERY, {
      nextFetchPolicy(currentFetchPolicy, info) {
        // your logic here
      }
    );

    Update your function to the following to reimplement the resetting behavior:

    useQuery(QUERY, {
      nextFetchPolicy(currentFetchPolicy, info) {
        if (info.reason === 'variables-changed') {
          return info.initialFetchPolicy;
        }
        // your logic here
      }
    );
Minor Changes
Patch Changes

v3.10.8

Compare Source

Patch Changes

v3.10.7

Compare Source

Patch Changes

v3.10.6

Compare Source

Patch Changes

v3.10.5

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency @apollo/client to v3.10.5 fix(deps): update dependency @apollo/client to v3.10.5 Jun 17, 2024
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.10.5 Update dependency @apollo/client to v3.10.5 Jun 20, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 4045936 to 2598e8c Compare June 21, 2024 11:46
@renovate renovate bot changed the title Update dependency @apollo/client to v3.10.5 Update dependency @apollo/client to v3.10.6 Jun 21, 2024
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 21, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch 2 times, most recently from ee9f950 to ceef536 Compare June 26, 2024 18:03
@renovate renovate bot changed the title Update dependency @apollo/client to v3.10.6 Update dependency @apollo/client to v3.10.7 Jun 26, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from ceef536 to 3f49a42 Compare June 27, 2024 21:17
@renovate renovate bot changed the title Update dependency @apollo/client to v3.10.7 Update dependency @apollo/client to v3.10.8 Jun 27, 2024
@renovate renovate bot changed the title Update dependency @apollo/client to v3.10.8 fix(deps): update dependency @apollo/client to v3.10.8 Jul 18, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 3f49a42 to 4f5440d Compare July 23, 2024 00:34
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.10.8 fix(deps): update dependency @apollo/client to v3.11.0 Jul 23, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 4f5440d to bec24ac Compare July 23, 2024 18:02
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.0 fix(deps): update dependency @apollo/client to v3.11.1 Jul 23, 2024
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.1 Update dependency @apollo/client to v3.11.1 Jul 25, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from bec24ac to 63df3f9 Compare July 31, 2024 17:26
@renovate renovate bot changed the title Update dependency @apollo/client to v3.11.1 Update dependency @apollo/client to v3.11.2 Jul 31, 2024
@renovate renovate bot changed the title Update dependency @apollo/client to v3.11.2 fix(deps): update dependency @apollo/client to v3.11.2 Aug 1, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch 2 times, most recently from c06d147 to 82e0e73 Compare August 5, 2024 20:02
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.2 fix(deps): update dependency @apollo/client to v3.11.3 Aug 5, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 82e0e73 to 90a5eb8 Compare August 8, 2024 00:36
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.3 fix(deps): update dependency @apollo/client to v3.11.4 Aug 8, 2024
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.4 Update dependency @apollo/client to v3.11.4 Aug 26, 2024
@renovate renovate bot changed the title Update dependency @apollo/client to v3.11.4 fix(deps): update dependency @apollo/client to v3.11.4 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 90a5eb8 to 1cef083 Compare August 28, 2024 20:00
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.4 fix(deps): update dependency @apollo/client to v3.11.5 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 1cef083 to bc9ec37 Compare September 3, 2024 19:32
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.5 fix(deps): update dependency @apollo/client to v3.11.6 Sep 3, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from bc9ec37 to d427076 Compare September 4, 2024 20:13
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.6 fix(deps): update dependency @apollo/client to v3.11.7 Sep 4, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from d427076 to 8bed970 Compare September 5, 2024 09:16
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.7 fix(deps): update dependency @apollo/client to v3.11.8 Sep 5, 2024
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.11.8 Update dependency @apollo/client to v3.11.8 Sep 10, 2024
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 8bed970 to 6fcb448 Compare October 11, 2024 17:31
Copy link
Contributor

codiumai-pr-agent-pro bot commented Oct 11, 2024

CI Failure Feedback 🧐

(Checks updated until commit 6fcb448)

Action: Test / All RBE tests

Failed stage: Run Bazel [❌]

Failed test name: ""

Failure summary:

The action failed due to multiple errors related to the pnpm-lock.yaml file being updated, which
caused issues with fetching necessary packages. Specifically:

  • The pnpm-lock.yaml file was updated, and the build needs to be rerun to reflect these changes.
  • There were multiple instances of the error "no such package
    '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha'", indicating that the package
    could not be fetched.
  • The log suggests checking the issue at [Bug]: update_pnpm_lock fails under Bzlmod, retry fixes it aspect-build/rules_js#1445 for more
    details.
  • The failure to fetch packages led to numerous targets not being built, resulting in the overall
    failure of the action.

  • Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    303:  Need to get 3044 kB of archives.
    304:  After this operation, 1583 MB disk space will be freed.
    305:  Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [142 B]
    306:  Ign:2 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 aspnetcore-targeting-pack-6.0 amd64 6.0.133-0ubuntu1~22.04.1
    307:  Get:3 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 aspnetcore-targeting-pack-7.0 amd64 7.0.119-0ubuntu1~22.04.1 [1587 kB]
    308:  Ign:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 aspnetcore-targeting-pack-6.0 amd64 6.0.133-0ubuntu1~22.04.1
    309:  Err:2 http://security.ubuntu.com/ubuntu jammy-updates/main amd64 aspnetcore-targeting-pack-6.0 amd64 6.0.133-0ubuntu1~22.04.1
    310:  404  Not Found [IP: 52.252.75.106 80]
    311:  E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/d/dotnet6/aspnetcore-targeting-pack-6.0_6.0.133-0ubuntu1%7e22.04.1_amd64.deb  404  Not Found [IP: 52.252.75.106 80]
    ...
    
    832:  Package 'php-symfony-debug-bundle' is not installed, so not removed
    833:  Package 'php-symfony-dependency-injection' is not installed, so not removed
    834:  Package 'php-symfony-deprecation-contracts' is not installed, so not removed
    835:  Package 'php-symfony-discord-notifier' is not installed, so not removed
    836:  Package 'php-symfony-doctrine-bridge' is not installed, so not removed
    837:  Package 'php-symfony-doctrine-messenger' is not installed, so not removed
    838:  Package 'php-symfony-dom-crawler' is not installed, so not removed
    839:  Package 'php-symfony-dotenv' is not installed, so not removed
    840:  Package 'php-symfony-error-handler' is not installed, so not removed
    ...
    
    1605:  (17:32:44) �[32mLoading:�[0m 242 packages loaded
    1606:  currently loading: javascript/atoms ... (11 packages)
    1607:  (17:32:53) �[32mLoading:�[0m 242 packages loaded
    1608:  currently loading: javascript/atoms ... (11 packages)
    1609:  (17:33:02) �[32mINFO: �[0mRepository aspect_rules_js~~npm~npm instantiated at:
    1610:  <builtin>: in <toplevel>
    1611:  Repository rule npm_translate_lock_rule defined at:
    1612:  /home/runner/.bazel/external/aspect_rules_js~/npm/private/npm_translate_lock.bzl:146:42: in <toplevel>
    1613:  (17:33:02) �[31m�[1mERROR: �[0mAn error occurred during the fetch of repository 'aspect_rules_js~~npm~npm':
    1614:  Traceback (most recent call last):
    1615:  File "/home/runner/.bazel/external/aspect_rules_js~/npm/private/npm_translate_lock.bzl", line 112, column 21, in _npm_translate_lock_impl
    1616:  fail(msg)
    1617:  Error in fail: 
    1618:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1619:  See https://github.com/aspect-build/rules_js/issues/1445
    1620:  (17:33:02) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1621:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1622:  See https://github.com/aspect-build/rules_js/issues/1445
    1623:  (17:33:02) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//': 
    1624:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1625:  See https://github.com/aspect-build/rules_js/issues/1445
    1626:  (17:33:02) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/prettier': 
    1627:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1628:  See https://github.com/aspect-build/rules_js/issues/1445
    1629:  (17:33:02) �[35mWARNING: �[0mTarget pattern parsing failed.
    1630:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/atoms:test-chrome': no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1631:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1632:  See https://github.com/aspect-build/rules_js/issues/1445
    1633:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/atoms:test-edge': no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1634:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1635:  See https://github.com/aspect-build/rules_js/issues/1445
    1636:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/atoms:test-firefox-beta': no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1637:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1638:  See https://github.com/aspect-build/rules_js/issues/1445
    1639:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/chrome-driver/...': no targets found beneath 'javascript/chrome-driver'
    1640:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/node/selenium-webdriver:test-bidi-network-test.js-chrome': no such package '@@aspect_rules_js~~npm~npm//': 
    1641:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1642:  See https://github.com/aspect-build/rules_js/issues/1445
    1643:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/node/selenium-webdriver:test-builder-test.js-chrome': no such package '@@aspect_rules_js~~npm~npm//': 
    1644:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1645:  See https://github.com/aspect-build/rules_js/issues/1445
    1646:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/node/selenium-webdriver:test-builder-test.js-firefox': no such package '@@aspect_rules_js~~npm~npm//': 
    1647:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1648:  See https://github.com/aspect-build/rules_js/issues/1445
    1649:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/node/selenium-webdriver:test-chrome-devtools-test.js-chrome': no such package '@@aspect_rules_js~~npm~npm//': 
    1650:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1651:  See https://github.com/aspect-build/rules_js/issues/1445
    1652:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/node/selenium-webdriver:test-chrome-options-test.js-chrome': no such package '@@aspect_rules_js~~npm~npm//': 
    1653:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1654:  See https://github.com/aspect-build/rules_js/issues/1445
    1655:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/node/selenium-webdriver:test-chrome-service-test.js-chrome': no such package '@@aspect_rules_js~~npm~npm//': 
    1656:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1657:  See https://github.com/aspect-build/rules_js/issues/1445
    1658:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/node/selenium-webdriver:test-firefox-options-test.js-firefox': no such package '@@aspect_rules_js~~npm~npm//': 
    1659:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1660:  See https://github.com/aspect-build/rules_js/issues/1445
    1661:  (17:33:02) �[31m�[1mERROR: �[0mSkipping '//javascript/node/selenium-webdriver:test-lib-capabilities-test.js-chrome': no such package '@@aspect_rules_js~~npm~npm//': 
    ...
    
    1665:  (17:33:02) �[32mAnalyzing:�[0m 1960 targets (242 packages loaded, 0 targets configured)
    1666:  (17:33:02) �[32mAnalyzing:�[0m 1960 targets (242 packages loaded, 0 targets configured)
    1667:  �[32m[0 / 1]�[0m [Prepa] BazelWorkspaceStatusAction stable-status.txt
    1668:  (17:33:07) �[32mAnalyzing:�[0m 1960 targets (411 packages loaded, 317 targets configured)
    1669:  �[32m[1 / 1]�[0m checking cached actions
    1670:  (17:33:09) �[33mDEBUG: �[0m/home/runner/.bazel/external/rules_jvm_external~/private/extensions/maven.bzl:152:14: The maven repository 'maven' is used in two different bazel modules, originally in 'selenium' and now in 'protobuf'
    1671:  (17:33:09) �[33mDEBUG: �[0m/home/runner/.bazel/external/rules_jvm_external~/private/extensions/maven.bzl:152:14: The maven repository 'maven' is used in two different bazel modules, originally in 'selenium' and now in 'protobuf'
    1672:  (17:33:09) �[33mDEBUG: �[0m/home/runner/.bazel/external/rules_jvm_external~/private/extensions/maven.bzl:152:14: The maven repository 'maven' is used in two different bazel modules, originally in 'selenium' and now in 'protobuf'
    1673:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//': 
    1674:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1675:  See https://github.com/aspect-build/rules_js/issues/1445
    1676:  (17:33:10) �[33mDEBUG: �[0m/home/runner/.bazel/external/rules_jvm_external~/private/extensions/maven.bzl:152:14: The maven repository 'maven' is used in two different bazel modules, originally in 'selenium' and now in 'protobuf'
    1677:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1678:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1679:  See https://github.com/aspect-build/rules_js/issues/1445
    1680:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/java/src/org/openqa/selenium/support/locators/BUILD.bazel:21:10: //java/src/org/openqa/selenium/support/locators:find-elements depends on //javascript/atoms/fragments:find-elements.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1681:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1682:  See https://github.com/aspect-build/rules_js/issues/1445
    1683:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1684:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1685:  See https://github.com/aspect-build/rules_js/issues/1445
    1686:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/java/src/org/openqa/selenium/remote/BUILD.bazel:88:10: //java/src/org/openqa/selenium/remote:is-displayed depends on //javascript/atoms/fragments:is-displayed.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1687:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1688:  See https://github.com/aspect-build/rules_js/issues/1445
    1689:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1690:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1691:  See https://github.com/aspect-build/rules_js/issues/1445
    1692:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/java/src/org/openqa/selenium/remote/BUILD.bazel:82:10: //java/src/org/openqa/selenium/remote:get-attribute depends on //javascript/webdriver/atoms:get-attribute.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1693:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1694:  See https://github.com/aspect-build/rules_js/issues/1445
    1695:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/rb/lib/selenium/webdriver/atoms/BUILD.bazel:17:10: //rb/lib/selenium/webdriver/atoms:is-displayed depends on //javascript/atoms/fragments:is-displayed.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1696:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1697:  See https://github.com/aspect-build/rules_js/issues/1445
    1698:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/rb/lib/selenium/webdriver/atoms/BUILD.bazel:11:10: //rb/lib/selenium/webdriver/atoms:get-attribute depends on //javascript/webdriver/atoms:get-attribute.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1699:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1700:  See https://github.com/aspect-build/rules_js/issues/1445
    1701:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/rb/lib/selenium/webdriver/atoms/BUILD.bazel:5:10: //rb/lib/selenium/webdriver/atoms:find-elements depends on //javascript/atoms/fragments:find-elements.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1702:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1703:  See https://github.com/aspect-build/rules_js/issues/1445
    1704:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1705:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1706:  See https://github.com/aspect-build/rules_js/issues/1445
    1707:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1708:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1709:  See https://github.com/aspect-build/rules_js/issues/1445
    1710:  (17:33:10) �[33mDEBUG: �[0m/home/runner/.bazel/external/rules_jvm_external~/private/extensions/maven.bzl:152:14: The maven repository 'maven' is used in two different bazel modules, originally in 'selenium' and now in 'protobuf'
    1711:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//': 
    1712:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1713:  See https://github.com/aspect-build/rules_js/issues/1445
    1714:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/rb/BUILD.bazel:39:12: //rb:global-notice depends on //:license in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//': 
    1715:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1716:  See https://github.com/aspect-build/rules_js/issues/1445
    1717:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/rb/BUILD.bazel:33:12: //rb:global-license depends on //:license in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//': 
    1718:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1719:  See https://github.com/aspect-build/rules_js/issues/1445
    1720:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//': 
    1721:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1722:  See https://github.com/aspect-build/rules_js/issues/1445
    1723:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1724:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1725:  See https://github.com/aspect-build/rules_js/issues/1445
    1726:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/java/test/org/openqa/selenium/atoms/BUILD.bazel:5:10: //java/test/org/openqa/selenium/atoms:execute_script depends on //javascript/atoms/fragments:execute-script.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1727:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1728:  See https://github.com/aspect-build/rules_js/issues/1445
    1729:  (17:33:10) �[31m�[1mERROR: �[0mno such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1730:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1731:  See https://github.com/aspect-build/rules_js/issues/1445
    1732:  (17:33:10) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/java/test/org/openqa/selenium/atoms/BUILD.bazel:11:10: //java/test/org/openqa/selenium/atoms:atoms_inputs depends on //javascript/webdriver/atoms:inputs_bin.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    ...
    
    1736:  (17:33:11) �[33mDEBUG: �[0m/home/runner/.bazel/external/rules_jvm_external~/private/extensions/maven.bzl:152:14: The maven repository 'maven' is used in two different bazel modules, originally in 'selenium' and now in 'protobuf'
    1737:  (17:33:11) �[33mDEBUG: �[0m/home/runner/.bazel/external/rules_jvm_external~/coursier.bzl:754:18: Found duplicate artifact versions
    1738:  com.google.code.gson:gson has multiple versions 2.11.0, 2.8.9
    1739:  com.google.guava:guava has multiple versions 33.3.0-jre, 31.1-jre
    1740:  org.mockito:mockito-core has multiple versions 5.13.0, 4.3.1
    1741:  Please remove duplicate artifacts from the artifact list so you do not get unexpected artifact versions
    1742:  (17:33:12) �[32mAnalyzing:�[0m 1960 targets (456 packages loaded, 10312 targets configured)
    1743:  �[32m[1 / 1]�[0m checking cached actions
    1744:  (17:33:14) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/py/BUILD.bazel:125:10: //py:find-elements depends on //javascript/atoms/fragments:find-elements.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1745:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1746:  See https://github.com/aspect-build/rules_js/issues/1445
    1747:  (17:33:14) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/py/BUILD.bazel:119:10: //py:is-displayed depends on //javascript/atoms/fragments:is-displayed.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1748:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1749:  See https://github.com/aspect-build/rules_js/issues/1445
    1750:  (17:33:14) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/py/BUILD.bazel:113:10: //py:get-attribute depends on //javascript/webdriver/atoms:get-attribute.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    ...
    
    1756:  (17:33:17) �[32mAnalyzing:�[0m 1960 targets (581 packages loaded, 15244 targets configured)
    1757:  �[32m[1 / 1]�[0m checking cached actions
    1758:  (17:33:23) �[32mAnalyzing:�[0m 1960 targets (583 packages loaded, 15375 targets configured)
    1759:  �[32m[1 / 1]�[0m checking cached actions
    1760:  (17:33:28) �[32mAnalyzing:�[0m 1960 targets (601 packages loaded, 15623 targets configured)
    1761:  �[32m[1 / 1]�[0m checking cached actions
    1762:  (17:33:33) �[32mAnalyzing:�[0m 1960 targets (729 packages loaded, 16143 targets configured)
    1763:  �[32m[1 / 1]�[0m checking cached actions
    1764:  (17:33:37) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/rb/BUILD.bazel:180:8: //rb:lint depends on //:rakefile in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//': 
    ...
    
    1782:  �[32m[119 / 420]�[0m checking cached actions
    1783:  (17:34:18) �[32mINFO: �[0mFrom Running Cargo build script bzip2-sys:
    1784:  Build Script Warning: bzip2-1.0.8/compress.c: In function ‘sendMTFValues’:
    1785:  Build Script Warning: bzip2-1.0.8/compress.c:243:19: warning: variable ‘nBytes’ set but not used [-Wunused-but-set-variable]
    1786:  Build Script Warning:   243 |    Int32 nGroups, nBytes;
    1787:  Build Script Warning:       |                   ^~~~~~
    1788:  (17:34:20) �[32mAnalyzing:�[0m 1960 targets (1064 packages loaded, 49714 targets configured)
    1789:  �[32m[440 / 440]�[0m 4 / 4 tests;�[0m checking cached actions
    1790:  (17:34:20) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/dotnet/src/webdriver/BUILD.bazel:63:15: //dotnet/src/webdriver:webdriver-net8.0 depends on //javascript/atoms/fragments:find-elements.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1791:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1792:  See https://github.com/aspect-build/rules_js/issues/1445
    1793:  (17:34:20) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/dotnet/src/webdriver/BUILD.bazel:63:15: //dotnet/src/webdriver:webdriver-net8.0 depends on //javascript/atoms/fragments:is-displayed.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1794:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1795:  See https://github.com/aspect-build/rules_js/issues/1445
    1796:  (17:34:20) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/dotnet/src/webdriver/BUILD.bazel:63:15: //dotnet/src/webdriver:webdriver-net8.0 depends on //javascript/webdriver/atoms:get-attribute.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1797:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1798:  See https://github.com/aspect-build/rules_js/issues/1445
    1799:  (17:34:20) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/dotnet/src/webdriver/BUILD.bazel:28:15: //dotnet/src/webdriver:webdriver-netstandard2.0 depends on //javascript/atoms/fragments:find-elements.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1800:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1801:  See https://github.com/aspect-build/rules_js/issues/1445
    1802:  (17:34:20) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/dotnet/src/webdriver/BUILD.bazel:28:15: //dotnet/src/webdriver:webdriver-netstandard2.0 depends on //javascript/atoms/fragments:is-displayed.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1803:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1804:  See https://github.com/aspect-build/rules_js/issues/1445
    1805:  (17:34:20) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/dotnet/src/webdriver/BUILD.bazel:28:15: //dotnet/src/webdriver:webdriver-netstandard2.0 depends on //javascript/webdriver/atoms:get-attribute.js in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1806:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1807:  See https://github.com/aspect-build/rules_js/issues/1445
    1808:  (17:34:25) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/java/test/org/openqa/selenium/environment/BUILD.bazel:16:13: //java/test/org/openqa/selenium/environment:environment depends on //javascript/atoms:atoms in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1809:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1810:  See https://github.com/aspect-build/rules_js/issues/1445
    1811:  (17:34:25) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/java/test/org/openqa/selenium/environment/BUILD.bazel:16:13: //java/test/org/openqa/selenium/environment:environment depends on //javascript/atoms:deps in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1812:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1813:  See https://github.com/aspect-build/rules_js/issues/1445
    1814:  (17:34:25) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/dotnet/test/common/BUILD.bazel:14:10: //dotnet/test/common:test-data depends on //javascript/atoms:atoms in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//javascript/node/selenium-webdriver/mocha': 
    1815:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1816:  See https://github.com/aspect-build/rules_js/issues/1445
    1817:  (17:34:25) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/java/src/org/openqa/selenium/grid/BUILD.bazel:125:12: //java/src/org/openqa/selenium/grid:grid-lib depends on //javascript/grid-ui:react_jar in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//': 
    1818:  INFO: pnpm-lock.yaml file updated. Please run your build again.
    1819:  See https://github.com/aspect-build/rules_js/issues/1445
    1820:  (17:34:25) �[31m�[1mERROR: �[0m/home/runner/work/selenium/selenium/java/src/org/openqa/selenium/grid/BUILD.bazel:125:12: //java/src/org/openqa/selenium/grid:grid-module depends on //javascript/grid-ui:react_jar in repository @@ which failed to fetch. no such package '@@aspect_rules_js~~npm~npm//': 
    ...
    
    1825:  warning: [options] target value 8 is obsolete and will be removed in a future release
    1826:  warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.
    1827:  (17:34:25) �[32mAnalyzing:�[0m 1960 targets (1065 packages loaded, 50139 targets configured)
    1828:  �[32m[874 / 1,026]�[0m 4 / 75 tests;�[0m Stamping the manifest of @@rules_jvm_external~~maven~contrib_rules_jvm_deps//:com_google_code_findbugs_jsr305 [for tool]; 0s remote, remote-cache ... (49 actions, 0 running)
    1829:  (17:34:25) �[32mINFO: �[0mFrom Building external/contrib_rules_jvm~/java/src/com/github/bazel_contrib/contrib_rules_jvm/junit5/libjunit5-compile-class.jar (19 source files):
    1830:  warning: [options] source value 8 is obsolete and will be removed in a future release
    1831:  warning: [options] target value 8 is obsolete and will be removed in a future release
    1832:  warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.
    1833:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ExecutingJavascriptTest-chrome', it will not be built.
    1834:  Analysis failed
    1835:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ImplicitWaitTest-spotbugs', it will not be built.
    1836:  Analysis failed
    1837:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:PartialLinkTextMatchTest-edge', it will not be built.
    1838:  Analysis failed
    1839:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:SvgElementTest-edge', it will not be built.
    1840:  Analysis failed
    1841:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:MiscTest', it will not be built.
    1842:  Analysis failed
    1843:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/common:service', it will not be built.
    1844:  Analysis failed
    1845:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:SlowLoadingPageTest-edge', it will not be built.
    1846:  Analysis failed
    1847:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ClickTest-chrome', it will not be built.
    1848:  Analysis failed
    1849:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:storage-chrome-remote', it will not be built.
    1850:  Analysis failed
    1851:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:AuthenticationTest-firefox-beta', it will not be built.
    1852:  Analysis failed
    1853:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:I18nTest-spotbugs', it will not be built.
    1854:  Analysis failed
    1855:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:manager-firefox', it will not be built.
    1856:  Analysis failed
    1857:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:WindowSwitchingTest', it will not be built.
    1858:  Analysis failed
    1859:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:CorrectEventFiringTest-firefox', it will not be built.
    1860:  Analysis failed
    1861:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:NewSessionCreationTest', it will not be built.
    1862:  Analysis failed
    1863:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:navigation-chrome-remote', it will not be built.
    1864:  Analysis failed
    1865:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:select-firefox-beta-bidi', it will not be built.
    1866:  Analysis failed
    1867:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DragAndDropTest-spotbugs', it will not be built.
    1868:  Analysis failed
    1869:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:zipper-firefox-remote', it will not be built.
    1870:  Analysis failed
    1871:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ElementElementFindingTest-firefox', it will not be built.
    1872:  Analysis failed
    1873:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:manager-edge-remote', it will not be built.
    1874:  Analysis failed
    1875:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/stale_reference_tests.py', it will not be built.
    1876:  Analysis failed
    1877:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:KeysTest-spotbugs', it will not be built.
    1878:  Analysis failed
    1879:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/html5:LocationContextTest-firefox-beta', it will not be built.
    1880:  Analysis failed
    1881:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/data:NodeStatusTest-spotbugs', it will not be built.
    1882:  Analysis failed
    1883:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/distributor:DistributorNodeAvailabilityTest-spotbugs', it will not be built.
    1884:  Analysis failed
    1885:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-test/selenium/webdriver/common/implicit_waits_tests.py', it will not be built.
    1886:  Analysis failed
    1887:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/node/config:DriverServiceSessionFactoryTest-spotbugs', it will not be built.
    1888:  Analysis failed
    1889:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium:server', it will not be built.
    1890:  Analysis failed
    1891:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-test/selenium/webdriver/common/typing_tests.py', it will not be built.
    1892:  Analysis failed
    1893:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-test/selenium/webdriver/common/page_loading_tests.py', it will not be built.
    1894:  Analysis failed
    1895:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest', it will not be built.
    1896:  Analysis failed
    1897:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/window_switching_tests.py', it will not be built.
    1898:  Analysis failed
    1899:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/html5:LocationContextTest', it will not be built.
    1900:  Analysis failed
    1901:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote/http:FilterTest-spotbugs', it will not be built.
    1902:  Analysis failed
    1903:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:TagNameTest-chrome', it will not be built.
    1904:  Analysis failed
    1905:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:listener-edge', it will not be built.
    1906:  Analysis failed
    1907:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:Internal/Logging/LogTest-firefox', it will not be built.
    1908:  Analysis failed
    1909:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/position_and_size_tests.py', it will not be built.
    1910:  Analysis failed
    1911:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DefaultMouseTest-edge-remote', it will not be built.
    1912:  Analysis failed
    1913:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:Interactions/BasicKeyboardInterfaceTest-chrome', it will not be built.
    1914:  Analysis failed
    1915:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ClickTest-chrome', it will not be built.
    1916:  Analysis failed
    1917:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/html5:SessionStorageTest-chrome', it will not be built.
    1918:  Analysis failed
    1919:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ElementSelectingTest-chrome', it will not be built.
    1920:  Analysis failed
    1921:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/node:CustomLocatorHandlerTest-spotbugs', it will not be built.
    1922:  Analysis failed
    1923:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/pagefactory:ByChainedTest', it will not be built.
    1924:  Analysis failed
    1925:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/firefox:driver-firefox-remote', it will not be built.
    1926:  Analysis failed
    1927:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:ReleaseCommandTest', it will not be built.
    1928:  Analysis failed
    1929:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:ChangeUserAgentTest-edge', it will not be built.
    1930:  Analysis failed
    1931:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support:ThreadGuardTest-spotbugs', it will not be built.
    1932:  Analysis failed
    1933:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/driver_finder_tests.py', it will not be built.
    1934:  Analysis failed
    1935:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/safari:driver', it will not be built.
    1936:  Analysis failed
    1937:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/support/relative_by_tests.py', it will not be built.
    1938:  Analysis failed
    1939:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote/http:jdk/JdkHttpClientTest', it will not be built.
    1940:  Analysis failed
    1941:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/ui:HowTest-spotbugs', it will not be built.
    1942:  Analysis failed
    1943:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:DevTools/DevToolsNetworkTest-chrome', it will not be built.
    1944:  Analysis failed
    1945:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/element_equality_tests.py', it will not be built.
    1946:  Analysis failed
    1947:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/firefox:FirefoxProfileTest', it will not be built.
    1948:  Analysis failed
    1949:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:VirtualAuthn/VirtualAuthenticatorTest-chrome', it will not be built.
    1950:  Analysis failed
    1951:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support:ThreadGuardTest', it will not be built.
    1952:  Analysis failed
    1953:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ElementSelectingTest-chrome', it will not be built.
    1954:  Analysis failed
    1955:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-test/selenium/webdriver/common/element_aria_label_tests.py', it will not be built.
    1956:  Analysis failed
    1957:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-bidi', it will not be built.
    1958:  Analysis failed
    1959:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-test/selenium/webdriver/common/stale_reference_tests.py', it will not be built.
    1960:  Analysis failed
    1961:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-chrome-remote', it will not be built.
    1962:  Analysis failed
    1963:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ShadowRootHandlingTest-firefox', it will not be built.
    1964:  Analysis failed
    1965:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ClickScrollingTest-firefox', it will not be built.
    1966:  Analysis failed
    1967:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/browsingcontext:LocateNodesTest-spotbugs', it will not be built.
    1968:  Analysis failed
    1969:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:PointTest-spotbugs', it will not be built.
    1970:  Analysis failed
    1971:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:SlowLoadingPageTest-firefox', it will not be built.
    1972:  Analysis failed
    1973:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/support/Extensions:ExecuteJavaScriptTest', it will not be built.
    1974:  Analysis failed
    1975:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/testing:IgnoreComparatorUnitTest', it will not be built.
    1976:  Analysis failed
    1977:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:select-chrome-remote', it will not be built.
    1978:  Analysis failed
    1979:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:StaleElementReferenceTest-edge', it will not be built.
    1980:  Analysis failed
    1981:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/children_finding_tests.py', it will not be built.
    1982:  Analysis failed
    1983:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:NewSessionCreationTest-edge-remote', it will not be built.
    1984:  Analysis failed
    1985:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/firefox:extension', it will not be built.
    1986:  Analysis failed
    1987:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote/http:FormEncodedDataTest-spotbugs', it will not be built.
    1988:  Analysis failed
    1989:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:navigation-edge', it will not be built.
    1990:  Analysis failed
    1991:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/selenium_manager_tests.py', it will not be built.
    1992:  Analysis failed
    1993:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/takes_screenshots_tests.py', it will not be built.
    1994:  Analysis failed
    1995:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:ReverseProxyEndToEndTest', it will not be built.
    1996:  Analysis failed
    1997:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:StaleElementReferenceTest-edge', it will not be built.
    1998:  Analysis failed
    1999:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ElementEqualityTest-chrome', it will not be built.
    2000:  Analysis failed
    2001:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/frame_switching_tests.py', it will not be built.
    2002:  Analysis failed
    2003:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/edge:profile-edge', it will not be built.
    2004:  Analysis failed
    2005:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:WebElementTest', it will not be built.
    2006:  Analysis failed
    2007:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:TextHandlingTest', it will not be built.
    2008:  Analysis failed
    2009:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:unit-test/unit/selenium/webdriver/remote/remote_connection_tests.py', it will not be built.
    2010:  Analysis failed
    2011:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/node/config:NodeOptionsTest', it will not be built.
    2012:  Analysis failed
    2013:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote:ErrorHandlerTest-spotbugs', it will not be built.
    2014:  Analysis failed
    2015:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:CdpFacadeTest-spotbugs', it will not be built.
    2016:  Analysis failed
    2017:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:StaleElementReferenceTest-firefox-beta', it will not be built.
    2018:  Analysis failed
    2019:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/implicit_waits_tests.py', it will not be built.
    2020:  Analysis failed
    2021:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:shadow_root-chrome', it will not be built.
    2022:  Analysis failed
    2023:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:SlowLoadingPageTest-edge', it will not be built.
    2024:  Analysis failed
    2025:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:manager-firefox-bidi', it will not be built.
    2026:  Analysis failed
    2027:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:VisibilityTest-firefox', it will not be built.
    2028:  Analysis failed
    2029:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote', it will not be built.
    2030:  Analysis failed
    2031:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:PrintPageTest-chrome', it will not be built.
    2032:  Analysis failed
    2033:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote/internal:test-lib-spotbugs', it will not be built.
    2034:  Analysis failed
    2035:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:window-edge', it will not be built.
    2036:  Analysis failed
    2037:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/net:LinuxEphemeralPortRangeDetectorTest', it will not be built.
    2038:  Analysis failed
    2039:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/json:JsonInputTest-spotbugs', it will not be built.
    2040:  Analysis failed
    2041:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:ConsoleEventsTest-edge', it will not be built.
    2042:  Analysis failed
    2043:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/grid/node/local:local-spotbugs', it will not be built.
    2044:  Analysis failed
    2045:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:WebNetworkTest', it will not be built.
    2046:  Analysis failed
    2047:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/remote:element-firefox', it will not be built.
    2048:  Analysis failed
    2049:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:StressTest-remote', it will not be built.
    2050:  Analysis failed
    2051:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ElementEqualityTest-chrome', it will not be built.
    2052:  Analysis failed
    2053:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-chrome-remote', it will not be built.
    2054:  Analysis failed
    2055:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:PartialLinkTextMatchTest-firefox', it will not be built.
    2056:  Analysis failed
    2057:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:navigation-chrome-bidi', it will not be built.
    2058:  Analysis failed
    2059:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/grid/sessionmap/remote:remote-spotbugs', it will not be built.
    2060:  Analysis failed
    2061:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/testing:IgnoreComparatorUnitTest-spotbugs', it will not be built.
    2062:  Analysis failed
    2063:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-remote', it will not be built.
    2064:  Analysis failed
    2065:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/chrome:ChromeDriverServiceTest', it will not be built.
    2066:  Analysis failed
    2067:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:ScriptCommandsTest', it will not be built.
    2068:  Analysis failed
    2069:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:WindowTest-edge', it will not be built.
    2070:  Analysis failed
    2071:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/decorators:IntegrationTest', it will not be built.
    2072:  Analysis failed
    2073:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:NewSessionCreationTest-chrome', it will not be built.
    2074:  Analysis failed
    2075:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-test/selenium/webdriver/common/api_example_tests.py', it will not be built.
    2076:  Analysis failed
    2077:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/grid/distributor:distributor-spotbugs', it will not be built.
    2078:  Analysis failed
    2079:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:virtual_authenticator-firefox-beta-remote', it will not be built.
    2080:  Analysis failed
    2081:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote/tracing/opentelemetry:TracerTest', it will not be built.
    2082:  Analysis failed
    2083:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/grid/node/k8s:k8s-spotbugs', it will not be built.
    2084:  Analysis failed
    2085:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ElementAriaRoleTest-firefox-beta', it will not be built.
    2086:  Analysis failed
    2087:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:HistoryNavigationTest-spotbugs', it will not be built.
    2088:  Analysis failed
    2089:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:select-edge-remote', it will not be built.
    2090:  Analysis failed
    2091:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:FrameSwitchingTest-edge', it will not be built.
    2092:  Analysis failed
    2093:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/common/interactions:wheel_input', it will not be built.
    2094:  Analysis failed
    2095:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:target_locator-firefox-beta-bidi', it will not be built.
    2096:  Analysis failed
    2097:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/timeout_tests.py', it will not be built.
    2098:  Analysis failed
    2099:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:window-chrome', it will not be built.
    2100:  Analysis failed
    2101:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-test/selenium/webdriver/common/interactions_tests.py', it will not be built.
    2102:  Analysis failed
    2103:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/html5:LocationContextTest-edge', it will not be built.
    2104:  Analysis failed
    2105:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:takes_screenshot-firefox-beta-bidi', it will not be built.
    2106:  Analysis failed
    2107:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:window-chrome-bidi', it will not be built.
    2108:  Analysis failed
    2109:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/rendered_webelement_tests.py', it will not be built.
    2110:  Analysis failed
    2111:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/api_example_tests.py', it will not be built.
    2112:  Analysis failed
    2113:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:VirtualAuthn/VirtualAuthenticatorTest-firefox', it will not be built.
    2114:  Analysis failed
    2115:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/net:UrlCheckerTest-spotbugs', it will not be built.
    2116:  Analysis failed
    2117:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/chrome:ChromeOptionsFunctionalTest-remote', it will not be built.
    2118:  Analysis failed
    2119:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:SelectElementHandlingTest-chrome', it will not be built.
    2120:  Analysis failed
    2121:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/distributor:SessionSchedulingTest-spotbugs', it will not be built.
    2122:  Analysis failed
    2123:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote:RemoteWebDriverUnitTest', it will not be built.
    2124:  Analysis failed
    2125:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:CombinedInputActionsTest-chrome', it will not be built.
    2126:  Analysis failed
    2127:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:DevTools/DevToolsConsoleTest-chrome', it will not be built.
    2128:  Analysis failed
    2129:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:CookieImplementationTest-edge', it will not be built.
    2130:  Analysis failed
    2131:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:SlowLoadingPageTest-spotbugs', it will not be built.
    2132:  Analysis failed
    2133:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-edge-remote', it will not be built.
    2134:  Analysis failed
    2135:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:virtual_authenticator-firefox-beta', it will not be built.
    2136:  Analysis failed
    2137:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/virtual_authenticator_tests.py', it will not be built.
    2138:  Analysis failed
    2139:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:FrameSwitchingTest-edge', it will not be built.
    2140:  Analysis failed
    2141:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-edge', it will not be built.
    2142:  Analysis failed
    2143:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/alerts_tests.py', it will not be built.
    2144:  Analysis failed
    2145:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ReferrerTest', it will not be built.
    2146:  Analysis failed
    2147:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/decorators:InterfacesTest-spotbugs', it will not be built.
    2148:  Analysis failed
    2149:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:guard-firefox-beta-bidi', it will not be built.
    2150:  Analysis failed
    2151:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:SelectElementHandlingTest-chrome', it will not be built.
    2152:  Analysis failed
    2153:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/network:NetworkCommandsTest-remote', it will not be built.
    2154:  Analysis failed
    2155:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:NetworkInterceptionTests-firefox', it will not be built.
    2156:  Analysis failed
    2157:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/distributor/selector:DefaultSlotSelectorTest-spotbugs', it will not be built.
    2158:  Analysis failed
    2159:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/common/interactions:interactions', it will not be built.
    2160:  Analysis failed
    2161:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ExecutingJavascriptTest-edge', it will not be built.
    2162:  Analysis failed
    2163:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge', it will not be built.
    2164:  Analysis failed
    2165:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:JavascriptEnabledBrowserTest-edge', it will not be built.
    2166:  Analysis failed
    2167:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:StressTest', it will not be built.
    2168:  Analysis failed
    2169:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:CombinedInputActionsTest-chrome-remote', it will not be built.
    2170:  Analysis failed
    2171:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ElementDomPropertyTest-edge', it will not be built.
    2172:  Analysis failed
    2173:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/node/docker:DockerOptionsTest', it will not be built.
    2174:  Analysis failed
    2175:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:DimensionTest', it will not be built.
    2176:  Analysis failed
    2177:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:virtual_authenticator-firefox-beta-bidi', it will not be built.
    2178:  Analysis failed
    2179:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ElementDomPropertyTest-chrome', it will not be built.
    2180:  Analysis failed
    2181:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:storage-firefox-beta', it will not be built.
    2182:  Analysis failed
    2183:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:DownloadsTest-firefox', it will not be built.
    2184:  Analysis failed
    2185:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/net:LinuxEphemeralPortRangeDetectorTest-spotbugs', it will not be built.
    2186:  Analysis failed
    2187:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:Interactions/ActionBuilderTest-chrome', it will not be built.
    2188:  Analysis failed
    2189:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/position_and_size_tests.py', it will not be built.
    2190:  Analysis failed
    2191:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:DevTools/DevToolsProfilerTest-firefox', it will not be built.
    2192:  Analysis failed
    2193:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:RelativeLocatorTest-edge', it will not be built.
    2194:  Analysis failed
    2195:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/grid/sessionqueue/remote:remote-spotbugs', it will not be built.
    2196:  Analysis failed
    2197:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/server:NetworkOptionsTest', it will not be built.
    2198:  Analysis failed
    2199:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest', it will not be built.
    2200:  Analysis failed
    2201:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DragAndDropTest-edge-remote', it will not be built.
    2202:  Analysis failed
    2203:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:CookieImplementationTest-edge', it will not be built.
    2204:  Analysis failed
    2205:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:WebScriptExecuteTest-firefox-beta', it will not be built.
    2206:  Analysis failed
    2207:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:JavascriptEnabledDriverTest', it will not be built.
    2208:  Analysis failed
    2209:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/distributor:AddingNodesTest', it will not be built.
    2210:  Analysis failed
    2211:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/page_load_timeout_tests.py', it will not be built.
    2212:  Analysis failed
    2213:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:SessionHandlingTest-spotbugs', it will not be built.
    2214:  Analysis failed
    2215:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:TextPagesTest-firefox-beta', it will not be built.
    2216:  Analysis failed
    2217:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:VisibilityTest-firefox-beta', it will not be built.
    2218:  Analysis failed
    2219:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/atoms:CompiledAtomsNotLeakingTest', it will not be built.
    2220:  Analysis failed
    2221:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ExecutingJavascriptTest-edge', it will not be built.
    2222:  Analysis failed
    2223:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/server:BaseServerOptionsTest-spotbugs', it will not be built.
    2224:  Analysis failed
    2225:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/grid/router/httpd:httpd-spotbugs', it will not be built.
    2226:  Analysis failed
    2227:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/element_aria_tests.py', it will not be built.
    2228:  Analysis failed
    2229:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-test/selenium/webdriver/common/element_equality_tests.py', it will not be built.
    2230:  Analysis failed
    2231:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:LocalValueTest-edge-remote', it will not be built.
    2232:  Analysis failed
    2233:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ExecutingJavascriptTest-chrome', it will not be built.
    2234:  Analysis failed
    2235:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/sessionmap:SessionMapTest-spotbugs', it will not be built.
    2236:  Analysis failed
    2237:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ProxyTest-edge', it will not be built.
    2238:  Analysis failed
    2239:  (17:34:26) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:WindowTest', it will not ...

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    dependencies Pull requests that update a dependency file
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    0 participants