Skip to content

Commit 1dff295

Browse files
committed
chore: publish version 0.17.7
1 parent 9434936 commit 1dff295

16 files changed

+108
-31
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@
44
All notable changes to this project will be documented in this file.
55
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
66

7+
## [0.17.7](https://github.com/codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
8+
9+
### Bug Fixes
10+
11+
* [@cache](https://github.com/cache) does not handle arrays and object-like parameters properly causing incorrect cached entries to be returned ([a2fcaea](https://github.com/codeneos/vlocode/commit/a2fcaea57e8f1ce7e98c89752026060cc43b4a11))
12+
* `transfrom` was renamed to `mapKeys` in core package but not updated in salesforce package ([8098fe0](https://github.com/codeneos/vlocode/commit/8098fe06d953c332c4e8f154f7e4797e69774d50))
13+
* double tooling desicribes ([9434936](https://github.com/codeneos/vlocode/commit/9434936dc25c0d0692b3b4b1bcb0d18b72e2bf37))
14+
* service overrides not logged properly ([cec6a55](https://github.com/codeneos/vlocode/commit/cec6a552c5dd0943a7cb8258f4cd1cb522b238f6))
15+
16+
### Features
17+
18+
* add object walk and set properties methods ([69dd5f8](https://github.com/codeneos/vlocode/commit/69dd5f86ca3df0095c539f07b80994bfec3e26a7))
19+
* add options to skip OmniScript LWC deployment ([a86d227](https://github.com/codeneos/vlocode/commit/a86d2279324e82912b7ab2b259c8b61f6c2feff7))
20+
* expose `deploy` as separate function making it easier to invoke from external libraries ([37312d8](https://github.com/codeneos/vlocode/commit/37312d8216c301007e17ca6800338e97987e2158))
21+
* integrate omniscript LWC compiler and activation ([8c5bfaf](https://github.com/codeneos/vlocode/commit/8c5bfaf6755358275997376c9d83ee169be10986))
22+
723
## [0.17.6](https://github.com/codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
824

925
### Bug Fixes

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"useNx": false,
3-
"version": "0.17.6",
3+
"version": "0.17.7",
44
"npmClient": "pnpm",
55
"packages": [
66
"packages/*"

packages/cli/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
7+
8+
### Features
9+
10+
* integrate omniscript LWC compiler and activation ([8c5bfaf](https://github.com/Codeneos/vlocode/commit/8c5bfaf6755358275997376c9d83ee169be10986))
11+
612
## [0.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
713

814
### Bug Fixes

packages/cli/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vlocode/cli",
3-
"version": "0.17.6",
3+
"version": "0.17.7",
44
"description": "Hyper fast Salesforce/Vlocity datapack deployment CLI",
55
"keywords": [
66
"Vlocity",
@@ -56,10 +56,10 @@
5656
"@types/fs-extra": "^9",
5757
"@types/jest": "^28.1.6",
5858
"@types/node": "^16",
59-
"@vlocode/core": "^0.17.6",
60-
"@vlocode/salesforce": "^0.17.6",
61-
"@vlocode/util": "^0.17.6",
62-
"@vlocode/vlocity-deploy": "^0.17.6",
59+
"@vlocode/core": "^0.17.7",
60+
"@vlocode/salesforce": "^0.17.7",
61+
"@vlocode/util": "^0.17.7",
62+
"@vlocode/vlocity-deploy": "^0.17.7",
6363
"chalk": "^4.1.1",
6464
"commander": "^9.2.0",
6565
"create-ts-index": "^1.14.0",

packages/core/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
7+
8+
### Bug Fixes
9+
10+
* service overrides not logged properly ([cec6a55](https://github.com/Codeneos/vlocode/commit/cec6a552c5dd0943a7cb8258f4cd1cb522b238f6))
11+
12+
### Features
13+
14+
* add options to skip OmniScript LWC deployment ([a86d227](https://github.com/Codeneos/vlocode/commit/a86d2279324e82912b7ab2b259c8b61f6c2feff7))
15+
* expose `deploy` as separate function making it easier to invoke from external libraries ([37312d8](https://github.com/Codeneos/vlocode/commit/37312d8216c301007e17ca6800338e97987e2158))
16+
* integrate omniscript LWC compiler and activation ([8c5bfaf](https://github.com/Codeneos/vlocode/commit/8c5bfaf6755358275997376c9d83ee169be10986))
17+
618
## [0.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
719

820
### Bug Fixes

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vlocode/core",
3-
"version": "0.17.6",
3+
"version": "0.17.7",
44
"description": "Vlocode core IoC container framework library",
55
"main": "lib/index.js",
66
"readme": "../SITE.md",
@@ -47,7 +47,7 @@
4747
"typescript": "4.6.4"
4848
},
4949
"dependencies": {
50-
"@vlocode/util": "^0.17.6",
50+
"@vlocode/util": "^0.17.7",
5151
"chalk": "^4.1.1",
5252
"globby": "^11.0.4",
5353
"memfs": "^3.2.2",

packages/salesforce/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
7+
8+
### Bug Fixes
9+
10+
* `transfrom` was renamed to `mapKeys` in core package but not updated in salesforce package ([8098fe0](https://github.com/Codeneos/vlocode/commit/8098fe06d953c332c4e8f154f7e4797e69774d50))
11+
* double tooling desicribes ([9434936](https://github.com/Codeneos/vlocode/commit/9434936dc25c0d0692b3b4b1bcb0d18b72e2bf37))
12+
13+
### Features
14+
15+
* add options to skip OmniScript LWC deployment ([a86d227](https://github.com/Codeneos/vlocode/commit/a86d2279324e82912b7ab2b259c8b61f6c2feff7))
16+
* expose `deploy` as separate function making it easier to invoke from external libraries ([37312d8](https://github.com/Codeneos/vlocode/commit/37312d8216c301007e17ca6800338e97987e2158))
17+
* integrate omniscript LWC compiler and activation ([8c5bfaf](https://github.com/Codeneos/vlocode/commit/8c5bfaf6755358275997376c9d83ee169be10986))
18+
619
## [0.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
720

821
### Bug Fixes

packages/salesforce/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vlocode/salesforce",
3-
"version": "0.17.6",
3+
"version": "0.17.7",
44
"description": "Salesforce utility library for Vlocode",
55
"keywords": [
66
"Salesforce"
@@ -54,8 +54,8 @@
5454
},
5555
"dependencies": {
5656
"@salesforce/source-deploy-retrieve": "^5.12.11",
57-
"@vlocode/core": "^0.17.6",
58-
"@vlocode/util": "^0.17.6",
57+
"@vlocode/core": "^0.17.7",
58+
"@vlocode/util": "^0.17.7",
5959
"axios": "^0.25.0",
6060
"chalk": "^4.1.1",
6161
"fs-extra": "^9.0",

packages/util/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
7+
8+
### Bug Fixes
9+
10+
* [@cache](https://github.com/cache) does not handle arrays and object-like parameters properly causing incorrect cached entries to be returned ([a2fcaea](https://github.com/Codeneos/vlocode/commit/a2fcaea57e8f1ce7e98c89752026060cc43b4a11))
11+
12+
### Features
13+
14+
* add object walk and set properties methods ([69dd5f8](https://github.com/Codeneos/vlocode/commit/69dd5f86ca3df0095c539f07b80994bfec3e26a7))
15+
* integrate omniscript LWC compiler and activation ([8c5bfaf](https://github.com/Codeneos/vlocode/commit/8c5bfaf6755358275997376c9d83ee169be10986))
16+
617
## [0.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
718

819
### Features

packages/util/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vlocode/util",
3-
"version": "0.17.6",
3+
"version": "0.17.7",
44
"description": "Vlocode utility library",
55
"main": "lib/index.js",
66
"readme": "../SITE.md",

packages/vlocity-deploy/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
7+
8+
### Bug Fixes
9+
10+
* double tooling desicribes ([9434936](https://github.com/Codeneos/vlocode/commit/9434936dc25c0d0692b3b4b1bcb0d18b72e2bf37))
11+
12+
### Features
13+
14+
* add options to skip OmniScript LWC deployment ([a86d227](https://github.com/Codeneos/vlocode/commit/a86d2279324e82912b7ab2b259c8b61f6c2feff7))
15+
* expose `deploy` as separate function making it easier to invoke from external libraries ([37312d8](https://github.com/Codeneos/vlocode/commit/37312d8216c301007e17ca6800338e97987e2158))
16+
* integrate omniscript LWC compiler and activation ([8c5bfaf](https://github.com/Codeneos/vlocode/commit/8c5bfaf6755358275997376c9d83ee169be10986))
17+
618
## [0.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
719

820
### Features

packages/vlocity-deploy/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vlocode/vlocity-deploy",
3-
"version": "0.17.6",
3+
"version": "0.17.7",
44
"description": "Hyper fast Salesforce/Vlocity datapack deployment library",
55
"keywords": [
66
"Vlocity",
@@ -59,9 +59,9 @@
5959
"webpack-env": "^0.8.0"
6060
},
6161
"dependencies": {
62-
"@vlocode/core": "^0.17.6",
63-
"@vlocode/salesforce": "^0.17.6",
64-
"@vlocode/util": "^0.17.6",
62+
"@vlocode/core": "^0.17.7",
63+
"@vlocode/salesforce": "^0.17.7",
64+
"@vlocode/util": "^0.17.7",
6565
"chalk": "^4.1.1",
6666
"commander": "^9.2.0",
6767
"fs-extra": "^9.0",

packages/vscode-extension/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.17.7](https://github.com/codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
7+
8+
### Features
9+
10+
* integrate omniscript LWC compiler and activation ([8c5bfaf](https://github.com/codeneos/vlocode/commit/8c5bfaf6755358275997376c9d83ee169be10986))
11+
612
## [0.17.6](https://github.com/codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
713

814
### Bug Fixes

packages/vscode-extension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"displayName": "Salesforce Vlocity Integration",
55
"description": "Salesforce and Vlocity development and deployment extension for VSCode",
6-
"version": "0.17.6",
6+
"version": "0.17.7",
77
"license": "MIT",
88
"icon": "resources/icon.png",
99
"author": {

packages/vscode-extension/webpack/webpack.common.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ const packageExternals = [
1717
// VSCode is an external that we do not want to package
1818
'vscode',
1919
'vscode-languageclient',
20-
'electron'
20+
'electron',
21+
'canvas'
2122
];
2223

2324
const contextFolder = path.resolve(__dirname, '..');

pnpm-lock.yaml

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)