diff --git a/CHANGELOG.md b/CHANGELOG.md index 73ed6b3d..e4db7a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.19.21](https://github.com/codeneos/vlocode/compare/v0.19.20...v0.19.21) (2023-08-02) + +### Bug Fixes + +* HTTP transport does not handle timeout properly ([ac36631](https://github.com/codeneos/vlocode/commit/ac3663147e105d1bdb2efa6e55b280fffec217cb)) + +### Features + +* handle expired refresh tokens properly and reset the connection when the Access token updates; should also address issues [#405](https://github.com/codeneos/vlocode/issues/405) and [#401](https://github.com/codeneos/vlocode/issues/401) ([f3184c3](https://github.com/codeneos/vlocode/commit/f3184c3961dfc627921f2f4d9db699c075be751a)) +* re-implement OAuth2 authentication ([a344767](https://github.com/codeneos/vlocode/commit/a344767d341641c10b2e6964a9193a812db714f4)) +* support sprintf style logging when the a string contains %s, %i or %d tokens ([a431d8d](https://github.com/codeneos/vlocode/commit/a431d8d70b144d80378d4f41010c305eeace0085)) + ## [0.19.20](https://github.com/codeneos/vlocode/compare/v0.19.19...v0.19.20) (2023-08-01) ### Bug Fixes diff --git a/lerna.json b/lerna.json index cee111e3..700a4a4f 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "useNx": false, - "version": "0.19.20", + "version": "0.19.21", "npmClient": "pnpm", "packages": ["packages/*"], "command": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index d33446b3..81fe2c15 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.19.21](https://github.com/Codeneos/vlocode/compare/v0.19.20...v0.19.21) (2023-08-02) + +**Note:** Version bump only for package @vlocode/cli + ## [0.19.20](https://github.com/Codeneos/vlocode/compare/v0.19.19...v0.19.20) (2023-08-01) **Note:** Version bump only for package @vlocode/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 536a9ffb..17ab38ef 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@vlocode/cli", - "version": "0.19.20", + "version": "0.19.21", "description": "Hyper fast Salesforce/Vlocity datapack deployment CLI", "keywords": [ "Vlocity", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index f40b8d7b..d0e41ba6 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/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.19.21](https://github.com/Codeneos/vlocode/compare/v0.19.20...v0.19.21) (2023-08-02) + +### Features + +* handle expired refresh tokens properly and reset the connection when the Access token updates; should also address issues [#405](https://github.com/Codeneos/vlocode/issues/405) and [#401](https://github.com/Codeneos/vlocode/issues/401) ([f3184c3](https://github.com/Codeneos/vlocode/commit/f3184c3961dfc627921f2f4d9db699c075be751a)) +* support sprintf style logging when the a string contains %s, %i or %d tokens ([a431d8d](https://github.com/Codeneos/vlocode/commit/a431d8d70b144d80378d4f41010c305eeace0085)) + ## [0.19.20](https://github.com/Codeneos/vlocode/compare/v0.19.19...v0.19.20) (2023-08-01) **Note:** Version bump only for package @vlocode/core diff --git a/packages/core/package.json b/packages/core/package.json index fa497565..ab67bafe 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@vlocode/core", - "version": "0.19.20", + "version": "0.19.21", "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 9f28d094..238db561 100644 --- a/packages/salesforce/CHANGELOG.md +++ b/packages/salesforce/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.19.21](https://github.com/Codeneos/vlocode/compare/v0.19.20...v0.19.21) (2023-08-02) + +### Bug Fixes + +* HTTP transport does not handle timeout properly ([ac36631](https://github.com/Codeneos/vlocode/commit/ac3663147e105d1bdb2efa6e55b280fffec217cb)) + +### Features + +* handle expired refresh tokens properly and reset the connection when the Access token updates; should also address issues [#405](https://github.com/Codeneos/vlocode/issues/405) and [#401](https://github.com/Codeneos/vlocode/issues/401) ([f3184c3](https://github.com/Codeneos/vlocode/commit/f3184c3961dfc627921f2f4d9db699c075be751a)) +* re-implement OAuth2 authentication ([a344767](https://github.com/Codeneos/vlocode/commit/a344767d341641c10b2e6964a9193a812db714f4)) + ## [0.19.20](https://github.com/Codeneos/vlocode/compare/v0.19.19...v0.19.20) (2023-08-01) ### Bug Fixes diff --git a/packages/salesforce/package.json b/packages/salesforce/package.json index e6efbc21..36f2e69a 100644 --- a/packages/salesforce/package.json +++ b/packages/salesforce/package.json @@ -1,6 +1,6 @@ { "name": "@vlocode/salesforce", - "version": "0.19.20", + "version": "0.19.21", "description": "Salesforce utility library for Vlocode", "keywords": [ "Salesforce" diff --git a/packages/util/CHANGELOG.md b/packages/util/CHANGELOG.md index d99d67c2..a7b5b02a 100644 --- a/packages/util/CHANGELOG.md +++ b/packages/util/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.19.21](https://github.com/Codeneos/vlocode/compare/v0.19.20...v0.19.21) (2023-08-02) + +### Features + +* handle expired refresh tokens properly and reset the connection when the Access token updates; should also address issues [#405](https://github.com/Codeneos/vlocode/issues/405) and [#401](https://github.com/Codeneos/vlocode/issues/401) ([f3184c3](https://github.com/Codeneos/vlocode/commit/f3184c3961dfc627921f2f4d9db699c075be751a)) + ## [0.19.20](https://github.com/Codeneos/vlocode/compare/v0.19.19...v0.19.20) (2023-08-01) ### Bug Fixes diff --git a/packages/util/package.json b/packages/util/package.json index b7778dc6..54a24340 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -1,6 +1,6 @@ { "name": "@vlocode/util", - "version": "0.19.20", + "version": "0.19.21", "description": "Vlocode utility library", "main": "lib/index.js", "readme": "../SITE.md", diff --git a/packages/vlocity-deploy/CHANGELOG.md b/packages/vlocity-deploy/CHANGELOG.md index 66a83a9f..ef13740b 100644 --- a/packages/vlocity-deploy/CHANGELOG.md +++ b/packages/vlocity-deploy/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.19.21](https://github.com/Codeneos/vlocode/compare/v0.19.20...v0.19.21) (2023-08-02) + +**Note:** Version bump only for package @vlocode/vlocity-deploy + ## [0.19.20](https://github.com/Codeneos/vlocode/compare/v0.19.19...v0.19.20) (2023-08-01) **Note:** Version bump only for package @vlocode/vlocity-deploy diff --git a/packages/vlocity-deploy/package.json b/packages/vlocity-deploy/package.json index 5f30e4f7..6c66bce5 100644 --- a/packages/vlocity-deploy/package.json +++ b/packages/vlocity-deploy/package.json @@ -1,6 +1,6 @@ { "name": "@vlocode/vlocity-deploy", - "version": "0.19.20", + "version": "0.19.21", "description": "Hyper fast Salesforce/Vlocity datapack deployment library", "keywords": [ "Vlocity", diff --git a/packages/vscode-extension/CHANGELOG.md b/packages/vscode-extension/CHANGELOG.md index 9d5425f1..17218ac9 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.19.21](https://github.com/codeneos/vlocode/compare/v0.19.20...v0.19.21) (2023-08-02) + +### Features + +* handle expired refresh tokens properly and reset the connection when the Access token updates; should also address issues [#405](https://github.com/codeneos/vlocode/issues/405) and [#401](https://github.com/codeneos/vlocode/issues/401) ([f3184c3](https://github.com/codeneos/vlocode/commit/f3184c3961dfc627921f2f4d9db699c075be751a)) + ## [0.19.20](https://github.com/codeneos/vlocode/compare/v0.19.19...v0.19.20) (2023-08-01) **Note:** Version bump only for package vlocode diff --git a/packages/vscode-extension/package.json b/packages/vscode-extension/package.json index 457d6c5b..69f07ddb 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.19.20", + "version": "0.19.21", "license": "MIT", "icon": "resources/icon.png", "author": {