@forge/runtime 5.1.1-next.2 → 5.1.1-next.3

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,14 @@
1
1
  # @forge/runtime
2
2
 
3
+ ## 5.1.1-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - ab7c204: Bumping dependencies via Renovate:
8
+
9
+ - js-yaml
10
+ - @types/js-yaml
11
+
3
12
  ## 5.1.1-next.2
4
13
 
5
14
  ### Patch Changes
@@ -8,6 +17,14 @@
8
17
 
9
18
  - io-ts-reporters
10
19
 
20
+ - e019891: Bumping dependencies via Renovate:
21
+
22
+ - jest-junit
23
+
24
+ - 32f8ae4: Bumping dependencies via Renovate:
25
+
26
+ - jest-junit
27
+
11
28
  ## 5.1.1-next.1
12
29
 
13
30
  ### Patch Changes
@@ -48,7 +48,7 @@ class AppManifest {
48
48
  static async fromFile(filePath) {
49
49
  const fullPath = path_1.default.join(filePath, AppManifest.FILE_NAME);
50
50
  const manifestContents = (0, fs_1.readFileSync)(fullPath, 'utf-8');
51
- const manifest = js_yaml_1.default.safeLoad(manifestContents);
51
+ const manifest = js_yaml_1.default.load(manifestContents);
52
52
  return new AppManifest(manifest);
53
53
  }
54
54
  constructor(manifest) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/runtime",
3
- "version": "5.1.1-next.2",
3
+ "version": "5.1.1-next.3",
4
4
  "description": "A Node.js runtime for Atlassian app functions",
5
5
  "author": "Atlassian",
6
6
  "license": "UNLICENSED",
@@ -14,12 +14,12 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/jest": "^29.5.5",
17
- "@types/js-yaml": "^3.12.8",
17
+ "@types/js-yaml": "^4.0.6",
18
18
  "@types/node": "14.18.63",
19
19
  "@types/node-fetch": "^2.6.6",
20
20
  "@types/ws": "^7.4.7",
21
21
  "jest": "^29.7.0",
22
- "jest-junit": "^7.0.0",
22
+ "jest-junit": "^16.0.0",
23
23
  "nock": "13.3.3",
24
24
  "tmp": "^0.2.1",
25
25
  "ts-jest": "^29.1.1",
@@ -31,7 +31,7 @@
31
31
  "fp-ts": "^2.16.1",
32
32
  "io-ts": "^2.2.20",
33
33
  "io-ts-reporters": "^2.0.1",
34
- "js-yaml": "^3.14.1",
34
+ "js-yaml": "^4.1.0",
35
35
  "node-fetch": "2.7.0",
36
36
  "tslib": "^2.6.2",
37
37
  "ws": "^7.5.9"