@forge/runtime 5.1.1-next.2 → 5.1.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
@@ -1,5 +1,43 @@
1
1
  # @forge/runtime
2
2
 
3
+ ## 5.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 9698e54: Bumping dependencies via Renovate:
8
+
9
+ - io-ts-reporters
10
+
11
+ - e019891: Bumping dependencies via Renovate:
12
+
13
+ - jest-junit
14
+
15
+ - ab7c204: Bumping dependencies via Renovate:
16
+
17
+ - js-yaml
18
+ - @types/js-yaml
19
+
20
+ - ed2cbc8: Bumping dependencies via Renovate:
21
+
22
+ - @types/node-fetch
23
+
24
+ - 9d50860: Bumping dependencies via Renovate:
25
+
26
+ - @types/node
27
+
28
+ - 32f8ae4: Bumping dependencies via Renovate:
29
+
30
+ - jest-junit
31
+
32
+ ## 5.1.1-next.3
33
+
34
+ ### Patch Changes
35
+
36
+ - ab7c204: Bumping dependencies via Renovate:
37
+
38
+ - js-yaml
39
+ - @types/js-yaml
40
+
3
41
  ## 5.1.1-next.2
4
42
 
5
43
  ### Patch Changes
@@ -8,6 +46,14 @@
8
46
 
9
47
  - io-ts-reporters
10
48
 
49
+ - e019891: Bumping dependencies via Renovate:
50
+
51
+ - jest-junit
52
+
53
+ - 32f8ae4: Bumping dependencies via Renovate:
54
+
55
+ - jest-junit
56
+
11
57
  ## 5.1.1-next.1
12
58
 
13
59
  ### 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",
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"