@salesforce/core 2.37.0 → 2.37.1

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
+ ### [2.37.1](https://github.com/forcedotcom/sfdx-core/compare/v2.37.0...v2.37.1) (2022-05-04)
6
+
7
+ ### Bug Fixes
8
+
9
+ - disable schemaValidation ([#577](https://github.com/forcedotcom/sfdx-core/issues/577)) ([b2fe619](https://github.com/forcedotcom/sfdx-core/commit/b2fe619586dcba3de97100bf2a73a2d142883c7d))
10
+
5
11
  ## [2.37.0](https://github.com/forcedotcom/sfdx-core/compare/v2.36.4...v2.37.0) (2022-05-03)
6
12
 
7
13
  ### Features
@@ -82,6 +82,9 @@ class SchemaValidator {
82
82
  // because the CLI team does not "own" the @salesforce/schemas repository.
83
83
  // Invalid schema would cause errors wherever SchemaValidator is used.
84
84
  strictSchema: false,
85
+ // If we end up getting an npm-shrinkwrap working in the future we could turn this back off.
86
+ // https://github.com/forcedotcom/cli/issues/1493
87
+ validateSchema: false,
85
88
  });
86
89
  // JSEN to AJV migration note - regarding the following "TODO":
87
90
  // I don't think that AJV has a way to throw an error if an additional property exists in the data
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "2.37.0",
3
+ "version": "2.37.1",
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",