Skip to content

Commit

Permalink
Better error messages when exports or deployments fail.
Browse files Browse the repository at this point in the history
Do not fail if a dependency fails during export by always ignoring errors during exports.
Do continue on errors during deployment if a deployment fails due to an error.
Bump to version 0.12.4
  • Loading branch information
Codeneos committed Dec 9, 2019
1 parent 455499d commit 221af2d
Show file tree
Hide file tree
Showing 8 changed files with 406 additions and 122 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog Vlocity Salesforce Integration for VSCode


## [0.12.4] - 2019-12-19
- Report past and running operations in the new activity screen
- Better handling of export errors by setting ignoreAllErrors property which prevents exports from failing when a dependency fails.
- Better handling of deploy errors.
- More descriptive error message and better displaying of them in the UI.
- More descriptive status messages during deploy or refresh operations
- Fix Terminal Logging line endings do not appear correctly on mac; mac and *nix systems also use /r/n in VSCode terminals for ending lines instead of just /n
- Fix issues with paths for post and pre job APEX; paths are slightly different due to the way VSCode resolves paths causing a deployment error for Templates and Products using default job settings.

## [0.12.2] - 2019-12-01
- Revert aggressive inline optimizarion in Teser settings preventing the extension from loading properly.

Expand Down
263 changes: 256 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vlocode",
"displayName": "Salesforce Vlocity Integration",
"description": "Salesforce and Vlocity development and deployment extension for VSCode",
"version": "0.12.3",
"version": "0.12.4",
"license": "MIT",
"icon": "resources/icon.png",
"author": {
Expand Down Expand Up @@ -476,6 +476,7 @@
"vscode:prepublish": "npm run clean && npm run build"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@salesforce/core": "^2.1.5",
"@types/angular": "^1.6.54",
"@types/chai": "^4.2.5",
Expand Down Expand Up @@ -506,6 +507,7 @@
"json-loader": "^0.5.7",
"jszip": "^3.2.2",
"log-symbols": "^3.0.0",
"memory-fs": "^0.5.0",
"mocha": "^5.2.0",
"mocha-html-reporter": "0.0.1",
"mocha-junit-reporter": "^1.23.0",
Expand Down
Loading

0 comments on commit 221af2d

Please sign in to comment.