Skip to content

Commit f489e28

Browse files
committed
chore: publish version 0.17.6
1 parent e966bbf commit f489e28

15 files changed

+76
-27
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
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.6](https://github.com/codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
8+
9+
### Bug Fixes
10+
11+
* await service initialization to avoid exceptions when running commands or accessing the datapack explorer before all core services have been created ([6179944](https://github.com/codeneos/vlocode/commit/6179944806afc52b522e06339dcc4f4e022fc00a))
12+
* don't use string.replaceAll with a RegExp as ms-python.python replaces replaceAll with a method not supporting a RegExp as sub-string ([e966bbf](https://github.com/codeneos/vlocode/commit/e966bbf637aa2c3613d574be71891ae1ed6ca377))
13+
* multiple parallel connection tests executed on reconnect instead a single one ([572b7dd](https://github.com/codeneos/vlocode/commit/572b7dd1f7b55fb53fa6a3cce590497d81497e36))
14+
15+
### Features
16+
17+
* change poll to not return an error when the callback time's out and allow throwing a custom error message on rejection ([242f5d0](https://github.com/codeneos/vlocode/commit/242f5d085e2dd8aa68b76b286776ab9eee2b82d1))
18+
* support custom deployment specs for datapack deployment ([fed3743](https://github.com/codeneos/vlocode/commit/fed3743e70f7b7d251d441036b6b94b56425e9a3))
19+
720
## [0.17.5](https://github.com/codeneos/vlocode/compare/v0.17.6...v0.17.5) (2022-08-19)
821

922
### 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.5",
3+
"version": "0.17.6",
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.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
7+
8+
### Bug Fixes
9+
10+
* don't use string.replaceAll with a RegExp as ms-python.python replaces replaceAll with a method not supporting a RegExp as sub-string ([e966bbf](https://github.com/Codeneos/vlocode/commit/e966bbf637aa2c3613d574be71891ae1ed6ca377))
11+
612
## [0.17.5](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.5) (2022-08-19)
713

814
**Note:** Version bump only for package @vlocode/cli

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.5",
3+
"version": "0.17.6",
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.3",
60-
"@vlocode/salesforce": "^0.17.3",
61-
"@vlocode/util": "^0.17.3",
62-
"@vlocode/vlocity-deploy": "^0.17.5",
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",
6363
"chalk": "^4.1.1",
6464
"commander": "^9.2.0",
6565
"create-ts-index": "^1.14.0",

packages/core/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.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
7+
8+
### Bug Fixes
9+
10+
* don't use string.replaceAll with a RegExp as ms-python.python replaces replaceAll with a method not supporting a RegExp as sub-string ([e966bbf](https://github.com/Codeneos/vlocode/commit/e966bbf637aa2c3613d574be71891ae1ed6ca377))
11+
612
## [0.17.3](https://github.com/Codeneos/vlocode/compare/v0.17.2...v0.17.3) (2022-08-15)
713

814
**Note:** Version bump only for package @vlocode/core

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.3",
3+
"version": "0.17.6",
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.3",
50+
"@vlocode/util": "^0.17.6",
5151
"chalk": "^4.1.1",
5252
"globby": "^11.0.4",
5353
"memfs": "^3.2.2",

packages/salesforce/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.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
7+
8+
### Bug Fixes
9+
10+
* multiple parallel connection tests executed on reconnect instead a single one ([572b7dd](https://github.com/Codeneos/vlocode/commit/572b7dd1f7b55fb53fa6a3cce590497d81497e36))
11+
612
## [0.17.3](https://github.com/Codeneos/vlocode/compare/v0.17.2...v0.17.3) (2022-08-15)
713

814
**Note:** Version bump only for package @vlocode/salesforce

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.3",
3+
"version": "0.17.6",
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.3",
58-
"@vlocode/util": "^0.17.3",
57+
"@vlocode/core": "^0.17.6",
58+
"@vlocode/util": "^0.17.6",
5959
"axios": "^0.25.0",
6060
"chalk": "^4.1.1",
6161
"fs-extra": "^9.0",

packages/util/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.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
7+
8+
### Features
9+
10+
* change poll to not return an error when the callback time's out and allow throwing a custom error message on rejection ([242f5d0](https://github.com/Codeneos/vlocode/commit/242f5d085e2dd8aa68b76b286776ab9eee2b82d1))
11+
612
## [0.17.3](https://github.com/Codeneos/vlocode/compare/v0.17.2...v0.17.3) (2022-08-15)
713

814
**Note:** Version bump only for package @vlocode/util

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.3",
3+
"version": "0.17.6",
44
"description": "Vlocode utility library",
55
"main": "lib/index.js",
66
"readme": "../SITE.md",

packages/vlocity-deploy/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.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
7+
8+
### Features
9+
10+
* support custom deployment specs for datapack deployment ([fed3743](https://github.com/Codeneos/vlocode/commit/fed3743e70f7b7d251d441036b6b94b56425e9a3))
11+
612
## [0.17.5](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.5) (2022-08-19)
713

814
**Note:** Version bump only for package @vlocode/vlocity-deploy

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.5",
3+
"version": "0.17.6",
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.3",
63-
"@vlocode/salesforce": "^0.17.3",
64-
"@vlocode/util": "^0.17.3",
62+
"@vlocode/core": "^0.17.6",
63+
"@vlocode/salesforce": "^0.17.6",
64+
"@vlocode/util": "^0.17.6",
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.6](https://github.com/codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)
7+
8+
### Bug Fixes
9+
10+
* await service initialization to avoid exceptions when running commands or accessing the datapack explorer before all core services have been created ([6179944](https://github.com/codeneos/vlocode/commit/6179944806afc52b522e06339dcc4f4e022fc00a))
11+
612
## [0.17.5](https://github.com/codeneos/vlocode/compare/v0.17.6...v0.17.5) (2022-08-19)
713

814
**Note:** Version bump only for package vlocode

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.5",
6+
"version": "0.17.6",
77
"license": "MIT",
88
"icon": "resources/icon.png",
99
"author": {

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)