Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 6.5.2 #7805

Merged
merged 2 commits into from
May 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions open-lens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"productName": "OpenLens",
"description": "OpenLens - Open Source IDE for Kubernetes",
"homepage": "https://github.com/lensapp/lens",
"version": "6.5.1",
"version": "6.5.2",
"repository": {
"type": "git",
"url": "git+https://github.com/lensapp/lens.git"
Expand Down Expand Up @@ -184,15 +184,15 @@
"@k8slens/application-for-electron-main": "^6.5.0",
"@k8slens/button": "^1.0.0",
"@k8slens/cluster-settings": "^6.5.0",
"@k8slens/core": "^6.5.1",
"@k8slens/core": "^6.5.2",
"@k8slens/ensure-binaries": "^6.5.0",
"@k8slens/error-boundary": "^1.0.0",
"@k8slens/event-emitter": "^1.0.0",
"@k8slens/feature-core": "^6.5.0",
"@k8slens/keyboard-shortcuts": "^1.0.0",
"@k8slens/kube-object": "^1.0.0",
"@k8slens/kubectl-versions": "^1.0.0",
"@k8slens/legacy-extension-example": "^1.0.1",
"@k8slens/legacy-extension-example": "^1.0.2",
"@k8slens/legacy-extensions": "^1.0.0",
"@k8slens/legacy-global-di": "^1.0.0",
"@k8slens/list-layout": "^1.0.0",
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"productName": "",
"description": "Lens Desktop Core",
"homepage": "https://github.com/lensapp/lens",
"version": "6.5.1",
"version": "6.5.2",
"repository": {
"type": "git",
"url": "git+https://github.com/lensapp/lens.git"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { getInjectable } from "@ogre-tools/injectable";
import { action, toJS } from "mobx";
import createPersistentStorageInjectable from "../../../../common/persistent-storage/create.injectable";
import persistentStorageMigrationsInjectable from "../../../../common/persistent-storage/migrations.injectable";
import storageMigrationVersionInjectable from "../../../../common/persistent-storage/storage-migration-version.injectable";
import { enabledExtensionsMigrationDeclarationInjectionToken } from "./migrations";
import type { LensExtensionState } from "./state.injectable";
import enabledExtensionsStateInjectable from "./state.injectable";
Expand All @@ -30,7 +29,7 @@ const enabledExtensionsPersistentStorageInjectable = getInjectable({
toJSON: () => ({
extensions: [...toJS(state)],
}),
projectVersion: di.inject(storageMigrationVersionInjectable, enabledExtensionsMigrationDeclarationInjectionToken),
projectVersion: "6.5.0", // temporary fix for #7784, otherwise calculated wrong on the renderer process
migrations: di.inject(persistentStorageMigrationsInjectable, enabledExtensionsMigrationDeclarationInjectionToken),
});
},
Expand Down
4 changes: 2 additions & 2 deletions packages/extension-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@k8slens/extensions",
"productName": "OpenLens extensions",
"description": "OpenLens - Open Source Kubernetes IDE: extensions",
"version": "6.5.1",
"version": "6.5.2",
"copyright": "© 2022 OpenLens Authors",
"license": "MIT",
"main": "dist/extension-api.js",
Expand All @@ -25,7 +25,7 @@
"clean": "rimraf dist/"
},
"dependencies": {
"@k8slens/core": "6.5.1"
"@k8slens/core": "6.5.2"
},
"devDependencies": {
"@types/node": "^16.18.25",
Expand Down
4 changes: 2 additions & 2 deletions packages/legacy-extension-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@k8slens/legacy-extension-example",
"private": false,
"description": "An example bundled Lens extensions using the v1 API",
"version": "1.0.1",
"version": "1.0.2",
"type": "commonjs",
"files": [
"dist"
Expand Down Expand Up @@ -36,7 +36,7 @@
"lint:fix": "lens-lint --fix"
},
"devDependencies": {
"@k8slens/extensions": "^6.5.1",
"@k8slens/extensions": "^6.5.2",
"@types/node": "^16.18.25",
"typescript": "^4.9.5",
"webpack": "^5.81.0",
Expand Down