@camunda/e2e-test-suite 0.0.679 → 0.0.681

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -47,6 +47,19 @@ For the Camunda C8Run offering, the test suite supports following versions:
47
47
  - 8.9.X
48
48
  - 8.10.X
49
49
 
50
+ **Java runtime version coverage (nightly and release workflows):**
51
+
52
+ Packaging always uses Java 25. The runtime JDK is varied per version to ensure compatibility across LTS releases:
53
+
54
+ | C8Run Version | Java Versions Tested |
55
+ | ------------- | -------------------- |
56
+ | 8.7.X | 21 |
57
+ | 8.8.X | 21 |
58
+ | 8.9.X | 21, 25 |
59
+ | 8.10.X | 21, 25 |
60
+
61
+ Only LTS Java releases (21, 25) are included. Non-LTS versions (22, 23, 24) are intentionally excluded as they have a 6-month lifetime and are not supported long-term.
62
+
50
63
  ### GitHub Actions for Testing
51
64
 
52
65
  GitHub Actions can be used to facilitate testing across various cluster versions and components:
@@ -475,13 +488,13 @@ By following this convention, we ensure **clarity, consistency, and alignment wi
475
488
 
476
489
  ### c8Run Supported Versions, Modes and Projects
477
490
 
478
- | Version | Docker Allowed? | OS When Docker | OS When Non-Docker | Projects (Non-Docker) | Projects (Docker) |
479
- | ------- | --------------- | ------------------ | ---------------------- | ----------------------------------- | ----------------- |
480
- | 8.6 | No | — | ubuntu, macOS | — | — |
481
- | 8.7 | Yes | ubuntu-latest only | ubuntu, macOS, windows | chromium (ES) | chromium (ES) |
482
- | 8.8 | Yes | ubuntu-latest only | ubuntu, macOS, windows | chromium-v1 (ES) + chromium-v2 (ES) | chromium-v2 (ES) |
483
- | 8.9 | No | — | — | chromium-v2 (RDBMS) | — |
484
- | 8.10 | No | — | — | chromium-v2 (RDBMS) | — |
491
+ | Version | Docker Allowed? | OS When Docker | OS When Non-Docker | Projects (Non-Docker) | Projects (Docker) | Java Versions (runtime) |
492
+ | ------- | --------------- | ------------------ | ---------------------- | ----------------------------------- | ----------------- | ----------------------- |
493
+ | 8.6 | No | — | ubuntu, macOS | — | — | — |
494
+ | 8.7 | Yes | ubuntu-latest only | ubuntu, macOS, windows | chromium (ES) | chromium (ES) | 21 |
495
+ | 8.8 | Yes | ubuntu-latest only | ubuntu, macOS, windows | chromium-v1 (ES) + chromium-v2 (ES) | chromium-v2 (ES) | 21 |
496
+ | 8.9 | No | — | — | chromium-v2 (RDBMS) | — | 21, 25 |
497
+ | 8.10 | No | — | — | chromium-v2 (RDBMS) | — | 21, 25 |
485
498
 
486
499
  ## Viewing Test Results
487
500
 
@@ -106,7 +106,7 @@ class ClusterPage {
106
106
  name: clusterName,
107
107
  });
108
108
  this.dialog = page.getByRole('dialog');
109
- this.clusterVersion = (clusterName, versionText) => this.cluster(clusterName).getByText(versionText, { exact: true });
109
+ this.clusterVersion = (clusterName, versionText) => this.cluster(clusterName).getByText(versionText, { exact: false });
110
110
  }
111
111
  async clickClusterBanner() {
112
112
  await this.page
@@ -46,7 +46,7 @@ _8_10_1.test.describe('SaaS Migration Path Tests', () => {
46
46
  await clusterDetailsPage.performClusterUpdate();
47
47
  await homePage.clickClusters();
48
48
  await clusterPage.assertClusterHealthyStatusWithRetry('Test Cluster');
49
- await (0, test_1.expect)(clusterPage.clusterVersion('Test Cluster', '8.10')).toBeVisible();
49
+ await (0, test_1.expect)(clusterPage.clusterVersion('Test Cluster', '8.10')).toBeVisible({ timeout: 30000 });
50
50
  });
51
51
  });
52
52
  (0, _8_10_1.test)('Basic Navigation After SaaS Upgrade', async ({ homePage, appsPage, modelerHomePage, operateHomePage, optimizeHomePage, taskPanelPage, ocIdentityHomePage, }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.679",
3
+ "version": "0.0.681",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",