Skip to content

Commit caede08

Browse files
kashish2508guptakashish
andauthored
docs(playwrighttesting): 1.0.0-beta.3 release changes (Azure#47151)
* docs(playwrighttesting): 1.0.0-beta.3 release changes * removed unused changes * update * Update CHANGELOG.md * Update CHANGELOG.md * modified test --------- Co-authored-by: guptakashish <[email protected]>
1 parent 7764f8d commit caede08

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
# Release History
22

3-
## 1.0.0-beta.3 (Unreleased)
3+
## 1.0.0-beta.3 (2024-11-18)
44

55
### Features Added
66

7-
### Breaking Changes
7+
- Added a runName field which allows customers to customize the display name when using the reporting feature.
8+
- Added stacktrace into error list.
89

910
### Bugs Fixed
1011

12+
- Fixed a bug where the upload buffer and upload file methods were not awaited, which sometimes resulted in 404 errors in the web application.
13+
- Fixed a bug where the authentication error occurred when the scalable scenario was disabled in Playwright testing.
14+
- Fixed a bug where the GetConnectOptionsAsync method did not use the runsetting defaults in Playwright testing.
15+
1116
### Other Changes
1217

18+
- Populated NumberOfTestWorkers from runsettings.
19+
1320
## 1.0.0-beta.2 (2024-11-05)
1421

1522
### Features Added

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
# Release History
22

3-
## 1.0.0-beta.3 (Unreleased)
3+
## 1.0.0-beta.3 (2024-11-18)
44

55
### Features Added
66

7-
### Breaking Changes
7+
- Added a runName field which allows customers to customize the display name when using the reporting feature.
8+
- Added stacktrace into error list.
89

910
### Bugs Fixed
1011

12+
- Fixed a bug where the upload buffer and upload file methods were not awaited, which sometimes resulted in 404 errors in the web application.
13+
- Fixed a bug where the authentication error occurred when the scalable scenario was disabled in Playwright testing.
14+
- Fixed a bug where the GetConnectOptionsAsync method did not use the runsetting defaults in Playwright testing.
15+
1116
### Other Changes
1217

18+
- Populated NumberOfTestWorkers from runsettings.
19+
1320
## 1.0.0-beta.2 (2024-11-05)
1421

1522
### Features Added

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/src/Processor/DataProcessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public TestRunDto GetTestRun()
6767
TestType = "WebTest",
6868
TestSdkLanguage = "CSHARP",
6969
TestFramework = new TestFramework() { Name = "PLAYWRIGHT", RunnerName = "NUNIT", Version = "3.1" }, // TODO fetch runner name MSTest/Nunit
70-
ReporterPackageVersion = "1.0.0-beta.1",
70+
ReporterPackageVersion = "1.0.0-beta.3",
7171
Shards = new Shard() { Total = 1 }
7272
}
7373
};

sdk/playwrighttesting/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/tests/Processor/DataProcessorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public void GetTestRun_ReturnsTestRunDto()
6565
Assert.AreEqual("PLAYWRIGHT", result.TestRunConfig!.TestFramework!.Name);
6666
Assert.AreEqual("NUNIT", result.TestRunConfig!.TestFramework!.RunnerName);
6767
Assert.AreEqual("3.1", result.TestRunConfig!.TestFramework!.Version);
68-
Assert.AreEqual("1.0.0-beta.1", result.TestRunConfig!.ReporterPackageVersion);
68+
Assert.AreEqual("1.0.0-beta.3", result.TestRunConfig!.ReporterPackageVersion);
6969
Assert.IsNotNull(result.TestRunConfig!.Shards);
7070
Assert.AreEqual(1, result.TestRunConfig!.Shards!.Total);
7171
}

0 commit comments

Comments
 (0)