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

chore: bump the maven-low-risk group with 4 updates #470

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Bumps the maven-low-risk group with 4 updates: org.apache.maven.plugins:maven-surefire-plugin, io.github.bonigarcia:webdrivermanager, org.junit.vintage:junit-vintage-engine and com.microsoft.playwright:playwright.

Updates org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0

Release notes

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

3.3.0

Release Notes - Maven Surefire - Version 3.3.0

What's Changed

... (truncated)

Commits
  • d0b96a4 [maven-release-plugin] prepare release surefire-3.3.0
  • 71796af Bump org.codehaus.plexus:plexus-component-annotations
  • afb2d4e Bump org.codehaus.plexus:plexus-interpolation from 1.25 to 1.27
  • e6287dd [SUREFIRE-2232] [REGRESSION] StatelessXmlReporter fails to process failed res...
  • 57b7837 Bump org.htmlunit:htmlunit from 3.11.0 to 4.2.0
  • fd440c4 Bump org.xmlunit:xmlunit-core from 2.9.1 to 2.10.0
  • 5c34c43 Bump org.assertj:assertj-core from 3.25.3 to 3.26.0
  • 680fb00 Bump org.apache.commons:commons-compress from 1.26.1 to 1.26.2
  • cad0931 [SUREFIRE-2248] Make "type" attribute on failures and errors in (surefire|fai...
  • a88d786 [SUREFIRE-2047] Upgrade to maven-common-artifact-filters 3.4.0
  • Additional commits viewable in compare view

Updates io.github.bonigarcia:webdrivermanager from 5.8.0 to 5.9.1

Changelog

Sourced from io.github.bonigarcia:webdrivermanager's changelog.

[5.9.1] - 2024-06-24

Removed

  • Remove using jackson-databind 2.17.1

[5.9.0] - 2024-06-24

Fixed

  • Fix architecture label to build URL for Edge ARM64

Changed

  • Force to use jackson-databind 2.17.1

Removed

  • Exclude org.bouncycastle:bcpkix-jdk18on from docker-java
Commits
  • 9b559ce [maven-release-plugin] prepare release webdrivermanager-5.9.1
  • 0e170f9 Update CHANGELOG for version 5.9.1
  • bef8e1d Remove using jackson-databind 2.17.1
  • b3ea803 Update doc for version 5.9.0
  • ab1dbde [maven-release-plugin] prepare for next development iteration
  • 6cd95ef [maven-release-plugin] prepare release webdrivermanager-5.9.0
  • b22b80a Update CHANGELOG for version 5.9.0
  • cc0f5ca Bump to CDP 126 in some tests
  • 805b5ad Update mirror info (Sat Jun 22 12:02:08 UTC 2024)
  • 2d0a25c Update mirror info (Fri Jun 21 12:02:31 UTC 2024)
  • Additional commits viewable in compare view

Updates org.junit.vintage:junit-vintage-engine from 5.10.2 to 5.10.3

Release notes

Sourced from org.junit.vintage:junit-vintage-engine's releases.

JUnit 5.10.3 = Platform 1.10.3 + Jupiter 5.10.3 + Vintage 5.10.3

See Release Notes.

Full Changelog: junit-team/junit5@r5.10.2...r5.10.3

Commits
  • 55d1232 Release 5.10.3
  • 4455093 Remove accidental heading
  • b86a681 Remove JDK 21 as it's no longer available via Oracle's setup-java step
  • bc1608c Clean up release notes
  • 316ed31 Use Liberica for JDK 8 for compatibility with Apple Silicon
  • ad7c5dd Update copyright headers to 2024
  • 6c663b1 Use same default seed for method and class ordering (#3821)
  • d29e3eb Fix NPE when deserializing TestIdentifier (#3820)
  • f936c01 Fix class-level execution conditions on GraalVM (#3785)
  • 76b7c05 Allow GraalVmStarterTests to run remotely on Test Distribution agents
  • Additional commits viewable in compare view

Updates com.microsoft.playwright:playwright from 1.44.0 to 1.45.0

Release notes

Sourced from com.microsoft.playwright:playwright's releases.

v1.45.0

Clock

Utilizing the new Clock API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:

  • testing with predefined time;
  • keeping consistent time and timers;
  • monitoring inactivity;
  • ticking through time manually.
// Initialize clock with some time before the test time and let the page load
// naturally. `Date.now` will progress as the timers fire.
page.clock().install(new Clock.InstallOptions().setTime("2024-02-02T08:00:00"));
page.navigate("http://localhost:3333");
Locator locator = page.getByTestId("current-time");
// Pretend that the user closed the laptop lid and opened it again at 10am.
// Pause the time once reached that point.
page.clock().pauseAt("2024-02-02T10:00:00");
// Assert the page state.
assertThat(locator).hasText("2/2/2024, 10:00:00 AM");
// Close the laptop lid again and open it at 10:30am.
page.clock().fastForward("30:00");
assertThat(locator).hasText("2/2/2024, 10:30:00 AM");

See the clock guide for more details.

Miscellaneous

  • Method locator.setInputFiles() now supports uploading a directory for <input type=file webkitdirectory> elements.

    page.getByLabel("Upload directory").setInputFiles(Paths.get("mydir"));
  • Multiple methods like locator.click() or locator.press() now support a ControlOrMeta modifier key. This key maps to Meta on macOS and maps to Control on Windows and Linux.

    // Press the common keyboard shortcut Control+S or Meta+S to trigger a "Save" operation.
    page.keyboard.press("ControlOrMeta+S");
  • New property httpCredentials.send in apiRequest.newContext() that allows to either always send the Authorization header or only send it in response to 401 Unauthorized.

  • Playwright now supports Chromium, Firefox and WebKit on Ubuntu 24.04.

  • v1.45 is the last release to receive WebKit update for macOS 12 Monterey. Please update macOS to keep using the latest WebKit.

Browser Versions

  • Chromium 127.0.6533.5

... (truncated)

Commits
  • 507e2c2 chore: set version to 1.45.0 (#1611)
  • d9ac70c chore: roll driver to 1.45.0-beta (#1610)
  • 4279a4e chore(deps): bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4...
  • 141afb1 chore(deps): bump org.apache.maven.plugins:maven-clean-plugin from 3.3.2 to 3...
  • 2eaae58 chore(deps): bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 t...
  • e4828d0 chore: roll 1.45.0 (#1609)
  • a08ab2d devops: roll_driver script (#1605)
  • 626050d fix: Update README.md to fix wrong demo code (#1601)
  • 4cc3fa3 chore: roll driver to 1.45.0 beta, implement new features (#1600)
  • 226d075 chore(deps): bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to...
  • 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

Bumps the maven-low-risk group with 4 updates: [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire), [io.github.bonigarcia:webdrivermanager](https://github.com/bonigarcia/webdrivermanager), [org.junit.vintage:junit-vintage-engine](https://github.com/junit-team/junit5) and [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java).


Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.2.5 to 3.3.0
- [Release notes](https://github.com/apache/maven-surefire/releases)
- [Commits](apache/maven-surefire@surefire-3.2.5...surefire-3.3.0)

Updates `io.github.bonigarcia:webdrivermanager` from 5.8.0 to 5.9.1
- [Release notes](https://github.com/bonigarcia/webdrivermanager/releases)
- [Changelog](https://github.com/bonigarcia/webdrivermanager/blob/master/CHANGELOG.md)
- [Commits](bonigarcia/webdrivermanager@webdrivermanager-5.8.0...webdrivermanager-5.9.1)

Updates `org.junit.vintage:junit-vintage-engine` from 5.10.2 to 5.10.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.10.2...r5.10.3)

Updates `com.microsoft.playwright:playwright` from 1.44.0 to 1.45.0
- [Release notes](https://github.com/microsoft/playwright-java/releases)
- [Commits](microsoft/playwright-java@v1.44.0...v1.45.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-low-risk
- dependency-name: io.github.bonigarcia:webdrivermanager
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-low-risk
- dependency-name: org.junit.vintage:junit-vintage-engine
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-low-risk
- dependency-name: com.microsoft.playwright:playwright
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-low-risk
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner July 1, 2024 01:52
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jul 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 1, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Aug 1, 2024
@dependabot dependabot bot deleted the dependabot/maven/maven-low-risk-9ff5b5b2ac branch August 1, 2024 01:55
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 java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants