File tree Expand file tree Collapse file tree 4 files changed +47
-8
lines changed Expand file tree Collapse file tree 4 files changed +47
-8
lines changed Original file line number Diff line number Diff line change 1- ## Changelog (Current version: 1.1.10 )
1+ ## Changelog (Current version: 1.1.11 )
22
33-----------------
44
5+ ## 1.1.11 (2018 Feb 09)
6+
7+ ### Release Notes
8+
9+ * Fix stack selector if project type is “other”
10+ * Secrets are now required to have unique key and non-empty value
11+ * Secrets’ values are now hidden by default, loading & showing only when “view” is selected
12+ * Secrets and uploaded files can now be “protected”: nor their key, nor their value, nor any of their options are editable if they are protected
13+
14+ ### Install or upgrade
15+
16+ To install this version, run the following commands (in a bash shell):
17+
18+ ```
19+ bitrise plugin install --source https://github.com/bitrise-io/bitrise-workflow-editor.git --version 1.1.11
20+ ```
21+
22+ To update the already installed plugin to the latest version:
23+
24+ ```
25+ bitrise plugin update workflow-editor
26+ ```
27+
28+ That's all, you're ready to go!
29+
30+ To run the workflow editor plugin call:
31+
32+ ```
33+ bitrise :workflow-editor
34+ ```
35+
36+ ### Release Commits - 1.1.10 -> 1.1.11
37+
38+ * [ 554556a] Norbert Kovach - Encrypted secrets (#253 ) (2018 Feb 09)
39+ * [ f94c3b6] Norbert Kovach - Handle protected state of app files (#255 ) (2018 Feb 09)
40+ * [ 86196f9] erosdome - Expect unique secrets (#252 ) (2018 Feb 01)
41+ * [ 7f7dccf] Norbert Kovach - fix stack selector - it was empty in case of project type "other" (#249 ) (2018 Feb 01)
42+
43+
544## 1.1.10 (2018 Jan 26)
645
746### Release Notes
@@ -1776,4 +1815,4 @@ bitrise :workflow-editor
17761815
17771816-----------------
17781817
1779- Updated: 2018 Jan 26
1818+ Updated: 2018 Feb 09
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ name: workflow-editor
22description : |-
33 Bitrise Workflow Editor.
44executable :
5- osx : https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.1.10 /workflow-editor-Darwin-x86_64
6- linux : https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.1.10 /workflow-editor-Linux-x86_64
5+ osx : https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.1.11 /workflow-editor-Darwin-x86_64
6+ linux : https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.1.11 /workflow-editor-Linux-x86_64
77requirements :
88- tool : bitrise
99 min_version : 1.12.0
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
33
44app :
55 envs :
6- - RELEASE_VERSION : 1.1.10
6+ - RELEASE_VERSION : 1.1.11
77 - BIN_NAME : workflow-editor
8-
8+
99 - PORT : " 1234"
1010 - MIDDLEMAN_SERVER_PORT : " 4567"
1111 - MODE : " CLI"
@@ -292,4 +292,4 @@ workflows:
292292
293293 envman add --key LINUX_DEPLOY_PATH --value $DEPLOY_PATH
294294 cp $DEPLOY_PATH $BITRISE_DEPLOY_DIR/$BIN_NAME-$OS-$ARCH
295- echo " Copy final Linux binary to: $BITRISE_DEPLOY_DIR/$BIN_NAME-$OS-$ARCH"
295+ echo " Copy final Linux binary to: $BITRISE_DEPLOY_DIR/$BIN_NAME-$OS-$ARCH"
Original file line number Diff line number Diff line change 11package version
22
33// VERSION ...
4- const VERSION = "1.1.10 "
4+ const VERSION = "1.1.11 "
You can’t perform that action at this time.
0 commit comments