Skip to content

Commit

Permalink
Fix max depth ignored
Browse files Browse the repository at this point in the history
Bump version to 0.12.6
  • Loading branch information
Codeneos committed Dec 10, 2019
1 parent 862894e commit ae3caa3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# Changelog Vlocity Salesforce Integration for VSCode

## [0.12.6] - 2019-12-19
- Fixed build error
- Added option to select max depth during refresh and explorer export
- Optimize datapack loading
- Fix issue with content version query definition from Vlocity

## [0.12.5] - 2019-12-19
- Fixed circular json error during export from datapack explorer.
- Added activity explorer icons.

## [0.12.4] - 2019-12-19
## [0.12.4] - 2019-12-18
- 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.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 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.5",
"version": "0.12.6",
"license": "MIT",
"icon": "resources/icon.png",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/exportDatapackCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export default class ExportDatapackCommand extends DatapackCommand {
location: vscode.ProgressLocation.Notification,
cancellable: true
}, async (progress, token) => {
const results = await this.datapackService.export(entries, exportPath, maxDepth, token);
const results = await this.datapackService.export(entries, exportPath, dependencyExportDepth, token);
this.showResultMessage(results);
});

Expand Down

0 comments on commit ae3caa3

Please sign in to comment.