Skip to content

Commit 155cefe

Browse files
committed
chore: publish version 0.17.8
1 parent 8e95c14 commit 155cefe

15 files changed

+64
-27
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
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.8](https://github.com/codeneos/vlocode/compare/v0.17.7...v0.17.8) (2022-09-27)
8+
9+
### Bug Fixes
10+
11+
* stand alone vlocode does not correctly assume the API version of the connection ([eb757f8](https://github.com/codeneos/vlocode/commit/eb757f834c2438389ea27392f0a0191aec0b21ad))
12+
* when not using an SFDX connection the content headers are not set by JSON by default ([8e95c14](https://github.com/codeneos/vlocode/commit/8e95c149d0023a649514f5e6ba2bd8bb24bce36a))
13+
* with `strictDependencies` enabled records of external dependencies are not correctly deployed ([cfc6e92](https://github.com/codeneos/vlocode/commit/cfc6e9261c7c7b27339d28838bdd980a658f4245))
14+
715
## [0.17.7](https://github.com/codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
816

917
### 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.7",
3+
"version": "0.17.8",
44
"npmClient": "pnpm",
55
"packages": [
66
"packages/*"

packages/cli/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.8](https://github.com/Codeneos/vlocode/compare/v0.17.7...v0.17.8) (2022-09-27)
7+
8+
**Note:** Version bump only for package @vlocode/cli
9+
610
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
711

812
### Features

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

packages/core/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.8](https://github.com/Codeneos/vlocode/compare/v0.17.7...v0.17.8) (2022-09-27)
7+
8+
**Note:** Version bump only for package @vlocode/core
9+
610
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
711

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

packages/salesforce/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
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.8](https://github.com/Codeneos/vlocode/compare/v0.17.7...v0.17.8) (2022-09-27)
7+
8+
### Bug Fixes
9+
10+
* stand alone vlocode does not correctly assume the API version of the connection ([eb757f8](https://github.com/Codeneos/vlocode/commit/eb757f834c2438389ea27392f0a0191aec0b21ad))
11+
* when not using an SFDX connection the content headers are not set by JSON by default ([8e95c14](https://github.com/Codeneos/vlocode/commit/8e95c149d0023a649514f5e6ba2bd8bb24bce36a))
12+
613
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
714

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

packages/util/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.8](https://github.com/Codeneos/vlocode/compare/v0.17.7...v0.17.8) (2022-09-27)
7+
8+
**Note:** Version bump only for package @vlocode/util
9+
610
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
711

812
### Bug Fixes

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.7",
3+
"version": "0.17.8",
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.8](https://github.com/Codeneos/vlocode/compare/v0.17.7...v0.17.8) (2022-09-27)
7+
8+
### Bug Fixes
9+
10+
* with `strictDependencies` enabled records of external dependencies are not correctly deployed ([cfc6e92](https://github.com/Codeneos/vlocode/commit/cfc6e9261c7c7b27339d28838bdd980a658f4245))
11+
612
## [0.17.7](https://github.com/Codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
713

814
### Bug Fixes

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.7",
3+
"version": "0.17.8",
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.7",
63-
"@vlocode/salesforce": "^0.17.7",
64-
"@vlocode/util": "^0.17.7",
62+
"@vlocode/core": "^0.17.8",
63+
"@vlocode/salesforce": "^0.17.8",
64+
"@vlocode/util": "^0.17.8",
6565
"chalk": "^4.1.1",
6666
"commander": "^9.2.0",
6767
"fs-extra": "^9.0",

packages/vscode-extension/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.8](https://github.com/codeneos/vlocode/compare/v0.17.7...v0.17.8) (2022-09-27)
7+
8+
**Note:** Version bump only for package vlocode
9+
610
## [0.17.7](https://github.com/codeneos/vlocode/compare/v0.17.6...v0.17.7) (2022-09-27)
711

812
### Features

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.7",
6+
"version": "0.17.8",
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)