Skip to content

Commit 4ad9fc2

Browse files
Increase project version to 2.6.0
1 parent 3e7e20d commit 4ad9fc2

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ C#/.NET package for [Atata](https://github.com/atata-framework/atata) configurat
1111

1212
*The package targets .NET Standard 2.0, which supports .NET 5+, .NET Framework 4.6.1+ and .NET Core/Standard 2.0+.*
1313

14-
**[What's new in v2.5.0](https://atata.io/blog/2023/10/24/atata.configuration.json-2.5.0-released/)**
14+
**[What's new in v2.6.0](https://atata.io/blog/2023/12/06/atata.configuration.json-2.6.0-released/)**
1515

1616
## Table of Contents
1717

@@ -276,6 +276,8 @@ with help of `{env:VarName}` template insertions.
276276
"type": "chrome", // Supports: "remote", "chrome", "firefox", "internetexplorer", "safari", "edge" and custom mappers registered via DriverJsonMapperAliases.Register method.
277277
// Custom RemoteWebDriver type can also be passed as a full type name, e.g.: "Namespace.Class, MyAssembly".
278278
"alias": "custom_alias", // Use aliases when you have several drivers of the same type.
279+
"createRetries": 2, // Sets the count of possible driver creation retries in case exceptions occur during creation.
280+
"initialHealthCheck": false, // Sets a value indicating whether to execute an initial health check. Defaults to false.
279281
"remoteAddress": "http://127.0.0.1:8888/wd/hub", // Remote driver specific.
280282
"options": { // Configures driver options.
281283
"type": "chrome", // Remote driver specific.
@@ -431,7 +433,7 @@ with help of `{env:VarName}` template insertions.
431433
// and custom consumers registered via LogConsumerAliases.Register method.
432434
// Custom ILogConsumer type can also be passed as a full type name, e.g.: "Namespace.Class, MyAssembly".
433435
"minLevel": "info", // Supports: "trace", "debug", "info", "warn", "error", "fatal".
434-
"sectionFinish": true,
436+
"sectionEnd": "include", // Supports: "include", "includeForBlocks", "exclude".
435437
"messageNestingLevelIndent": "- ",
436438
"messageStartSectionPrefix": "> ",
437439
"messageEndSectionPrefix": "< ",

src/Atata.Configuration.Json/Atata.Configuration.Json.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>netstandard2.0</TargetFrameworks>
55
<LangVersion>12.0</LangVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
7-
<Version>2.5.0</Version>
7+
<Version>2.6.0</Version>
88
<Description>C#/.NET package for Atata configuration through JSON files.
99

1010
The package targets .NET Standard 2.0, which supports .NET 5+, .NET Framework 4.6.1+ and .NET Core/Standard 2.0+.
@@ -21,7 +21,7 @@ Features:
2121
<RepositoryUrl>https://github.com/atata-framework/atata-configuration-json</RepositoryUrl>
2222
<PackageId>Atata.Configuration.Json</PackageId>
2323
<PackageTags>atata automation testing test selenium webdriver browser configuration</PackageTags>
24-
<PackageReleaseNotes>https://atata.io/blog/2023/10/24/atata.configuration.json-2.5.0-released/</PackageReleaseNotes>
24+
<PackageReleaseNotes>https://atata.io/blog/2023/12/06/atata.configuration.json-2.6.0-released/</PackageReleaseNotes>
2525
<PackageProjectUrl>https://github.com/atata-framework/atata-configuration-json</PackageProjectUrl>
2626
</PropertyGroup>
2727

0 commit comments

Comments
 (0)