Skip to content

Commit 3e7d530

Browse files
authored
Merge pull request #723 from Lombiq/issue/OSOE-1250
OSOE-1250: Update dependencies: Edge 145.0.3800.97 → 146.0.3856.62, Chrome 146.0.7680.72 → 146.0.7680.153, smtp4dev 3.14.0 → 3.15.0
2 parents 5f96104 + 918070f commit 3e7d530

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

Lombiq.Tests.UI/Services/WebDriverFactory.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static Task<Func<ChromeDriver>> CreateChromeDriverAsync(BrowserConfigurat
3737
// is updated automatically by Renovate.
3838
// If anything on this line is changed, be sure to adjust the regex in the renovate.json5 config file in the
3939
// root too.
40-
chromeConfig.Options.BrowserVersion = "146.0.7680.72";
40+
chromeConfig.Options.BrowserVersion = "146.0.7680.153";
4141

4242
configuration.BrowserOptionsConfigurator?.Invoke(chromeConfig.Options);
4343

@@ -68,17 +68,17 @@ public static Task<Func<EdgeDriver>> CreateEdgeDriverAsync(BrowserConfiguration
6868
// root too.
6969
if (OperatingSystem.IsLinux())
7070
{
71-
var linuxEdgeVersion = "145.0.3800.97";
71+
var linuxEdgeVersion = "146.0.3856.62";
7272
options.BrowserVersion = linuxEdgeVersion;
7373
}
7474
else if (OperatingSystem.IsWindows())
7575
{
76-
var windowsEdgeVersion = "145.0.3800.97";
76+
var windowsEdgeVersion = "146.0.3856.62";
7777
options.BrowserVersion = windowsEdgeVersion;
7878
}
7979
else if (!OperatingSystem.IsMacOS())
8080
{
81-
var macOsEdgeVersion = "145.0.3800.97";
81+
var macOsEdgeVersion = "146.0.3856.62";
8282
options.BrowserVersion = macOsEdgeVersion;
8383
}
8484

Lombiq.Tests.UI/ui-testing-toolkit.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ async function runTest(test, configureOptions = null) {
409409
// updated automatically by Renovate.
410410
// If anything on this line is changed, be sure to adjust the regex in the renovate.json5 config file in the root
411411
// too.
412-
options.setBrowserVersion('146.0.7680.72');
412+
options.setBrowserVersion('146.0.7680.153');
413413

414414
console.log(`Using Chrome version ${options.getBrowserVersion()}.`);
415415

renovate.json5

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
prBodyNotes: [
5959
'For details about the `rnwood.smtp4dev` release, see [its release notes](https://github.com/rnwood/smtp4dev/releases/tag/{{newVersion}}).',
6060
],
61+
// smtp4dev 3.15.0 switched from net8.0 to net10.0, breaking dotnet tool restore on .NET 8 SDK (CI uses
62+
// 8.0.x). The DotnetToolSettings.xml is only under tools/net10.0/any/ so the .NET 8 SDK can't find it.
63+
// Re-enable once the project and CI migrate to .NET 10.
64+
enabled: false,
6165
},
6266
{
6367
groupName: 'ZAP',

0 commit comments

Comments
 (0)