1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Release 6.1.1 (#6285)

Co-authored-by: Juho Heikka <juho.heikka@gmail.com>
This commit is contained in:
Sebastian Malton 2022-09-21 15:12:50 +02:00 committed by GitHub
parent ba5fe2c61e
commit aa4a5012f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 7 deletions

View File

@ -3,7 +3,7 @@
"productName": "OpenLens", "productName": "OpenLens",
"description": "OpenLens - Open Source IDE for Kubernetes", "description": "OpenLens - Open Source IDE for Kubernetes",
"homepage": "https://github.com/lensapp/lens", "homepage": "https://github.com/lensapp/lens",
"version": "6.1.0", "version": "6.1.1",
"main": "static/build/main.js", "main": "static/build/main.js",
"copyright": "© 2022 OpenLens Authors", "copyright": "© 2022 OpenLens Authors",
"license": "MIT", "license": "MIT",

View File

@ -104,11 +104,6 @@ const logs = [
"get-logs", "get-logs",
]; ];
const resourceEditor = [
"create-edit-resource-tab",
"clear-edit-resource-tab",
];
const telemetryWhiteListForFunctionsInjectable = getInjectable({ const telemetryWhiteListForFunctionsInjectable = getInjectable({
id: "telemetry-white-list-for-functions", id: "telemetry-white-list-for-functions",
instantiate: () => [ instantiate: () => [
@ -120,7 +115,6 @@ const telemetryWhiteListForFunctionsInjectable = getInjectable({
...uiInteraction, ...uiInteraction,
...terminal, ...terminal,
...logs, ...logs,
...resourceEditor,
], ],
decorable: false, decorable: false,
}); });