@forge/manifest 4.20.2-next.0 → 4.20.2-next.2

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
@@ -1,5 +1,22 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 4.20.2-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - ab7c204: Bumping dependencies via Renovate:
8
+
9
+ - js-yaml
10
+ - @types/js-yaml
11
+
12
+ ## 4.20.2-next.1
13
+
14
+ ### Patch Changes
15
+
16
+ - 9d50860c: Bumping dependencies via Renovate:
17
+
18
+ - @types/node
19
+
3
20
  ## 4.20.2-next.0
4
21
 
5
22
  ### Patch Changes
@@ -15,7 +15,7 @@ class YamlValidator {
15
15
  }
16
16
  try {
17
17
  const content = fs_1.default.readFileSync(manifest.filePath, 'utf8');
18
- const manifestContent = js_yaml_1.default.safeLoad(content);
18
+ const manifestContent = js_yaml_1.default.load(content);
19
19
  return {
20
20
  success: true,
21
21
  manifestObject: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "4.20.2-next.0",
3
+ "version": "4.20.2-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {
@@ -16,8 +16,8 @@
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/jest": "^29.5.5",
19
- "@types/js-yaml": "^3.12.8",
20
- "@types/node": "14.18.61",
19
+ "@types/js-yaml": "^4.0.6",
20
+ "@types/node": "14.18.63",
21
21
  "@types/node-fetch": "^2.6.6"
22
22
  },
23
23
  "author": "Atlassian",
@@ -26,7 +26,7 @@
26
26
  "@forge/util": "1.3.1",
27
27
  "ajv": "^8.12.0",
28
28
  "cheerio": "^0.22.0",
29
- "js-yaml": "^3.14.1",
29
+ "js-yaml": "^4.1.0",
30
30
  "json-schema-to-typescript": "^9.1.1",
31
31
  "lodash": "^4.17.21",
32
32
  "node-fetch": "2.7.0",