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

build(deps): bump the dependencies group across 1 directory with 6 updates #831

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 12, 2024

Bumps the dependencies group with 6 updates in the /core-java directory:

Package From To
org.seleniumhq.selenium:selenium-java 4.19.1 4.20.0
com.google.guava:guava 33.1.0-jre 33.2.0-jre
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml 2.17.0 2.17.1
com.fasterxml.jackson.core:jackson-databind 2.17.0 2.17.1
org.aspectj:aspectjweaver 1.9.22 1.9.22.1
com.puppycrawl.tools:checkstyle 10.15.0 10.16.0

Updates org.seleniumhq.selenium:selenium-java from 4.19.1 to 4.20.0

Release notes

Sourced from org.seleniumhq.selenium:selenium-java's releases.

Selenium 4.20.0

Changelog

For each component's detailed changelog, please check:

Commits in this release

  • a12c3b56a9 - [build] Moving versions to nightly :: Diego Molina
  • 4fec60d2b8 - [rb] Update Gemfile.lock :: Alex Rodionov
  • 96cf53a454 - [rb] Fix document generation :: Alex Rodionov
  • 507970233b - [build] Bumping actions versions :: Diego Molina
  • 63e815627f - Update mirror info (Thu Mar 28 00:15:30 UTC 2024) :: Selenium CI Bot
  • b7d831db8c - [bidi][js] Update the capture screenshot APIs to include all parameters and remove scroll parameter (#13744) :: Puja Jagani
  • 0b29138fa7 - [rust] Bump to rules_rust 0.41.0 (Rust 1.77.0) :: Boni García
  • cc7f3402f8 - Update mirror info (Fri Mar 29 00:15:26 UTC 2024) :: Selenium CI Bot
  • acd9d0e77d - [bidi] [java] Fix the bazel file after the BiDi breaking change :: Puja Jagani
  • abe0ee07dc - [java] Updating change log and bumping version :: Puja Jagani
  • 3ef121c0b2 - Update mirror info (Fri Mar 29 12:14:17 UTC 2024) :: Selenium CI Bot
  • 6cda692993 - [grid] synchronize read from field written by other thread :: Jörg Sautter
  • 9c6ccdbf40 - Update mirror info (Sat Mar 30 00:14:35 UTC 2024) :: Selenium CI Bot
  • 1f88231e2b - [js] Fix linting (#13753) :: Puja Jagani
  • a2aa09f143 - Bumping to SNAPSHOT for Nightly :: Diego Molina
  • ec7c11fae8 - Update mirror info (Mon Apr 1 12:08:01 UTC 2024) :: Selenium CI Bot
  • e90e4a5001 - [rb] Return JRuby dependencies :: Alex Rodionov
  • ef3d9e870e - [rb][java][dotnet][py] Skipping Edge tests due to https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743 :: Diego Molina
  • a169d905b4 - [JS][bidi] Impelments functionality to retrieve all top-level browsing contexts :: Sri Harsha
  • a663d280de - [js] Running format script :: Diego Molina
  • 37565afc72 - [dotnet] Simplify definition of building test web server for unit tests :: Nikolay Borisenko
  • 911b312090 - [js] Add JS comments for BiDi related files (#13763) :: Puja Jagani
  • 309b3e802f - [bidi][java] Deprecate using builder for Locate Node parameters. (#13767) :: Puja Jagani
  • baf6116541 - [bidi][java] Update Locator class to not use optional :: Puja Jagani
  • cca70e3eb4 - [JS] lint fixes :: Sri Harsha
  • 68ad9845aa - [grid] do not create unused HttpResponse instances :: Jörg Sautter
  • aaa7e791a4 - [bidi][java] Enable chrome tests (#13770) :: Puja Jagani
  • b49ae752c9 - [JS] Set browserName by default when browserOptions are used :: Sri Harsha
  • 111941bd3c - [JS] Implement fullPageScreenshot functionality for Firefox (#13301) :: Sri Harsha
  • 38829c7c63 - [bidi][java] Enable grid BiDi chrome test (#13778) :: Puja Jagani
  • 12ed6cc2d9 - [dotnet] use correct devtools session id after reinitialization (#13768) :: schrufygroovy
  • 44eba5952f - [js] Running format script :: Diego Molina
  • 8c8adec916 - [grid] handle baseRoute like the hubRoute and the graphqlRoute (#13772) :: Jörg Sautter
  • 392ffbc08d - [JS] Remove duplicate license agreement from files :: Sri Harsha
  • b800dfcde2 - [java] [bidi] Enable test that pass in chrome :: Puja Jagani

... (truncated)

Commits

Updates com.google.guava:guava from 33.1.0-jre to 33.2.0-jre

Release notes

Sourced from com.google.guava:guava's releases.

33.2.0

Android users: Please test recent Guava versions

If you know of Guava Android users who have not yet upgraded to at least release 33.0.0, please encourage them to upgrade, preferably to today's release, 33.2.0. These releases have begun adding Java 8+ APIs to guava-android. While we don't anticipate problems, we do anticipate that any unexpected problems could force a disruptive rollback. To minimize any disruption, we'd like to catch any such problems early.

Please let us know of any problems you encounter.

Maven

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>33.2.0-jre</version>
  <!-- or, for Android: -->
  <version>33.2.0-android</version>
</dependency>

Jar files

Guava requires one runtime dependency, which you can download here:

Javadoc

JDiff

Changelog

  • Dropped testing for Android versions before Lollipop (API Level 21). Guava may stop working under older versions in the future, or it may have done so already.
  • Fixed a GWT compilation breakage under Gradle. (858caf425c)
  • collect: Made our Collector APIs (e.g., ImmutableList.toImmutableList()) available in guava-android. More Java 8 APIs will follow in future releases. (96fca0b747)
    • As always, streams are available to Android code only when that code enables library desugaring or targets a new enough API Level (24 (Nougat) for many stream APIs). (But note that we test only with library desugaring, so we don't currently know if API Level 24 is high enough to use our Collector APIs unless you have also enabled library desugaring.) Guava users who avoid the Collector APIs do not need to meet this requirement.
  • collect: Fixed a potential NullPointerException in ImmutableMap.Builder on a rare code path. (70a98115d8)
  • net: Added HttpHeaders constants Ad-Auction-Allowed, Permissions-Policy-Report-Only, and Sec-GPC. (7dc01ed27b, 41d0d9a833, 38c8017bd44b7919b112f1c99f3d8ce4b058ae5d)
Commits

Updates com.fasterxml.jackson.dataformat:jackson-dataformat-yaml from 2.17.0 to 2.17.1

Commits

Updates com.fasterxml.jackson.core:jackson-databind from 2.17.0 to 2.17.1

Commits

Updates org.aspectj:aspectjweaver from 1.9.22 to 1.9.22.1

Release notes

Sourced from org.aspectj:aspectjweaver's releases.

1.9.22.1

Java 22 maintenance release

Commits

Updates com.puppycrawl.tools:checkstyle from 10.15.0 to 10.16.0

Release notes

Sourced from com.puppycrawl.tools:checkstyle's releases.

checkstyle-10.16.0

Checkstyle 10.16.0 - https://checkstyle.org/releasenotes.html#Release_10.16.0

New:

#14620 - LITERAL_CASE token support in RightCurlyCheck

Bug fixes:

#14765 - OverloadMethodDeclarationOrder check ignores anything besides methods #14788 - MagicNumberCheck NPE when ignoring field declarations #14092 - UnusedLocalVariable does not support local classes #12923 - UnusedImports does not report unused static imports when the method is used as a method reference

Commits
  • e8aa612 [maven-release-plugin] prepare release checkstyle-10.16.0
  • 87cf29c doc: release notes for 10.16.0
  • 4096711 Issue #14765: fix OverloadMethodsDeclarationOrderCheck
  • 5b05fff Issue #14625: fixed inspections violations MismatchedJavadocCode
  • 48de202 dependency: bump com.google.errorprone:error_prone_core
  • 508757d Issue #14625: move TailRecursion inspection problems to separate issue
  • 10908a4 Issue #14625: fix inspection violations OptionalGetWithoutIsPresent
  • 508c361 Issue #13213: Remove '//ok' comments from InputJavadocMethodExtraThrows
  • 40a1bba supplemental: removed conditional that checks suppression list
  • 101e623 Issue #14715: Enforced new naming convention in IT area 24
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the dependencies group with 6 updates in the /core-java directory:

| Package | From | To |
| --- | --- | --- |
| [org.seleniumhq.selenium:selenium-java](https://github.com/SeleniumHQ/selenium) | `4.19.1` | `4.20.0` |
| [com.google.guava:guava](https://github.com/google/guava) | `33.1.0-jre` | `33.2.0-jre` |
| [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) | `2.17.0` | `2.17.1` |
| [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.17.0` | `2.17.1` |
| [org.aspectj:aspectjweaver](https://github.com/eclipse/org.aspectj) | `1.9.22` | `1.9.22.1` |
| [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) | `10.15.0` | `10.16.0` |



Updates `org.seleniumhq.selenium:selenium-java` from 4.19.1 to 4.20.0
- [Release notes](https://github.com/SeleniumHQ/selenium/releases)
- [Commits](https://github.com/SeleniumHQ/selenium/commits/selenium-4.20.0)

Updates `com.google.guava:guava` from 33.1.0-jre to 33.2.0-jre
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)

Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-yaml` from 2.17.0 to 2.17.1
- [Commits](FasterXML/jackson-dataformats-text@jackson-dataformats-text-2.17.0...jackson-dataformats-text-2.17.1)

Updates `com.fasterxml.jackson.core:jackson-databind` from 2.17.0 to 2.17.1
- [Commits](https://github.com/FasterXML/jackson/commits)

Updates `org.aspectj:aspectjweaver` from 1.9.22 to 1.9.22.1
- [Release notes](https://github.com/eclipse/org.aspectj/releases)
- [Commits](https://github.com/eclipse/org.aspectj/commits)

Updates `com.puppycrawl.tools:checkstyle` from 10.15.0 to 10.16.0
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](checkstyle/checkstyle@checkstyle-10.15.0...checkstyle-10.16.0)

---
updated-dependencies:
- dependency-name: org.seleniumhq.selenium:selenium-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.google.guava:guava
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.aspectj:aspectjweaver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner May 12, 2024 23:52
@dependabot dependabot bot added 🏠 pr: internal PR which adds internal framework changes java Pull requests that update Java code labels May 12, 2024
@dependabot dependabot bot requested a review from WasiqB May 12, 2024 23:52
@WasiqB
Copy link
Member

WasiqB commented May 18, 2024

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github May 18, 2024

Superseded by #835.

@dependabot dependabot bot closed this May 18, 2024
@dependabot dependabot bot deleted the dependabot/maven/core-java/main/dependencies-e74607769a branch May 18, 2024 12:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🏠 pr: internal PR which adds internal framework changes java Pull requests that update Java code
Projects
Development

Successfully merging this pull request may close these issues.

None yet

1 participant