diff --git a/CHANGELOG.md b/CHANGELOG.md index 058cece8..cb7ae602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.4](https://github.com/codeneos/vlocode/compare/v0.18.3...v0.18.4) (2022-11-23) + +### Bug Fixes + +* crypto module not imported ([370dde6](https://github.com/codeneos/vlocode/commit/370dde6e90aadcd7c12e6ac5574db1c5fa804494)) +* lookup service returns incorrectly matched records in edge case (to strings ending with `-1` are considered equal due to quirks in the js-Date class) ([23fc498](https://github.com/codeneos/vlocode/commit/23fc498cf9ee3c8ee49ed82d0472aa6df1c40130)) +* only a single spec function executes for mixed deployments causing templates, scripts and other components from not being activated ([3a7f8af](https://github.com/codeneos/vlocode/commit/3a7f8afb7b3626f6cd1bd35a6175784d86cb8c40)) +* references returned as boolean values in record factory ([8ac959e](https://github.com/codeneos/vlocode/commit/8ac959ea9e89d782c377bb83bc163b3c4a93f74c)) +* using old moment date formats with luxon ([4f99eb3](https://github.com/codeneos/vlocode/commit/4f99eb3984fddca44b221b281c72e28312647582)) + +### Features + +* improve resolution speed by not comparing all fields of an object but exit once a single field mismatches in lookup service ([ceb32ac](https://github.com/codeneos/vlocode/commit/ceb32aca0fbb7e90b5990a7d1df049f90a71e0c4)) + ## [0.18.3](https://github.com/codeneos/vlocode/compare/v0.18.2...v0.18.3) (2022-11-22) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 553e6c45..6e82aea9 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "useNx": false, - "version": "0.18.3", + "version": "0.18.4", "npmClient": "pnpm", "packages": [ "packages/*" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index f52a17ae..60a311d4 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.4](https://github.com/Codeneos/vlocode/compare/v0.18.3...v0.18.4) (2022-11-23) + +**Note:** Version bump only for package @vlocode/cli + ## [0.18.3](https://github.com/Codeneos/vlocode/compare/v0.18.2...v0.18.3) (2022-11-22) **Note:** Version bump only for package @vlocode/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 251f81dc..5de31e62 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@vlocode/cli", - "version": "0.18.3", + "version": "0.18.4", "description": "Hyper fast Salesforce/Vlocity datapack deployment CLI", "keywords": [ "Vlocity", @@ -56,10 +56,10 @@ "@types/fs-extra": "^9", "@types/jest": "^28.1.6", "@types/node": "^16", - "@vlocode/core": "^0.18.3", - "@vlocode/salesforce": "^0.18.3", + "@vlocode/core": "^0.18.4", + "@vlocode/salesforce": "^0.18.4", "@vlocode/util": "^0.18.3", - "@vlocode/vlocity-deploy": "^0.18.3", + "@vlocode/vlocity-deploy": "^0.18.4", "chalk": "^4.1.1", "commander": "^9.2.0", "create-ts-index": "^1.14.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 68f77750..6237eb9e 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.4](https://github.com/Codeneos/vlocode/compare/v0.18.3...v0.18.4) (2022-11-23) + +**Note:** Version bump only for package @vlocode/core + ## [0.18.3](https://github.com/Codeneos/vlocode/compare/v0.18.2...v0.18.3) (2022-11-22) **Note:** Version bump only for package @vlocode/core diff --git a/packages/core/package.json b/packages/core/package.json index 4b5fea49..0ad30296 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@vlocode/core", - "version": "0.18.3", + "version": "0.18.4", "description": "Vlocode core IoC container framework library", "main": "lib/index.js", "readme": "../SITE.md", diff --git a/packages/salesforce/CHANGELOG.md b/packages/salesforce/CHANGELOG.md index a424688b..1e249679 100644 --- a/packages/salesforce/CHANGELOG.md +++ b/packages/salesforce/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.4](https://github.com/Codeneos/vlocode/compare/v0.18.3...v0.18.4) (2022-11-23) + +### Bug Fixes + +* references returned as boolean values in record factory ([8ac959e](https://github.com/Codeneos/vlocode/commit/8ac959ea9e89d782c377bb83bc163b3c4a93f74c)) +* using old moment date formats with luxon ([4f99eb3](https://github.com/Codeneos/vlocode/commit/4f99eb3984fddca44b221b281c72e28312647582)) + ## [0.18.3](https://github.com/Codeneos/vlocode/compare/v0.18.2...v0.18.3) (2022-11-22) ### Bug Fixes diff --git a/packages/salesforce/package.json b/packages/salesforce/package.json index 433e589d..50326c48 100644 --- a/packages/salesforce/package.json +++ b/packages/salesforce/package.json @@ -1,6 +1,6 @@ { "name": "@vlocode/salesforce", - "version": "0.18.3", + "version": "0.18.4", "description": "Salesforce utility library for Vlocode", "keywords": [ "Salesforce" @@ -55,7 +55,7 @@ }, "dependencies": { "@salesforce/source-deploy-retrieve": "^5", - "@vlocode/core": "^0.18.3", + "@vlocode/core": "^0.18.4", "@vlocode/util": "^0.18.3", "axios": "^0.25.0", "chalk": "^4.1.1", diff --git a/packages/vlocity-deploy/CHANGELOG.md b/packages/vlocity-deploy/CHANGELOG.md index b0b35b40..631aef2f 100644 --- a/packages/vlocity-deploy/CHANGELOG.md +++ b/packages/vlocity-deploy/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.4](https://github.com/Codeneos/vlocode/compare/v0.18.3...v0.18.4) (2022-11-23) + +### Bug Fixes + +* crypto module not imported ([370dde6](https://github.com/Codeneos/vlocode/commit/370dde6e90aadcd7c12e6ac5574db1c5fa804494)) +* lookup service returns incorrectly matched records in edge case (to strings ending with `-1` are considered equal due to quirks in the js-Date class) ([23fc498](https://github.com/Codeneos/vlocode/commit/23fc498cf9ee3c8ee49ed82d0472aa6df1c40130)) +* only a single spec function executes for mixed deployments causing templates, scripts and other components from not being activated ([3a7f8af](https://github.com/Codeneos/vlocode/commit/3a7f8afb7b3626f6cd1bd35a6175784d86cb8c40)) +* references returned as boolean values in record factory ([8ac959e](https://github.com/Codeneos/vlocode/commit/8ac959ea9e89d782c377bb83bc163b3c4a93f74c)) +* using old moment date formats with luxon ([4f99eb3](https://github.com/Codeneos/vlocode/commit/4f99eb3984fddca44b221b281c72e28312647582)) + +### Features + +* improve resolution speed by not comparing all fields of an object but exit once a single field mismatches in lookup service ([ceb32ac](https://github.com/Codeneos/vlocode/commit/ceb32aca0fbb7e90b5990a7d1df049f90a71e0c4)) + ## [0.18.3](https://github.com/Codeneos/vlocode/compare/v0.18.2...v0.18.3) (2022-11-22) ### Features diff --git a/packages/vlocity-deploy/package.json b/packages/vlocity-deploy/package.json index f7103b8e..866b0e5f 100644 --- a/packages/vlocity-deploy/package.json +++ b/packages/vlocity-deploy/package.json @@ -1,6 +1,6 @@ { "name": "@vlocode/vlocity-deploy", - "version": "0.18.3", + "version": "0.18.4", "description": "Hyper fast Salesforce/Vlocity datapack deployment library", "keywords": [ "Vlocity", @@ -60,8 +60,8 @@ "webpack-env": "^0.8.0" }, "dependencies": { - "@vlocode/core": "^0.18.3", - "@vlocode/salesforce": "^0.18.3", + "@vlocode/core": "^0.18.4", + "@vlocode/salesforce": "^0.18.4", "@vlocode/util": "^0.18.3", "chalk": "^4.1.1", "commander": "^9.2.0", diff --git a/packages/vscode-extension/CHANGELOG.md b/packages/vscode-extension/CHANGELOG.md index 0206aab4..d2ba2876 100644 --- a/packages/vscode-extension/CHANGELOG.md +++ b/packages/vscode-extension/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.4](https://github.com/codeneos/vlocode/compare/v0.18.3...v0.18.4) (2022-11-23) + +### Bug Fixes + +* using old moment date formats with luxon ([4f99eb3](https://github.com/codeneos/vlocode/commit/4f99eb3984fddca44b221b281c72e28312647582)) + ## [0.18.3](https://github.com/codeneos/vlocode/compare/v0.18.2...v0.18.3) (2022-11-22) **Note:** Version bump only for package vlocode diff --git a/packages/vscode-extension/package.json b/packages/vscode-extension/package.json index 14643502..25ff209f 100644 --- a/packages/vscode-extension/package.json +++ b/packages/vscode-extension/package.json @@ -3,7 +3,7 @@ "private": true, "displayName": "Salesforce Vlocity Integration", "description": "Salesforce and Vlocity development and deployment extension for VSCode", - "version": "0.18.3", + "version": "0.18.4", "license": "MIT", "icon": "resources/icon.png", "author": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0d8af043..9ca23b01 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -101,10 +101,10 @@ importers: '@types/fs-extra': ^9 '@types/jest': ^28.1.6 '@types/node': ^16 - '@vlocode/core': ^0.18.3 - '@vlocode/salesforce': ^0.18.3 + '@vlocode/core': ^0.18.4 + '@vlocode/salesforce': ^0.18.4 '@vlocode/util': ^0.18.3 - '@vlocode/vlocity-deploy': ^0.18.3 + '@vlocode/vlocity-deploy': ^0.18.4 chalk: ^4.1.2 commander: ^9.2.0 create-ts-index: ^1.14.0 @@ -205,7 +205,7 @@ importers: '@types/jsforce': 1.9.42 '@types/luxon': ^3.1.0 '@types/node': ^16 - '@vlocode/core': ^0.18.3 + '@vlocode/core': ^0.18.4 '@vlocode/util': ^0.18.3 axios: ^0.25.0 chalk: ^4.1.2 @@ -299,8 +299,8 @@ importers: '@types/jest': ^28.1.6 '@types/luxon': ^3.1.0 '@types/node': ^16 - '@vlocode/core': ^0.18.3 - '@vlocode/salesforce': ^0.18.3 + '@vlocode/core': ^0.18.4 + '@vlocode/salesforce': ^0.18.4 '@vlocode/util': ^0.18.3 chalk: ^4.1.2 commander: ^9.2.0 @@ -426,8 +426,6 @@ importers: webpack-glob-entry: ^2.1.1 webpack-merge: ^5.8.0 webpack-node-externals: ^3.0.0 - dependencies: - luxon: 3.1.0 devDependencies: '@types/chai': 4.3.1 '@types/copy-webpack-plugin': 8.0.1_uwqmmsiqajr2oqppikqwvlbxoi @@ -468,6 +466,7 @@ importers: json-loader: 0.5.7 jszip: 3.9.1 log-symbols: 4.1.0 + luxon: 3.1.0 memfs: 3.4.1 mocha: 9.2.2 mocha-html-reporter: 0.0.1 @@ -1523,11 +1522,9 @@ packages: - supports-color dev: true - /@oclif/command/1.8.16_iqkmirytp56czwdq3zgc6rvyoy_@oclif+config@1.18.3: + /@oclif/command/1.8.16_iqkmirytp56czwdq3zgc6rvyoy: resolution: {integrity: sha512-rmVKYEsKzurfRU0xJz+iHelbi1LGlihIWZ7Qvmb/CBz1EkhL7nOkW4SVXmG2dA5Ce0si2gr88i6q4eBOMRNJ1w==} engines: {node: '>=12.0.0'} - peerDependencies: - '@oclif/config': ^1 dependencies: '@oclif/config': 1.18.3 '@oclif/errors': 1.3.5 @@ -1539,22 +1536,6 @@ packages: - supports-color patched: true - /@oclif/command/1.8.16_iqkmirytp56czwdq3zgc6rvyoy_i4zayhaggchdik36ivy5ksjpdq: - resolution: {integrity: sha512-rmVKYEsKzurfRU0xJz+iHelbi1LGlihIWZ7Qvmb/CBz1EkhL7nOkW4SVXmG2dA5Ce0si2gr88i6q4eBOMRNJ1w==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@oclif/config': ^1 - dependencies: - '@oclif/config': 1.18.3 - '@oclif/errors': 1.3.5 - '@oclif/help': 1.0.1_supports-color@8.1.1 - '@oclif/parser': 3.8.7 - debug: 4.3.4_supports-color@8.1.1 - semver: 7.3.7 - transitivePeerDependencies: - - supports-color - patched: true - /@oclif/command/1.8.16_iqkmirytp56czwdq3zgc6rvyoy_supports-color@8.1.1: resolution: {integrity: sha512-rmVKYEsKzurfRU0xJz+iHelbi1LGlihIWZ7Qvmb/CBz1EkhL7nOkW4SVXmG2dA5Ce0si2gr88i6q4eBOMRNJ1w==} engines: {node: '>=12.0.0'} @@ -1567,7 +1548,6 @@ packages: semver: 7.3.7 transitivePeerDependencies: - supports-color - dev: true patched: true /@oclif/config/1.18.2: @@ -1621,7 +1601,6 @@ packages: tslib: 2.4.0 transitivePeerDependencies: - supports-color - dev: true /@oclif/errors/1.3.5: resolution: {integrity: sha512-OivucXPH/eLLlOT7FkCMoZXiaVYf8I/w1eTAM1+gKzfhALwWTusxEx7wBmW0uzvkSg/9ovWLycPaBgJbM3LOCQ==} @@ -1686,11 +1665,11 @@ packages: chalk: 4.1.2 tslib: 2.4.1 - /@oclif/plugin-help/2.2.3_@oclif+config@1.18.3: + /@oclif/plugin-help/2.2.3: resolution: {integrity: sha512-bGHUdo5e7DjPJ0vTeRBMIrfqTRDBfyR5w0MP41u0n3r7YG5p14lvMmiCXxi6WDaP2Hw5nqx3PnkAIntCKZZN7g==} engines: {node: '>=8.0.0'} dependencies: - '@oclif/command': 1.8.16_iqkmirytp56czwdq3zgc6rvyoy_@oclif+config@1.18.3 + '@oclif/command': 1.8.16_iqkmirytp56czwdq3zgc6rvyoy chalk: 4.1.2 indent-string: 4.0.0 lodash.template: 4.5.0 @@ -1699,7 +1678,6 @@ packages: widest-line: 2.0.1 wrap-ansi: 4.0.0 transitivePeerDependencies: - - '@oclif/config' - supports-color /@oclif/screen/1.0.4: @@ -1837,13 +1815,13 @@ packages: mv: 2.1.1 safe-json-stringify: 1.2.0 - /@salesforce/command/4.2.2_@oclif+config@1.18.3: + /@salesforce/command/4.2.2: resolution: {integrity: sha512-2QEtPIMaeRyUEnLmPHJ1PhfKDJBupfQS5T4nG8rXpK2yOznBu48aPWaWCYErrxyC0bPa5eoFACeyPWz1k9QMog==} dependencies: - '@oclif/command': 1.8.16_iqkmirytp56czwdq3zgc6rvyoy_@oclif+config@1.18.3 + '@oclif/command': 1.8.16_iqkmirytp56czwdq3zgc6rvyoy '@oclif/errors': 1.3.5 '@oclif/parser': 3.8.6 - '@oclif/plugin-help': 2.2.3_@oclif+config@1.18.3 + '@oclif/plugin-help': 2.2.3 '@oclif/test': 1.2.9 '@salesforce/core': 2.37.1_dwmtazf7ord73csdsectnecuee '@salesforce/kit': 1.8.0 @@ -1851,7 +1829,6 @@ packages: chalk: 4.1.2 cli-ux: 4.9.3 transitivePeerDependencies: - - '@oclif/config' - supports-color /@salesforce/core/2.37.1_dwmtazf7ord73csdsectnecuee: @@ -1916,7 +1893,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@oclif/config': 1.18.3 - '@salesforce/command': 4.2.2_@oclif+config@1.18.3 + '@salesforce/command': 4.2.2 '@salesforce/core': 2.37.1_dwmtazf7ord73csdsectnecuee '@salesforce/telemetry': 3.2.1_debug@3.2.7 tslib: 2.4.1 @@ -2561,7 +2538,7 @@ packages: webpack: 4.x.x || 5.x.x webpack-cli: 4.x.x dependencies: - webpack: 5.72.1_uwqmmsiqajr2oqppikqwvlbxoi + webpack: 5.72.1_webpack-cli@4.9.2 webpack-cli: 4.9.2_webpack@5.72.1 dev: true @@ -3780,41 +3757,6 @@ packages: supports-color: 8.1.1 supports-hyperlinks: 2.2.0 tslib: 2.4.0 - dev: true - - /cli-ux/5.6.7_@oclif+config@1.18.3: - resolution: {integrity: sha512-dsKAurMNyFDnO6X1TiiRNiVbL90XReLKcvIq4H777NMqXGBxBws23ag8ubCJE97vVZEgWG2eSUhsyLf63Jv8+g==} - engines: {node: '>=8.0.0'} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dependencies: - '@oclif/command': 1.8.16_iqkmirytp56czwdq3zgc6rvyoy_i4zayhaggchdik36ivy5ksjpdq - '@oclif/errors': 1.3.5 - '@oclif/linewrap': 1.0.0 - '@oclif/screen': 1.0.4 - ansi-escapes: 4.3.2 - ansi-styles: 4.3.0 - cardinal: 2.1.1 - chalk: 4.1.2 - clean-stack: 3.0.1 - cli-progress: 3.11.0 - extract-stack: 2.0.0 - fs-extra: 9.1.0 - hyperlinker: 1.0.0 - indent-string: 4.0.0 - is-wsl: 2.2.0 - js-yaml: 4.1.0 - lodash: 4.17.21 - natural-orderby: 2.0.3 - object-treeify: 1.1.33 - password-prompt: 1.1.2 - semver: 7.3.7 - string-width: 4.2.3 - strip-ansi: 6.0.1 - supports-color: 8.1.1 - supports-hyperlinks: 2.2.0 - tslib: 2.4.0 - transitivePeerDependencies: - - '@oclif/config' /cli-width/3.0.0: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} @@ -8205,7 +8147,6 @@ packages: /luxon/3.1.0: resolution: {integrity: sha512-7w6hmKC0/aoWnEsmPCu5Br54BmbmUp5GfcqBxQngRcXJ+q5fdfjEzn7dxmJh2YdDhgW8PccYtlWKSv4tQkrTQg==} engines: {node: '>=12'} - dev: false /make-dir/2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} @@ -10343,8 +10284,8 @@ packages: dependencies: '@oclif/config': 1.18.3 '@oclif/errors': 1.3.5 - '@oclif/plugin-help': 2.2.3_@oclif+config@1.18.3 - '@salesforce/command': 4.2.2_@oclif+config@1.18.3 + '@oclif/plugin-help': 2.2.3 + '@salesforce/command': 4.2.2 '@salesforce/core': 2.37.1_dwmtazf7ord73csdsectnecuee '@salesforce/kit': 1.8.0 '@salesforce/plugin-telemetry': 1.4.0_debug@3.2.7 @@ -10357,7 +10298,7 @@ packages: bluebird: 3.7.2 bunyan-sfdx-no-dtrace: 1.8.2 chalk: 4.1.2 - cli-ux: 5.6.7_@oclif+config@1.18.3 + cli-ux: 5.6.7 debug: 3.2.7 fast-xml-parser: 3.21.1 fs-extra: 9.1.0 @@ -11328,7 +11269,7 @@ packages: dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 28.1.3_@types+node@16.11.34 + jest: 28.1.3_24esr3464d2gifgmzdt2yhkw2m jest-util: 28.1.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -12055,7 +11996,7 @@ packages: import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 - webpack: 5.72.1_uwqmmsiqajr2oqppikqwvlbxoi + webpack: 5.72.1_webpack-cli@4.9.2 webpack-merge: 5.8.0 dev: true