BoykaFramework / boyka-framework

🎉 Ultimate test automation framework for automating any application on any platform
https://boykaframework.github.io/boyka-framework/
MIT License
123 stars 42 forks source link

build(deps): bump the dependencies group in /core-java with 6 updates #842

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

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

Package From To
io.appium:java-client 9.2.2 9.2.3
com.google.guava:guava 33.2.0-jre 33.2.1-jre
org.apache.maven.plugins:maven-enforcer-plugin 3.4.1 3.5.0
org.apache.maven.plugins:maven-javadoc-plugin 3.6.3 3.7.0
org.sonarsource.scanner.maven:sonar-maven-plugin 3.11.0.3922 4.0.0.4121
org.sonatype.plugins:nexus-staging-maven-plugin 1.6.13 1.7.0

Updates io.appium:java-client from 9.2.2 to 9.2.3

Release notes

Sourced from io.appium:java-client's releases.

v9.2.3

9.2.3

  • [BUG FIX]
    • Properly represent FeaturesMatchingResult model if multiple option is enabled #2170
    • Use current class loader for the ByteBuddy wrapper #2172
      This fixes errors like NoClassDefFoundError: org/openqa/selenium/remote/RemoteWebElement, NoClassDefFoundError: io/appium/java_client/proxy/HasMethodCallListeners when PageFactory is used.
    • Correct extension name for mobile: replaceElementValue #2171
  • [DEPRECATION]
    • Deprecate AppiumProtocolHandshake class #2173
      The original ProtocolHandshake class only supports W3C protocol now. There is no need to hack it anymore.
  • [REFACTOR]
    • Replace Guava HttpHeaders with Selenium HttpHeader #2151
  • [DEPENDENCY CHANGE]
    • Bump SLF4J from 2.0.12 to 2.0.13 #2158
    • Bump Gson from 2.10.1 to 2.11.0 #2175
Changelog

Sourced from io.appium:java-client's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

9.2.3

  • [BUG FIX]
    • Properly represent FeaturesMatchingResult model if multiple option is enabled #2170
    • Use current class loader for the ByteBuddy wrapper #2172
      This fixes errors like NoClassDefFoundError: org/openqa/selenium/remote/RemoteWebElement, NoClassDefFoundError: io/appium/java_client/proxy/HasMethodCallListeners when PageFactory is used.
    • Correct extension name for mobile: replaceElementValue #2171
  • [DEPRECATION]
    • Deprecate AppiumProtocolHandshake class #2173
      The original ProtocolHandshake class only supports W3C protocol now. There is no need to hack it anymore.
  • [REFACTOR]
    • Replace Guava HttpHeaders with Selenium HttpHeader #2151
  • [DEPENDENCY CHANGE]
    • Bump SLF4J from 2.0.12 to 2.0.13 #2158
    • Bump Gson from 2.10.1 to 2.11.0 #2175

9.2.2

  • [BUG FIX]
    • fix: Fix building of Android key event parameters #2145
    • fix: Fix building of Android geo location parameters #2146

9.2.1

  • [REFACTOR]
    • Replace private usages of Guava Collections API with Java Collections API #2136
    • Remove usages of Guava's @VisibleForTesting annotation #2138. Previously opened internal API marked with @VisibleForTesting annotation is private now:
      • io.appium.java_client.internal.filters.AppiumUserAgentFilter#containsAppiumName
      • io.appium.java_client.service.local.AppiumDriverLocalService#parseSlf4jContextFromLogMessage
  • [DEPENDENCY CHANGE]
    • Bump minimum supported Selenium version from 4.17.0 to 4.19.0 #2142

9.2.0

  • [ENHANCEMENTS]
    • Incorporate poll delay mechanism into AppiumFluentWait #2116 (Closes #2111)
    • Make server startup error messages more useful #2130
  • [BUG FIX]
    • Set correct geolocation coordinates of the current device #2109 (Fixes #2108)
    • Always release annotated element reference from the builder instance #2128
    • Cache dynamic proxy classes created by ByteBuddy #2129 (Fixes #2119)
  • [DEPENDENCY CHANGE]
    • Bump SLF4J from 2.0.11 to 2.0.12 #2115
  • [DOCUMENTATION]
    • Improve release steps #2107

9.1.0

... (truncated)

Commits
  • 127a70f release: v9.2.3 (#2177)
  • a67dd96 build(deps): Bump org.owasp.dependencycheck from 9.1.0 to 9.2.0 (#2176)
  • 6b8e28d build(deps): Bump com.google.code.gson:gson from 2.10.1 to 2.11.0 (#2175)
  • b1f8bc9 fix: Deprecate AppiumProtocolHandshake class (#2173)
  • 56dc411 fix: Correct extension name for mobile: replaceElementValue (#2171)
  • 73a4387 fix: Use current class loader for the ByteBuddy wrapper (#2172)
  • 3efeaeb fix: Properly represent FeaturesMatchingResult model if multiple option is ...
  • 6f83f1d ci: Bump conventional-pr-action to v3
  • 496417f ci: Update the flow for Android e2e tests (#2166)
  • 57e431c ci: Use non-deprecated GH action for Gradle wrapper validation (#2160)
  • Additional commits viewable in compare view


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

Release notes

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

33.2.1

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

Jar files

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

Javadoc

JDiff

Changelog

  • net: Changed InetAddress-String conversion methods to preserve the IPv6 scope ID if present. The scope ID can be necessary for IPv6-capable devices with multiple network interfaces. However, preserving it can also lead to problems for callers that rely on the returned values not to include the scope ID:
    • Callers might compensate for the old behavior of the methods by appending the scope ID to a returned string themselves. If so, you can update your code to stop doing so at the same time as you upgrade Guava. Of, if your code might run against multiple versions of Guava, you can check whether Guava has included a scope ID before you add one yourself.
    • Callers might pass the returned string to another system that does not understand scope IDs. If so, you can strip the scope ID off, whether by truncating the string form at a % character (leaving behind any trailing ] character in the case of forUriString) or by replacing the returned InetAddress with a new instance constructed by calling InetAddress.getByAddress(addr).
    • java.net.InetAddress validates any provided scope ID against the interfaces available on the machine. As a result, methods in InetAddresses may now fail if the scope ID fails validation.
      • Notable cases in which this may happen include:
        • if the code runs in an Android app without networking permission
        • if code passes InetAddress instances or strings across devices
      • If this is not the behavior that you want, then you can strip off the scope ID from the input string before passing it to Guava, as discussed above. (3f61870ac6)
Commits


Updates org.apache.maven.plugins:maven-enforcer-plugin from 3.4.1 to 3.5.0

Release notes

Sourced from org.apache.maven.plugins:maven-enforcer-plugin's releases.

3.5.0

🚀 New features and improvements

🐛 Bug Fixes

📦 Dependency updates

👻 Maintenance

Commits
  • 21b31b5 [maven-release-plugin] prepare release enforcer-3.5.0
  • e6cd6e9 Remove unused dependency (#316)
  • 29d1c0d [MENFORCER-497] Require Maven 3.6.3+
  • 80e6626 [MENFORCER-503] Pass context to ProfileActivator - fix NPE in Maven 3.9.7
  • 5c7d0bc [MENFORCER-494] Allow banning dynamic versions in whole tree (#294)
  • e687c46 [MENFORCER-501] Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#311)
  • 6665083 [MENFORCER-501] Bump commons-codec:commons-codec from 1.16.1 to 1.17.0 (#312)
  • 3eb6343 Bump project version to 3.5.0-SNAPSHOT
  • 1cf5c5f [MENFORCER-504] Bump org.apache.maven:maven-parent from 41 to 42 (#314)
  • a24b557 Manage ignore artifacts for dependabot in PR
  • Additional commits viewable in compare view


Updates org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0

Commits
  • 2c28b8d [maven-release-plugin] prepare release maven-javadoc-plugin-3.7.0
  • 5530d68 [MJAVADOC-793] java.lang.NullPointerException: Cannot invoke "String.length()...
  • 08cf68e Revert "Bump org.codehaus.plexus:plexus-archiver from 4.9.1 to 4.9.2"
  • 6446822 Bump org.apache.maven.shared:maven-invoker from 3.2.0 to 3.3.0
  • 49c93ad Bump org.assertj:assertj-core from 3.25.3 to 3.26.0
  • 4e72048 [MJAVADOC-795] Upgrade to Parent 42 and Maven 3.6.3
  • b55dd96 Bump org.codehaus.plexus:plexus-archiver from 4.9.1 to 4.9.2
  • 77ad410 Bump org.apache.commons:commons-text from 1.11.0 to 1.12.0
  • c21568a Bump commons-io:commons-io from 2.16.0 to 2.16.1
  • ded56a9 Exclude JDK 8 - temurin, adopt-openj9 on macos
  • Additional commits viewable in compare view


Updates org.sonarsource.scanner.maven:sonar-maven-plugin from 3.11.0.3922 to 4.0.0.4121

Release notes

Sourced from org.sonarsource.scanner.maven:sonar-maven-plugin's releases.

4.0.0.4121

Release notes - Sonar Scanner for Maven - 4.0

Bug

SCANMAVEN-183 Maven HTTPS proxies not taken into account

SCANMAVEN-217 Broken integration with maven encrypted secret

SCANMAVEN-218 The scanner should index pom.xml instead of generated pom

Improvement

SCANMAVEN-210 Move to Java 11 and drop Java 8 support

SCANMAVEN-214 scanAll should be disabled when `sonar.tests` is overridden

SCANMAVEN-215 scanAll exludes external report files

SCANMAVEN-216 scanAll includes Java and Kotlin files if `sonar.java.binaries` and `sonar.java.libraries` are set

SCANMAVEN-219 Support HTTPS Proxy System Properties

SCANMAVEN-224 Log a warning message when the version of the scanner is not specified

Commits
  • 5d0c548 SCANMAVEN-224 Log a warning message when the version of the scanner is not sp...
  • b98e10c [NO-JIRA] Upgrade to parent pom 74.0.0.1.1768 (#227)
  • 1b68124 SCANMAVEN-220 Revert "Make sonar.maven.scanAll true by default" (#226)
  • f4ad3da [NO-JIRA] Remove unused import (#224)
  • e3cc5ec SCANMAVEN-216 scanAll includes Java and Kotlin files if sonar.java.binaries...
  • b772d4c SCANMAVEN-217 Fix broken integration with maven encrypted secret (#221)
  • be505e3 SCANMAVEN-183 The scanner for Maven takes HTTPS proxies into account (#218)
  • dd5762e SCANMAVEN-210: Move to Java 11 (#220)
  • d2c79c1 SCANMAVEN-215 scanAll exludes external report files (#217)
  • 990c59d SCANMAVEN-220: Enable sonar.scanner.scanAll by default (#219)
  • Additional commits viewable in compare view


Updates org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.13 to 1.7.0

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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions