diff --git a/CHANGELOG.md b/CHANGELOG.md index 148dcd2..8873fa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1] - 2020-11-20 + +### Added + +- Support for Edge Chromium +- Updated Enum for testOutputLevel and removed from schema to ignore validation +- Update Enum values for webBrowser + ## [0.3.0] - 2020-09-11 ### Fixed diff --git a/package.json b/package.json index eb9801e..59bbee6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@provartesting/provardx", "description": "A plugin for the Salesforce CLI to run provar testcases", - "version": "0.3.0", + "version": "0.3.1", "author": "Provar", "bugs": "https://github.com/ProvarTesting/provardx/issues", "dependencies": { diff --git a/src/utilities/DxPropertiesSchema.ts b/src/utilities/DxPropertiesSchema.ts index 7a58503..6dd4045 100644 --- a/src/utilities/DxPropertiesSchema.ts +++ b/src/utilities/DxPropertiesSchema.ts @@ -40,8 +40,7 @@ export const schema = { testOutputLevel: { description: 'Controls the amount of test output logged to the DX test log.', - type: 'string', - enum: ['SEVERE', 'WARNING', 'INFO', 'FINE', 'FINER', 'FINEST'] + type: 'string' }, pluginOutputlevel: { description: @@ -98,9 +97,10 @@ export const schema = { type: 'string', enum: [ 'Chrome', + 'SAFARI', 'Edge', + 'Edge_Legacy', 'Firefox', - 'SAFARI', 'IE', 'Chrome_Headless' ]