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

fix(deps): update all non-major dependencies #49

Merged
merged 1 commit into from
Dec 12, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 10, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.codehaus.mojo:versions-maven-plugin (source) 2.17.1 -> 2.18.0 age adoption passing confidence
me.fabriciorby:maven-surefire-junit5-tree-reporter 1.3.0 -> 1.4.0 age adoption passing confidence
org.apache.maven.plugins:maven-failsafe-plugin 3.5.1 -> 3.5.2 age adoption passing confidence
org.apache.maven.plugins:maven-surefire-plugin 3.5.1 -> 3.5.2 age adoption passing confidence
com.github.dasniko:testcontainers-keycloak 3.5.0 -> 3.5.1 age adoption passing confidence
org.testcontainers:junit-jupiter (source) 1.20.2 -> 1.20.4 age adoption passing confidence
org.junit.jupiter:junit-jupiter (source) 5.11.2 -> 5.11.3 age adoption passing confidence
com.microsoft.playwright:playwright 1.47.0 -> 1.49.0 age adoption passing confidence
org.projectlombok:lombok (source) 1.18.34 -> 1.18.36 age adoption passing confidence

Release Notes

mojohaus/versions (org.codehaus.mojo:versions-maven-plugin)

v2.18.0

Compare Source

❗ NOTICE

Due to Doxia 2.x stack maven-site-plugin 3.20+ is required.
https://cwiki.apache.org/confluence/display/MAVEN/Towards+Doxia+2.0.0+Stack

Changes
🚀 New features and improvements
🐛 Bug Fixes
📦 Dependency updates
📝 Documentation updates
👻 Maintenance
🔧 Build
fabriciorby/maven-surefire-junit5-tree-reporter (me.fabriciorby:maven-surefire-junit5-tree-reporter)

v1.4.0

Compare Source

What's Changed
New Contributors

Full Changelog: fabriciorby/maven-surefire-junit5-tree-reporter@v1.3.0...v1.4.0

dasniko/testcontainers-keycloak (com.github.dasniko:testcontainers-keycloak)

v3.5.1

Compare Source

Exclude transitive dependency to javax.* namespace, introduced by update of shrinkwrap dependency (#​160 , thanks to @​evandongen)

Full Changelog: dasniko/testcontainers-keycloak@3.5.0...3.5.1

testcontainers/testcontainers-java (org.testcontainers:junit-jupiter)

v1.20.4

Compare Source

What's Changed
🚀 Features & Enhancements
🐛 Bug Fixes
📖 Documentation
📦 Dependency updates

v1.20.3

Compare Source

What's Changed
🚀 Features & Enhancements
🐛 Bug Fixes
📖 Documentation
🧹 Housekeeping
microsoft/playwright-java (com.microsoft.playwright:playwright)

v1.49.0

Compare Source

Aria snapshots

New assertion assertThat(locator).matchesAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

page.navigate("https://playwright.dev");
assertThat(page.locator("body")).matchesAriaSnapshot("""
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
""");

You can generate this assertion with Test Generator or by calling locator.ariaSnapshot().

Learn more in the aria snapshots guide.

Tracing groups

New method tracing.group() allows you to visually group actions in the trace viewer.

// All actions between group and groupEnd
// will be shown in the trace viewer as a group.
page.context().tracing().group("Open Playwright.dev > API");
page.navigate("https://playwright.dev/");
page.getByRole(AriaRole.LINK, new Page.GetByRoleOptions().setName("API")).click();
page.context().tracing().groupEnd();

Breaking: chrome and msedge channels switch to new headless mode

This change affects you if you're using one of the following channels in your playwright.config.ts:

  • chrome, chrome-dev, chrome-beta, or chrome-canary
  • msedge, msedge-dev, msedge-beta, or msedge-canary

After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See issue #​33566 for more details.

Try new Chromium headless

You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it:

New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.

See issue #​33566 for the list of possible breakages you could encounter and more details on Chromium headless. Please file an issue if you see any problems after opting in.

Browser browser = playwright.chromium().launch(new BrowserType.LaunchOptions().setChannel("chromium"));

Miscellaneous

  • There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
  • <canvas> elements inside a snapshot now draw a preview.

Browser Versions

  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

v1.48.0

Compare Source

WebSocket routing

New methods page.routeWebSocket() and browserContext.routeWebSocket() allow to intercept, modify and mock WebSocket connections initiated in the page. Below is a simple example that mocks WebSocket communication by responding to a "request" with a "response".

page.routeWebSocket("/ws", ws -> {
  ws.onMessage(message -> {
    if ("request".equals(message))
      ws.send("response");
  });
});

See WebSocketRoute for more details.

UI updates

  • New "copy" buttons for annotations and test location in the HTML report.
  • Route method calls like route.fulfill() are not shown in the report and trace viewer anymore. You can see which network requests were routed in the network tab instead.
  • New "Copy as cURL" and "Copy as fetch" buttons for requests in the network tab.

Miscellaneous

Browser Versions

  • Chromium 130.0.6723.19
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 129
  • Microsoft Edge 129
projectlombok/lombok (org.projectlombok:lombok)

v1.18.36

Compare Source


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 force-pushed the renovate/all-minor-patch branch from 0e2c256 to 8a14c34 Compare September 13, 2024 01:07
@renovate renovate bot changed the title fix(deps): update all non-major dependencies to v25.0.5 chore(deps): update all non-major dependencies Sep 13, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f15f3ef to d201cf3 Compare September 25, 2024 07:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 7195d49 to 9866e61 Compare October 7, 2024 19:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9866e61 to afe83f5 Compare October 8, 2024 13:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 4fb139b to 3df63c9 Compare October 22, 2024 22:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3df63c9 to 87773e1 Compare November 2, 2024 21:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from de4bb55 to 4f41343 Compare November 20, 2024 23:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4f41343 to 0882eba Compare November 22, 2024 04:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0882eba to 9708490 Compare December 2, 2024 08:16
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9708490 to 3b8fb95 Compare December 11, 2024 17:51
@anarsultanov anarsultanov merged commit fa50119 into main Dec 12, 2024
2 checks passed
@anarsultanov anarsultanov deleted the renovate/all-minor-patch branch December 12, 2024 16:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant