Release/v5.2.1 (#3819)
* Use PATCH verb to scale deployments and statefulsets (#3744) Signed-off-by:Lauri Nevala <lauri.nevala@gmail.com> Signed-off-by:
Jim Ehrismann <jehrismann@mirantis.com> * Stop Sentry from capturing console.error and logger.error (#3785) Signed-off-by:
Hung-Han (Henry) Chen <chenhungh@gmail.com> Signed-off-by:
Jim Ehrismann <jehrismann@mirantis.com> * Sidebar cluster avatar (#3765) Signed-off-by:
Jim Ehrismann <jehrismann@mirantis.com> * Second click on list item closes the details view (#3809) Signed-off-by:
Juho Heikka <juho.heikka@gmail.com> Signed-off-by:
Jim Ehrismann <jehrismann@mirantis.com> * Fix fallback to bundled kubectl (#3812) Signed-off-by:
Jim Ehrismann <jehrismann@mirantis.com> * Fix cluster's accessibleNamespaces being reset on restarting Lens (#3817) Signed-off-by:
Sebastian Malton <sebastian@malton.name> Signed-off-by:
Jim Ehrismann <jehrismann@mirantis.com> * Don't change permissions when deleting a cluster (#3798) Sign...
Showing
+189 -91
... | ... | @@ -3,7 +3,7 @@ |
"productName": "OpenLens", | ||
"description": "OpenLens - Open Source IDE for Kubernetes", | ||
"homepage": "https://github.com/lensapp/lens", | ||
"version": "5.2.0", | ||
"version": "5.2.1", | ||
"main": "static/build/main.js", | ||
"copyright": "© 2021 OpenLens Authors", | ||
"license": "MIT", | ||
... | ... | @@ -185,6 +185,7 @@ |
"@kubernetes/client-node": "^0.15.1", | ||
"@sentry/electron": "^2.5.0", | ||
"@sentry/integrations": "^6.10.0", | ||
"@types/which": "^2.0.1", | ||
"abort-controller": "^3.0.0", | ||
"array-move": "^3.0.1", | ||
"auto-bind": "^4.0.0", | ||
... | ... | @@ -193,7 +194,6 @@ |
"byline": "^5.0.0", | ||
"chalk": "^4.1.0", | ||
"chokidar": "^3.4.3", | ||
"command-exists": "1.2.9", | ||
"conf": "^7.0.1", | ||
"crypto-js": "^4.1.1", | ||
"electron-devtools-installer": "^3.2.0", | ||
... | ... | @@ -246,6 +246,7 @@ |
"tempy": "^0.5.0", | ||
"url-parse": "^1.5.1", | ||
"uuid": "^8.3.2", | ||
"which": "^2.0.2", | ||
"win-ca": "^3.2.0", | ||
"winston": "^3.3.3", | ||
"winston-console-format": "^1.0.8", | ||
... | ... | @@ -347,7 +348,6 @@ |
"jest-canvas-mock": "^2.3.1", | ||
"jest-fetch-mock": "^3.0.3", | ||
"jest-mock-extended": "^1.0.16", | ||
"json-to-pretty-yaml": "^1.2.2", | ||
"make-plural": "^6.2.2", | ||
"mini-css-extract-plugin": "^1.6.0", | ||
"node-gyp": "7.1.2", | ||
... | ... |
Please register or sign in to comment