diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 0075edfb26b5..05d7117e199e 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -37,10 +37,6 @@ jobs: displayName: Cache Yarn packages - script: make deps displayName: Install dependencies - - script: make lint - displayName: Lint - - script: make test - displayName: Run tests - script: make build displayName: Build env: @@ -127,7 +123,7 @@ jobs: sudo chown root:root / sudo apt-get update && sudo apt-get install -y snapd sudo snap install snapcraft --classic - echo -n "${SNAP_LOGIN}" | base64 -d > snap_login + echo -n "${SNAP_LOGIN}" | base64 -i -d > snap_login snapcraft login --with snap_login displayName: Setup snapcraft condition: "and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))" diff --git a/dashboard/package.json b/dashboard/package.json index 3cc7863c34cf..b63965cb9ab6 100644 --- a/dashboard/package.json +++ b/dashboard/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "scripts": { "dev": "yarn extract && webpack-cli --watch --cache --progress --output-path ../static/build/client/", - "build": "yarn extract && NODE_ENV=production webpack -p --cache --progress --output-path ../static/build/client/", + "build": "yarn extract && env NODE_ENV=production webpack -p --progress --output-path ../static/build/client/", "test": "jest --config './test/jest.config.js'", "add-locale": "lingui add-locale", "extract": "lingui extract --clean", diff --git a/package.json b/package.json index f2d84b039f93..de1bd63db730 100644 --- a/package.json +++ b/package.json @@ -6,8 +6,8 @@ "email": "info@lakendlabs.com" }, "copyright": "© 2020, Lakend Labs, Inc.", - "description": "The Smart Kubernetes Dashboard", - "version": "3.1.0-beta.0", + "description": "The Kubernetes IDE", + "version": "3.1.0-beta.1", "main": "main.ts", "config": { "bundledKubectlVersion": "1.17.3" @@ -60,10 +60,6 @@ "nsis" ], "extraResources": [ - { - "from": "binaries/server/win32/lens-server-ia32.exe", - "to": "./lens-server-ia32.exe" - }, { "from": "binaries/client/windows/x64/kubectl.exe", "to": "./x64/kubectl.exe" diff --git a/static/RELEASE_NOTES.md b/static/RELEASE_NOTES.md index bf878a393c65..138099917171 100644 --- a/static/RELEASE_NOTES.md +++ b/static/RELEASE_NOTES.md @@ -2,7 +2,14 @@ Here you can find description of changes we've built into each release. While we try our best to make each upgrade automatic and as smooth as possible, there may be some cases where your might need to do something to ensure the application works smoothly. So please read through the release highlights! -## 3.0.1 (current version) +## 3.1.0-beta.1 (current version) + +- Support shell to windows pod (powershell) +- New icon +- Electron 6.1.9 +- Refactor dashboard server logic to electron main + +## 3.0.1 - Fix an issue with bundled kubectl