Skip to content

Commit

Permalink
Zowe Suite v2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored Mar 2, 2023
2 parents a60ce3b + c553292 commit cd43a5c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: '[Prep 3] Setup Node'
uses: actions/setup-node@v2
with:
node-version: 10.24.1
node-version: 16.15.0

- name: '[Prep 4] Setup jFrog CLI'
uses: jfrog/setup-jfrog-cli@v2
Expand All @@ -69,6 +69,7 @@ jobs:
github-email: ${{ secrets.ZOWE_ROBOT_EMAIL }}
github-branch: ${{ github.event.inputs.BRANCH_NAME }}
release: ${{ github.event.inputs.PERFORM_RELEASE }}
plugin-version: ${{ github.event.inputs.BUILD_VERSION }}

- name: '[Prep 6] build'
uses: zowe-actions/zlux-builds/plugins/[email protected]/main
Expand All @@ -84,3 +85,9 @@ jobs:

- name: '[Prep 8] deploy '
uses: zowe-actions/zlux-builds/plugins/[email protected]/main

- name: '[Prep 9] Bump Staging Version '
if: ${{ github.event.inputs.PERFORM_RELEASE == 'true' && env.RELEASE == 'true' }}
uses: zowe-actions/zlux-builds/plugins/[email protected]/main
env:
GITHUB_TOKEN: ${{ secrets.ZOWE_ROBOT_TOKEN }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Bugfix: Set USS path to correct directory, when opening the directory or file in new browser tab respectively
- Added the feature to copy the line content and copy URL link to open a file at a specific line
- Bugfix: Getting 400 BAD REQUEST in browser when opening the file or dataset in a new browser tab
- Bugfix: When opening New File, editor keeps on using the earlier opened file and its model

## `3.0.0`

Expand Down
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: editor
id: org.zowe.editor
# Without the v
version: 3.0.0
version: 2.7.0
# Human readable component name
title: Editor
# Human readable component description
Expand Down
2 changes: 1 addition & 1 deletion pluginDefinition.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"identifier": "org.zowe.editor",
"apiVersion": "2.0.0",
"pluginVersion": "3.0.1",
"pluginVersion": "2.7.0",
"license": "EPL-2.0",
"author": "Zowe",
"homepage": "https://github.com/zowe/zlux-editor",
Expand Down
5 changes: 3 additions & 2 deletions webClient/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "org.zowe.editor.webclient",
"version": "3.0.1",
"version": "2.7.0",
"license": "EPL-2.0",
"scripts": {
"start": "export NODE_OPTIONS=--max_old_space_size=4096 || set NODE_OPTIONS=--max_old_space_size=4096 && webpack --config ./webpack.build.config.js --watch --progress",
"build": "export NODE_OPTIONS=--max_old_space_size=4096 || set NODE_OPTIONS=--max_old_space_size=4096 && webpack --config ./webpack.build.config.js --progress && node prune.js",
"lint": "tslint -c tslint.json \"./**/*.ts\""
"lint": "tslint -c tslint.json \"./**/*.ts\"",
"test": "exit 0"
},
"dependencies": {
"@angular/cdk": "~6.3.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -537,11 +537,10 @@ export class MonacoService implements OnDestroy {
}

generateUri(editorFile: ProjectStructure): string {
// have to use lowercase here!. This is uniquely identify the Editor Models
if(editorFile.isDataset){
return `inmemory://${editorFile.path.toLowerCase()}`;
} else{
return `inmemory://${editorFile.path.toLowerCase()}/${editorFile.name.toLowerCase()}`;
return `inmemory://${editorFile.name.toLowerCase()}/${editorFile.id}`;
}
}

Expand Down

0 comments on commit cd43a5c

Please sign in to comment.