Skip to content

Commit 23e4f5c

Browse files
Increase project version to 3.0.0
1 parent a8ea075 commit 23e4f5c

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

README.md

Lines changed: 3 additions & 12 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.7.0](https://atata.io/blog/2024/01/11/atata.configuration.json-2.7.0-released/)**
14+
**[What's new in v3.0.0](https://github.com/atata-framework/atata-configuration-json/releases/tag/v3.0.0)**
1515

1616
## Table of Contents
1717

@@ -386,8 +386,7 @@ with help of `{env:VarName}` template insertions.
386386

387387
"baseUrl": "string",
388388
"culture": "string", // For example: "en-US".
389-
"timeZone": "string", // For example: "UTC".
390-
"artifactsPath": "string",
389+
"artifactsPathTemplate": "string",
391390

392391
"defaultControlVisibility": "string", // Supports: "any" (default), "visible" and "invisible".
393392

@@ -425,7 +424,6 @@ with help of `{env:VarName}` template insertions.
425424
"useNUnitTestName": true,
426425
"useNUnitTestSuiteName": true,
427426
"useNUnitTestSuiteType": true,
428-
"onCleanUpAddDirectoryFilesToNUnitTestContext": "string",
429427
"useNUnitAggregateAssertionStrategy": true, // Indicates to use NUnitAggregateAssertionStrategy as the aggregate assertion strategy.
430428
"useNUnitWarningReportStrategy": true, // Indicates to use NUnitWarningReportStrategy as the strategy for warning assertion reporting.
431429
"useNUnitAssertionFailureReportStrategy": true, // Indicates to use NUnitAssertionFailureReportStrategy as the strategy for assertion failure reporting.
@@ -444,15 +442,8 @@ with help of `{env:VarName}` template insertions.
444442
}
445443
],
446444

447-
"screenshotConsumers": [ // Configures list of screenshot consumers.
448-
{
449-
"type": "file", // Supports: "file" and custom consumers registered via ScreenshotConsumerAliases.Register method.
450-
// Custom IScreenshotConsumer type can also be passed as a full type name, e.g.: "Namespace.Class, MyAssembly".
451-
"{{screenshotConsumerPropertyName}}": "value" // Any property of screenshot consumer, e.g.: "filePath", "fileName", "directoryPath".
452-
}
453-
],
454-
455445
"screenshots": { // Configures screenshots functionality.
446+
"fileNameTemplate": "string",
456447
"strategy": {
457448
"type": "webDriverViewport", // Supports: "webDriverViewport", "webDriverFullPage", "cdpFullPage", "fullPageOrViewport",
458449
// and name of custom type implementing "Atata.IScreenshotTakeStrategy".

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>3.0.0-beta.1</Version>
7+
<Version>3.0.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></PackageReleaseNotes>
24+
<PackageReleaseNotes>https://github.com/atata-framework/atata-configuration-json/releases/tag/v3.0.0</PackageReleaseNotes>
2525
<PackageProjectUrl>https://github.com/atata-framework/atata-configuration-json</PackageProjectUrl>
2626
</PropertyGroup>
2727

0 commit comments

Comments
 (0)