Skip to content

Commit

Permalink
Release v3.1.0-beta.1 (#153)
Browse files Browse the repository at this point in the history
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
  • Loading branch information
jakolehm authored Mar 25, 2020
1 parent 0ab3725 commit d7c22c8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
6 changes: 1 addition & 5 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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/'))"
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 2 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
9 changes: 8 additions & 1 deletion static/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d7c22c8

Please # to comment.