Skip to content

Commit

Permalink
chore: publish version 0.17.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Codeneos committed Aug 31, 2022
1 parent e966bbf commit f489e28
Show file tree
Hide file tree
Showing 15 changed files with 76 additions and 27 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.17.6](https://github.com/codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)

### Bug Fixes

* 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))
* 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))
* multiple parallel connection tests executed on reconnect instead a single one ([572b7dd](https://github.com/codeneos/vlocode/commit/572b7dd1f7b55fb53fa6a3cce590497d81497e36))

### Features

* 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))
* support custom deployment specs for datapack deployment ([fed3743](https://github.com/codeneos/vlocode/commit/fed3743e70f7b7d251d441036b6b94b56425e9a3))

## [0.17.5](https://github.com/codeneos/vlocode/compare/v0.17.6...v0.17.5) (2022-08-19)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"useNx": false,
"version": "0.17.5",
"version": "0.17.6",
"npmClient": "pnpm",
"packages": [
"packages/*"
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)

### Bug Fixes

* 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))

## [0.17.5](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.5) (2022-08-19)

**Note:** Version bump only for package @vlocode/cli
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vlocode/cli",
"version": "0.17.5",
"version": "0.17.6",
"description": "Hyper fast Salesforce/Vlocity datapack deployment CLI",
"keywords": [
"Vlocity",
Expand Down Expand Up @@ -56,10 +56,10 @@
"@types/fs-extra": "^9",
"@types/jest": "^28.1.6",
"@types/node": "^16",
"@vlocode/core": "^0.17.3",
"@vlocode/salesforce": "^0.17.3",
"@vlocode/util": "^0.17.3",
"@vlocode/vlocity-deploy": "^0.17.5",
"@vlocode/core": "^0.17.6",
"@vlocode/salesforce": "^0.17.6",
"@vlocode/util": "^0.17.6",
"@vlocode/vlocity-deploy": "^0.17.6",
"chalk": "^4.1.1",
"commander": "^9.2.0",
"create-ts-index": "^1.14.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)

### Bug Fixes

* 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))

## [0.17.3](https://github.com/Codeneos/vlocode/compare/v0.17.2...v0.17.3) (2022-08-15)

**Note:** Version bump only for package @vlocode/core
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vlocode/core",
"version": "0.17.3",
"version": "0.17.6",
"description": "Vlocode core IoC container framework library",
"main": "lib/index.js",
"readme": "../SITE.md",
Expand Down Expand Up @@ -47,7 +47,7 @@
"typescript": "4.6.4"
},
"dependencies": {
"@vlocode/util": "^0.17.3",
"@vlocode/util": "^0.17.6",
"chalk": "^4.1.1",
"globby": "^11.0.4",
"memfs": "^3.2.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/salesforce/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)

### Bug Fixes

* multiple parallel connection tests executed on reconnect instead a single one ([572b7dd](https://github.com/Codeneos/vlocode/commit/572b7dd1f7b55fb53fa6a3cce590497d81497e36))

## [0.17.3](https://github.com/Codeneos/vlocode/compare/v0.17.2...v0.17.3) (2022-08-15)

**Note:** Version bump only for package @vlocode/salesforce
Expand Down
6 changes: 3 additions & 3 deletions packages/salesforce/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vlocode/salesforce",
"version": "0.17.3",
"version": "0.17.6",
"description": "Salesforce utility library for Vlocode",
"keywords": [
"Salesforce"
Expand Down Expand Up @@ -54,8 +54,8 @@
},
"dependencies": {
"@salesforce/source-deploy-retrieve": "^5.12.11",
"@vlocode/core": "^0.17.3",
"@vlocode/util": "^0.17.3",
"@vlocode/core": "^0.17.6",
"@vlocode/util": "^0.17.6",
"axios": "^0.25.0",
"chalk": "^4.1.1",
"fs-extra": "^9.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/util/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)

### Features

* 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))

## [0.17.3](https://github.com/Codeneos/vlocode/compare/v0.17.2...v0.17.3) (2022-08-15)

**Note:** Version bump only for package @vlocode/util
Expand Down
2 changes: 1 addition & 1 deletion packages/util/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vlocode/util",
"version": "0.17.3",
"version": "0.17.6",
"description": "Vlocode utility library",
"main": "lib/index.js",
"readme": "../SITE.md",
Expand Down
6 changes: 6 additions & 0 deletions packages/vlocity-deploy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.6](https://github.com/Codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)

### Features

* support custom deployment specs for datapack deployment ([fed3743](https://github.com/Codeneos/vlocode/commit/fed3743e70f7b7d251d441036b6b94b56425e9a3))

## [0.17.5](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.5) (2022-08-19)

**Note:** Version bump only for package @vlocode/vlocity-deploy
Expand Down
8 changes: 4 additions & 4 deletions packages/vlocity-deploy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vlocode/vlocity-deploy",
"version": "0.17.5",
"version": "0.17.6",
"description": "Hyper fast Salesforce/Vlocity datapack deployment library",
"keywords": [
"Vlocity",
Expand Down Expand Up @@ -59,9 +59,9 @@
"webpack-env": "^0.8.0"
},
"dependencies": {
"@vlocode/core": "^0.17.3",
"@vlocode/salesforce": "^0.17.3",
"@vlocode/util": "^0.17.3",
"@vlocode/core": "^0.17.6",
"@vlocode/salesforce": "^0.17.6",
"@vlocode/util": "^0.17.6",
"chalk": "^4.1.1",
"commander": "^9.2.0",
"fs-extra": "^9.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/vscode-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.6](https://github.com/codeneos/vlocode/compare/v0.17.5...v0.17.6) (2022-08-31)

### Bug Fixes

* 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))

## [0.17.5](https://github.com/codeneos/vlocode/compare/v0.17.6...v0.17.5) (2022-08-19)

**Note:** Version bump only for package vlocode
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"displayName": "Salesforce Vlocity Integration",
"description": "Salesforce and Vlocity development and deployment extension for VSCode",
"version": "0.17.5",
"version": "0.17.6",
"license": "MIT",
"icon": "resources/icon.png",
"author": {
Expand Down
20 changes: 10 additions & 10 deletions pnpm-lock.yaml

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

0 comments on commit f489e28

Please sign in to comment.