@salesforce/core 3.19.4 → 3.19.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [3.19.5](https://github.com/forcedotcom/sfdx-core/compare/v3.19.4...v3.19.5) (2022-06-06)
6
+
7
+ ### Bug Fixes
8
+
9
+ - update `NamedOrgNotFound` err name ([6a6a627](https://github.com/forcedotcom/sfdx-core/commit/6a6a62782046858c062ecb24a1d28631ea1f3bbe))
10
+
5
11
  ### [3.19.4](https://github.com/forcedotcom/sfdx-core/compare/v3.19.3...v3.19.4) (2022-06-06)
6
12
 
7
13
  ### Bug Fixes
@@ -203,7 +203,7 @@ const checkOrgDoesntExist = async (scratchOrgInfo) => {
203
203
  catch (error) {
204
204
  const sfError = sfError_1.SfError.wrap(error);
205
205
  // if an AuthInfo couldn't be created that means no AuthFile exists.
206
- if (sfError.name === 'NamedOrgNotFound') {
206
+ if (sfError.name === 'NamedOrgNotFoundError') {
207
207
  return;
208
208
  }
209
209
  // Something unexpected
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "3.19.4",
3
+ "version": "3.19.5",
4
4
  "description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",