From 8b167cc03c53bb93467ba0e2652ae34dbb2d3f84 Mon Sep 17 00:00:00 2001 From: sf-v Date: Thu, 14 Apr 2022 13:14:38 -0700 Subject: [PATCH] chore(release): publish v6.1.3 --- CHANGELOG.md | 12 ++++++++-- docs/package.json | 2 +- lerna.json | 2 +- packages/@best/agent-frontend/package.json | 4 ++-- packages/@best/agent-hub/package.json | 10 ++++---- packages/@best/agent/package.json | 10 ++++---- packages/@best/analyzer/package.json | 2 +- packages/@best/api-db/package.json | 2 +- packages/@best/builder/package.json | 6 ++--- packages/@best/cli/package.json | 24 +++++++++---------- packages/@best/compare/package.json | 4 ++-- packages/@best/config/package.json | 6 ++--- packages/@best/console-stream/package.json | 4 ++-- packages/@best/frontend/package.json | 12 +++++----- .../@best/github-integration/package.json | 8 +++---- packages/@best/regex-util/package.json | 2 +- packages/@best/runner-abstract/package.json | 4 ++-- packages/@best/runner-headless/package.json | 6 ++--- packages/@best/runner-remote/package.json | 8 +++---- .../@best/runner-webdriverio/package.json | 6 ++--- packages/@best/runner/package.json | 8 +++---- packages/@best/runtime/package.json | 2 +- packages/@best/shared/package.json | 2 +- packages/@best/store-aws/package.json | 4 ++-- packages/@best/store-fs/package.json | 4 ++-- packages/@best/store/package.json | 2 +- packages/@best/types/package.json | 2 +- packages/@best/utils/package.json | 2 +- packages/best-benchmarks/package.json | 4 ++-- packages/best/package.json | 8 +++---- packages/lwc-example/package.json | 4 ++-- 31 files changed, 92 insertions(+), 84 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 399c9040..d9fe355e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ -# [6.1.2](https://github.com/salesforce/best/compare/v6.1.1...v6.1.2) (2022-04-07) +# [6.1.3](https://github.com/salesforce/best/compare/v6.1.2...v6.1.3) (2022-04-14) + ### Bug Fixes -Update various dependencies. +* make front-end show by default the results for the last 2 months ([fb6f9ff](https://github.com/salesforce/best/commit/fb6f9ffabdb66f36f7cce76e7584914225414c92)) +* set the correct state for the agent when a client disconnects ([382bcf3](https://github.com/salesforce/best/commit/382bcf36c97354bc84c10f71a262f58e13a5b84d)) + + + +## [6.1.2](https://github.com/salesforce/best/compare/v6.1.1...v6.1.2) (2022-04-07) + + ## [6.1.1](https://github.com/salesforce/best/compare/v6.1.0...v6.1.1) (2022-04-07) diff --git a/docs/package.json b/docs/package.json index 642fe6da..8a456862 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,7 +1,7 @@ { "name": "@best/docs", "license": "MIT", - "version": "6.1.2", + "version": "6.1.3", "private": true, "scripts": { "test:links": "node scripts/verify-doc-links", diff --git a/lerna.json b/lerna.json index 4cb8a443..fd22c28f 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "6.1.2", + "version": "6.1.3", "exact": true, "npmClient": "yarn", "useWorkspaces": true, diff --git a/packages/@best/agent-frontend/package.json b/packages/@best/agent-frontend/package.json index aaf4ddbf..9804e75e 100644 --- a/packages/@best/agent-frontend/package.json +++ b/packages/@best/agent-frontend/package.json @@ -4,10 +4,10 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "main": "build/server/index.js", "dependencies": { - "@best/shared": "6.1.2", + "@best/shared": "6.1.3", "express": "4.17.3", "lwc-services": "~1.3.12", "socket.io": "~2.2.0", diff --git a/packages/@best/agent-hub/package.json b/packages/@best/agent-hub/package.json index 81c6a008..ee1f2c5e 100644 --- a/packages/@best/agent-hub/package.json +++ b/packages/@best/agent-hub/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Hub", "keywords": [ "Best", @@ -13,10 +13,10 @@ ], "main": "build/cli/index.js", "dependencies": { - "@best/agent": "6.1.2", - "@best/agent-frontend": "6.1.2", - "@best/runner-remote": "6.1.2", - "@best/utils": "6.1.2", + "@best/agent": "6.1.3", + "@best/agent-frontend": "6.1.3", + "@best/runner-remote": "6.1.3", + "@best/utils": "6.1.3", "express": "4.17.3", "socket.io": "~2.2.0", "socket.io-file": "~2.0.31", diff --git a/packages/@best/agent/package.json b/packages/@best/agent/package.json index feaa825c..db554951 100644 --- a/packages/@best/agent/package.json +++ b/packages/@best/agent/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Agent", "keywords": [ "Best", @@ -12,10 +12,10 @@ ], "main": "build/cli/index.js", "dependencies": { - "@best/agent-frontend": "6.1.2", - "@best/runner": "6.1.2", - "@best/shared": "6.1.2", - "@best/utils": "6.1.2", + "@best/agent-frontend": "6.1.3", + "@best/runner": "6.1.3", + "@best/shared": "6.1.3", + "@best/utils": "6.1.3", "express": "4.17.3", "mime": "3.0.0", "socket.io": "~2.2.0", diff --git a/packages/@best/analyzer/package.json b/packages/@best/analyzer/package.json index ae986568..0bd6c567 100644 --- a/packages/@best/analyzer/package.json +++ b/packages/@best/analyzer/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Analyzer", "keywords": [ "Best", diff --git a/packages/@best/api-db/package.json b/packages/@best/api-db/package.json index f8ff71a1..25d87e9f 100644 --- a/packages/@best/api-db/package.json +++ b/packages/@best/api-db/package.json @@ -5,7 +5,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "dependencies": { "https-proxy-agent": "^5.0.0", "pg": "^8.4.1", diff --git a/packages/@best/builder/package.json b/packages/@best/builder/package.json index c512542e..8f717074 100644 --- a/packages/@best/builder/package.json +++ b/packages/@best/builder/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best build package", "keywords": [ "Best", @@ -13,8 +13,8 @@ "main": "build/index.js", "types": "build/index.d.ts", "dependencies": { - "@best/runtime": "6.1.2", - "@best/utils": "6.1.2", + "@best/runtime": "6.1.3", + "@best/utils": "6.1.3", "mkdirp": "~0.5.1", "ncp": "^2.0.0", "rimraf": "^2.6.2", diff --git a/packages/@best/cli/package.json b/packages/@best/cli/package.json index 4da574b3..1c41980a 100644 --- a/packages/@best/cli/package.json +++ b/packages/@best/cli/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best CLI", "keywords": [ "Best", @@ -15,17 +15,17 @@ }, "main": "build/index.js", "dependencies": { - "@best/analyzer": "6.1.2", - "@best/api-db": "6.1.2", - "@best/builder": "6.1.2", - "@best/compare": "6.1.2", - "@best/config": "6.1.2", - "@best/console-stream": "6.1.2", - "@best/github-integration": "6.1.2", - "@best/runner": "6.1.2", - "@best/store": "6.1.2", - "@best/store-fs": "6.1.2", - "@best/utils": "6.1.2", + "@best/analyzer": "6.1.3", + "@best/api-db": "6.1.3", + "@best/builder": "6.1.3", + "@best/compare": "6.1.3", + "@best/config": "6.1.3", + "@best/console-stream": "6.1.3", + "@best/github-integration": "6.1.3", + "@best/runner": "6.1.3", + "@best/store": "6.1.3", + "@best/store-fs": "6.1.3", + "@best/utils": "6.1.3", "asciichart": "1.5.7", "chalk": "~2.4.2", "cli-table3": "0.6.1", diff --git a/packages/@best/compare/package.json b/packages/@best/compare/package.json index 41be2aca..e71fd97b 100644 --- a/packages/@best/compare/package.json +++ b/packages/@best/compare/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Comparer", "keywords": [ "Best", @@ -12,7 +12,7 @@ ], "main": "build/index.js", "dependencies": { - "@best/analyzer": "6.1.2", + "@best/analyzer": "6.1.3", "chalk": "~2.4.2" }, "files": [ diff --git a/packages/@best/config/package.json b/packages/@best/config/package.json index ec213948..da15a72e 100644 --- a/packages/@best/config/package.json +++ b/packages/@best/config/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best config", "keywords": [ "Best", @@ -13,8 +13,8 @@ "main": "build/index.js", "types": "build/index.d.ts", "dependencies": { - "@best/regex-util": "6.1.2", - "@best/utils": "6.1.2", + "@best/regex-util": "6.1.3", + "@best/utils": "6.1.3", "chalk": "~2.4.2", "simple-git": "~1.113.0" }, diff --git a/packages/@best/console-stream/package.json b/packages/@best/console-stream/package.json index ff944eb6..0375de1d 100644 --- a/packages/@best/console-stream/package.json +++ b/packages/@best/console-stream/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best stdout stream wrapper", "keywords": [ "Best", @@ -13,7 +13,7 @@ "main": "build/index.js", "types": "build/index.d.ts", "dependencies": { - "@best/utils": "6.1.2", + "@best/utils": "6.1.3", "chalk": "~2.4.2" }, "files": [ diff --git a/packages/@best/frontend/package.json b/packages/@best/frontend/package.json index efb49067..04fdfc1d 100644 --- a/packages/@best/frontend/package.json +++ b/packages/@best/frontend/package.json @@ -4,15 +4,15 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "main": "build/index.js", "types": "build/index.d.ts", "dependencies": { - "@best/api-db": "6.1.2", - "@best/config": "6.1.2", - "@best/console-stream": "6.1.2", - "@best/github-integration": "6.1.2", - "@best/types": "6.1.2", + "@best/api-db": "6.1.3", + "@best/config": "6.1.3", + "@best/console-stream": "6.1.3", + "@best/github-integration": "6.1.3", + "@best/types": "6.1.3", "@lwc/compiler": "^1.0.0", "@lwc/engine": "^1.0.0", "@lwc/rollup-plugin": "^1.0.0", diff --git a/packages/@best/github-integration/package.json b/packages/@best/github-integration/package.json index 48210d15..db433e8d 100644 --- a/packages/@best/github-integration/package.json +++ b/packages/@best/github-integration/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Github Integration", "keywords": [ "Best", @@ -12,9 +12,9 @@ ], "main": "build/index.js", "dependencies": { - "@best/api-db": "6.1.2", - "@best/types": "6.1.2", - "@best/utils": "6.1.2", + "@best/api-db": "6.1.3", + "@best/types": "6.1.3", + "@best/utils": "6.1.3", "@octokit/rest": "^16.28.2", "base-64": "^0.1.0", "expand-tilde": "~2.0.2", diff --git a/packages/@best/regex-util/package.json b/packages/@best/regex-util/package.json index fde08085..29228cd3 100644 --- a/packages/@best/regex-util/package.json +++ b/packages/@best/regex-util/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Regex util", "keywords": [ "Best", diff --git a/packages/@best/runner-abstract/package.json b/packages/@best/runner-abstract/package.json index a4ee8476..63a4a654 100644 --- a/packages/@best/runner-abstract/package.json +++ b/packages/@best/runner-abstract/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Runner (Abstract)", "keywords": [ "Best", @@ -14,7 +14,7 @@ "main": "build/index.js", "types": "build/index.d.ts", "dependencies": { - "@best/utils": "6.1.2", + "@best/utils": "6.1.3", "express": "4.17.3" }, "files": [ diff --git a/packages/@best/runner-headless/package.json b/packages/@best/runner-headless/package.json index f247bf9d..a607759b 100644 --- a/packages/@best/runner-headless/package.json +++ b/packages/@best/runner-headless/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Runner (Headless)", "keywords": [ "Best", @@ -13,8 +13,8 @@ ], "main": "build/index.js", "dependencies": { - "@best/runner-abstract": "6.1.2", - "@best/types": "6.1.2", + "@best/runner-abstract": "6.1.3", + "@best/types": "6.1.3", "puppeteer": "13.5.1" }, "devDependencies": { diff --git a/packages/@best/runner-remote/package.json b/packages/@best/runner-remote/package.json index 8cd67563..bc4a7a8a 100644 --- a/packages/@best/runner-remote/package.json +++ b/packages/@best/runner-remote/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Runner (Headless)", "keywords": [ "Best", @@ -13,9 +13,9 @@ ], "main": "build/index.js", "dependencies": { - "@best/console-stream": "6.1.2", - "@best/runner-abstract": "6.1.2", - "@best/shared": "6.1.2", + "@best/console-stream": "6.1.3", + "@best/runner-abstract": "6.1.3", + "@best/shared": "6.1.3", "debug": "^4.1.1", "socket.io-client": "~2.2.0", "tar": "6.1.11" diff --git a/packages/@best/runner-webdriverio/package.json b/packages/@best/runner-webdriverio/package.json index ef2a1e7f..2b33a429 100644 --- a/packages/@best/runner-webdriverio/package.json +++ b/packages/@best/runner-webdriverio/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Runner (WebdriverIO)", "keywords": [ "Best", @@ -13,8 +13,8 @@ ], "main": "build/index.js", "dependencies": { - "@best/runner-abstract": "6.1.2", - "@best/types": "6.1.2", + "@best/runner-abstract": "6.1.3", + "@best/types": "6.1.3", "deepmerge": "^4.0.0", "webdriverio": "^5.13.2" }, diff --git a/packages/@best/runner/package.json b/packages/@best/runner/package.json index 06931f60..97b60e2e 100644 --- a/packages/@best/runner/package.json +++ b/packages/@best/runner/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Runner", "keywords": [ "Best", @@ -13,9 +13,9 @@ "main": "build/index.js", "types": "build/index.d.ts", "dependencies": { - "@best/console-stream": "6.1.2", - "@best/runner-abstract": "6.1.2", - "@best/utils": "6.1.2", + "@best/console-stream": "6.1.3", + "@best/runner-abstract": "6.1.3", + "@best/utils": "6.1.3", "chalk": "~2.4.2" }, "files": [ diff --git a/packages/@best/runtime/package.json b/packages/@best/runtime/package.json index 69657856..8f7e08f5 100644 --- a/packages/@best/runtime/package.json +++ b/packages/@best/runtime/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Runtime", "keywords": [ "Best", diff --git a/packages/@best/shared/package.json b/packages/@best/shared/package.json index 4e750760..9ed6a7a7 100644 --- a/packages/@best/shared/package.json +++ b/packages/@best/shared/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Shared", "keywords": [ "Best", diff --git a/packages/@best/store-aws/package.json b/packages/@best/store-aws/package.json index 74da3f6c..1b75137f 100644 --- a/packages/@best/store-aws/package.json +++ b/packages/@best/store-aws/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Store AWS", "keywords": [ "Best", @@ -12,7 +12,7 @@ ], "main": "build/index.js", "dependencies": { - "@best/types": "6.1.2", + "@best/types": "6.1.3", "aws-sdk": "2.1066.0", "chalk": "~2.4.2", "mime-types": "~2.1.24", diff --git a/packages/@best/store-fs/package.json b/packages/@best/store-fs/package.json index 52fcdb15..62c66328 100644 --- a/packages/@best/store-fs/package.json +++ b/packages/@best/store-fs/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Store - File System", "keywords": [ "Best", @@ -12,7 +12,7 @@ ], "main": "build/index.js", "dependencies": { - "@best/types": "6.1.2", + "@best/types": "6.1.3", "chalk": "~2.4.2", "globby": "~9.2.0" }, diff --git a/packages/@best/store/package.json b/packages/@best/store/package.json index d1225e9d..a21ffe38 100644 --- a/packages/@best/store/package.json +++ b/packages/@best/store/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Store", "keywords": [ "Best", diff --git a/packages/@best/types/package.json b/packages/@best/types/package.json index a327b415..c066f0d9 100644 --- a/packages/@best/types/package.json +++ b/packages/@best/types/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Types for Typescript", "keywords": [ "Best" diff --git a/packages/@best/utils/package.json b/packages/@best/utils/package.json index a391063e..60c5c9cb 100644 --- a/packages/@best/utils/package.json +++ b/packages/@best/utils/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best Utils", "keywords": [ "Best" diff --git a/packages/best-benchmarks/package.json b/packages/best-benchmarks/package.json index 06b5e67d..06ca46ef 100644 --- a/packages/best-benchmarks/package.json +++ b/packages/best-benchmarks/package.json @@ -1,13 +1,13 @@ { "name": "perf-benchmarks", "license": "MIT", - "version": "6.1.2", + "version": "6.1.3", "private": true, "scripts": { "start": "best", "remote": "best" }, "dependencies": { - "best": "6.1.2" + "best": "6.1.3" } } diff --git a/packages/best/package.json b/packages/best/package.json index 905a60a4..dc659a18 100644 --- a/packages/best/package.json +++ b/packages/best/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.1.2", + "version": "6.1.3", "description": "Best", "keywords": [ "Best", @@ -16,8 +16,8 @@ "best-agent-hub": "./bin/best-agent-hub.js" }, "dependencies": { - "@best/agent": "6.1.2", - "@best/agent-hub": "6.1.2", - "@best/cli": "6.1.2" + "@best/agent": "6.1.3", + "@best/agent-hub": "6.1.3", + "@best/cli": "6.1.3" } } diff --git a/packages/lwc-example/package.json b/packages/lwc-example/package.json index 2d980bb7..4956d997 100644 --- a/packages/lwc-example/package.json +++ b/packages/lwc-example/package.json @@ -1,7 +1,7 @@ { "name": "lwc-examples", "license": "MIT", - "version": "6.1.2", + "version": "6.1.3", "private": true, "scripts": { "start": "best", @@ -10,7 +10,7 @@ "dependencies": { "@lwc/engine": "~1.0.0", "@lwc/rollup-plugin": "~1.0.0", - "best": "6.1.2", + "best": "6.1.3", "rollup-plugin-replace": "~2.2.0" } }