Skip to content

Commit 0eb2250

Browse files
HYP Release Notes
1 parent f627c7f commit 0eb2250

File tree

4 files changed

+168
-2
lines changed

4 files changed

+168
-2
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
id: hyperexecute-release-notes-2-7-0
3+
title: Version 2.7.0
4+
hide_title: false
5+
sidebar_label: Version 2.7.0
6+
description: Version 2.7.0
7+
keywords:
8+
- LambdaTest Hyperexecute
9+
- LambdaTest Hyperexecute help
10+
- LambdaTest Hyperexecute documentation
11+
- FAQs
12+
url: https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-7-0/
13+
site_name: LambdaTest
14+
slug: hyperexecute-release-notes-2-7-0/
15+
---
16+
17+
import NewReleaseTag from '../src/component/newRelease.js';
18+
import EnhancementTag from '../src/component/enhancementTag';
19+
import BugFixTag from '../src/component/bugFixTag';
20+
21+
<script type="application/ld+json"
22+
dangerouslySetInnerHTML={{ __html: JSON.stringify({
23+
"@context": "https://schema.org",
24+
"@type": "BreadcrumbList",
25+
"itemListElement": [{
26+
"@type": "ListItem",
27+
"position": 1,
28+
"name": "Home",
29+
"item": "https://www.lambdatest.com"
30+
},{
31+
"@type": "ListItem",
32+
"position": 2,
33+
"name": "Support",
34+
"item": "https://www.lambdatest.com/support/docs/"
35+
},{
36+
"@type": "ListItem",
37+
"position": 3,
38+
"name": "Version",
39+
"item": "https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-7-0/"
40+
}]
41+
})
42+
}}
43+
></script>
44+
## Browser Version Updates:
45+
46+
- **Firefox :** Added support for Firefox-133, and Firefox-134, enabling testing on the latest versions
47+
- **Edge :** Updated to Edge-132 for compatibility and stability enhancements.
48+
- **Edge Beta** : Released 133.0.3065.19 for beta testing
49+
- **Chrome :** Upgraded to Chrome-132 to include the newest features and security updates.
50+
51+
These updates ensure broader coverage for cross-browser testing and improve test stability across the latest browser versions
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
---
2+
id: hyperexecute-release-notes-2-7-1
3+
title: Version 2.7.1
4+
hide_title: false
5+
sidebar_label: Version 2.7.1
6+
description: Version 2.7.1
7+
keywords:
8+
- LambdaTest Hyperexecute
9+
- LambdaTest Hyperexecute help
10+
- LambdaTest Hyperexecute documentation
11+
- FAQs
12+
url: https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-7-1/
13+
site_name: LambdaTest
14+
slug: hyperexecute-release-notes-2-7-1/
15+
---
16+
17+
import NewReleaseTag from '../src/component/newRelease.js';
18+
import EnhancementTag from '../src/component/enhancementTag';
19+
import BugFixTag from '../src/component/bugFixTag';
20+
21+
<script type="application/ld+json"
22+
dangerouslySetInnerHTML={{ __html: JSON.stringify({
23+
"@context": "https://schema.org",
24+
"@type": "BreadcrumbList",
25+
"itemListElement": [{
26+
"@type": "ListItem",
27+
"position": 1,
28+
"name": "Home",
29+
"item": "https://www.lambdatest.com"
30+
},{
31+
"@type": "ListItem",
32+
"position": 2,
33+
"name": "Support",
34+
"item": "https://www.lambdatest.com/support/docs/"
35+
},{
36+
"@type": "ListItem",
37+
"position": 3,
38+
"name": "Version",
39+
"item": "https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-7-1/"
40+
}]
41+
})
42+
}}
43+
></script>
44+
## Artifact Extraction on Job Abortion
45+
- Artifacts will now be extracted even if a job is aborted in the middle of a test.
46+
- This ensures that partial test results and logs are still available for review, improving debugging and post-test analysis.
47+
48+
49+
## `afterEachScenario` Flag for Test Cleanup
50+
- Introduced the `afterEachScenario` flag to automate post-test scenario tasks. This flag is useful for cleanup activities such as clearing cookies, resetting databases, or capturing logs.
51+
- Commands or scripts listed under this flag will execute sequentially after each test scenario, ensuring test isolation and consistency.
52+
53+
```yaml
54+
afterEachScenario:
55+
- echo "Running a script"
56+
- pwsh run.test
57+
```
58+
59+
> 📘 Refer to our detailed documentation for [`afterEachScenario`](https://www.lambdatest.com/support/docs/deep-dive-into-hyperexecute-yaml/#aftereachscenario) flag
60+
61+
## Role-Based Access Control (RBAC) for Projects
62+
63+
- Implemented RBAC to enhance project security and access management.
64+
- Users can now be assigned specific roles with defined permissions.
65+
66+
This feature improves security by ensuring that only authorized users can access or modify project settings and resources.
67+
68+
## UX Enhancements for Performance Testing Jobs
69+
- Improved UI/UX for managing and analyzing performance testing jobs.
70+
- Enhanced navigation and usability for a smoother experience.
71+
- Group-Wise Error View
72+
- Introduced an error grouping feature to help identify and troubleshoot issues efficiently.
73+
- Errors are now categorized for better readability and quicker resolution.
74+
- Toggle Metrics: ms :left_right_arrow: s
75+
- Added the ability to toggle performance metrics between milliseconds (ms) and seconds (s).
76+
- Provides flexibility for analyzing test execution times in preferred units.
77+
78+
## Browser Version Updates
79+
80+
- **Edge Beta** : Released 133.3065.31 2.7.1 and 133.3065.39 2.7.2 for beta testing

docs/hyperexecute-release-notes.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,22 @@ HyperExecute is an AI Powered Test Orchestration Cloud Platform, enabling test a
4343

4444
## HyperExecute Releases
4545

46+
### CLI releases
47+
#### January, 2025
48+
| Release Number | Release Date |
49+
|----------------|--------------|
50+
| [Version 0.2.249](/support/docs/hyperexecute-cli-release-notes-0-2-249) | January 13, 2025|
51+
4652
### 2025 releases
53+
#### February, 2025
54+
| Release Number | Release Date |
55+
|----------------|--------------|
56+
| [Version 2.7.1](support/docs/hyperexecute-release-notes-2-7-1) | February 03, 2025|
57+
4758
#### January, 2025
4859
| Release Number | Release Date |
4960
|----------------|--------------|
50-
| [Version 0.2.249](/support/docs/hyperexecute-cli-release-notes-0-2-249) | January 13, 2024|
61+
| [Version 2.7.0](support/docs/hyperexecute-release-notes-2-7-0) | January 27, 2025|
5162

5263
### 2024 releases
5364
#### December, 2024

sidebars.js

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ module.exports = {
825825
id: "hyperexecute-release-notes",
826826
},
827827
items: [
828-
// 2025 releases
828+
// CLI releases
829829
{
830830
type: "category",
831831
collapsed: true,
@@ -842,6 +842,30 @@ module.exports = {
842842
]
843843
},
844844

845+
{
846+
type: "category",
847+
collapsed: true,
848+
label: "2025 Releases",
849+
items: [
850+
{
851+
type: "category",
852+
collapsed: true,
853+
label: "February, 2025",
854+
items: [
855+
'hyperexecute-release-notes-2-7-1',
856+
]
857+
},
858+
{
859+
type: "category",
860+
collapsed: true,
861+
label: "January, 2025",
862+
items: [
863+
'hyperexecute-release-notes-2-7-0',
864+
]
865+
},
866+
]
867+
},
868+
845869
// 2024 releases
846870
{
847871
type: "category",

0 commit comments

Comments
 (0)