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

Release v3.1.0-beta.1 (#153)

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-03-25 07:40:37 +02:00 committed by GitHub
parent 0ab372502c
commit d7c22c8dc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 13 deletions

View File

@ -37,10 +37,6 @@ jobs:
displayName: Cache Yarn packages displayName: Cache Yarn packages
- script: make deps - script: make deps
displayName: Install dependencies displayName: Install dependencies
- script: make lint
displayName: Lint
- script: make test
displayName: Run tests
- script: make build - script: make build
displayName: Build displayName: Build
env: env:
@ -127,7 +123,7 @@ jobs:
sudo chown root:root / sudo chown root:root /
sudo apt-get update && sudo apt-get install -y snapd sudo apt-get update && sudo apt-get install -y snapd
sudo snap install snapcraft --classic 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 snapcraft login --with snap_login
displayName: Setup snapcraft displayName: Setup snapcraft
condition: "and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))" condition: "and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))"

View File

@ -3,7 +3,7 @@
"version": "0.0.0", "version": "0.0.0",
"scripts": { "scripts": {
"dev": "yarn extract && webpack-cli --watch --cache --progress --output-path ../static/build/client/", "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'", "test": "jest --config './test/jest.config.js'",
"add-locale": "lingui add-locale", "add-locale": "lingui add-locale",
"extract": "lingui extract --clean", "extract": "lingui extract --clean",

View File

@ -6,8 +6,8 @@
"email": "info@lakendlabs.com" "email": "info@lakendlabs.com"
}, },
"copyright": "© 2020, Lakend Labs, Inc.", "copyright": "© 2020, Lakend Labs, Inc.",
"description": "The Smart Kubernetes Dashboard", "description": "The Kubernetes IDE",
"version": "3.1.0-beta.0", "version": "3.1.0-beta.1",
"main": "main.ts", "main": "main.ts",
"config": { "config": {
"bundledKubectlVersion": "1.17.3" "bundledKubectlVersion": "1.17.3"
@ -60,10 +60,6 @@
"nsis" "nsis"
], ],
"extraResources": [ "extraResources": [
{
"from": "binaries/server/win32/lens-server-ia32.exe",
"to": "./lens-server-ia32.exe"
},
{ {
"from": "binaries/client/windows/x64/kubectl.exe", "from": "binaries/client/windows/x64/kubectl.exe",
"to": "./x64/kubectl.exe" "to": "./x64/kubectl.exe"

View File

@ -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! 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 - Fix an issue with bundled kubectl