npm package diff

Package: @forge/manifest

Versions: 7.5.4-next.0-experimental-264fa0f - 7.5.4-next.2

Modified:package/out/validators/resources-validator.js

Index: package/out/validators/resources-validator.js
===================================================================
--- package/out/validators/resources-validator.js
+++ package/out/validators/resources-validator.js
@@ -3,9 +3,9 @@
 exports.ResourcesValidator = void 0;
 const tslib_1 = require("tslib");
 const fs_1 = tslib_1.__importDefault(require("fs"));
 const path_1 = require("path");
-const cheerio_1 = require("cheerio");
+const cheerio_1 = tslib_1.__importDefault(require("cheerio"));
 const utils_1 = require("../utils");
 const text_1 = require("../text");
 const utils_2 = require("../utils");
 const MAX_RESOURCE_COUNT = 10;
@@ -87,9 +87,9 @@
                     if (!path)
                         return;
                     if (fs_1.default.existsSync((0, path_1.resolve)(manifestDir, path, 'index.html'))) {
                         const content = fs_1.default.readFileSync((0, path_1.resolve)(manifestDir, path, 'index.html'));
-                        const $ = (0, cheerio_1.load)(content, { xml: { xmlMode: false } });
+                        const $ = cheerio_1.default.load(content);
                         const cspContent = $('meta[http-equiv="Content-Security-Policy"]').attr('content');
                         if (cspContent) {
                             const cspStyleSrc = cspContent.split(';').find((s) => s.startsWith('style-src'));
                             if (cspStyleSrc?.includes("'unsafe-inline'")) {

Modified:package/out/schema/manifest-schema.json

too-big

Modified:package/package.json

Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
 {
   "name": "@forge/manifest",
-  "version": "7.5.4-next.0-experimental-264fa0f",
+  "version": "7.5.4-next.2",
   "description": "Definitions and validations of the Forge manifest",
   "main": "out/index.js",
   "scripts": {
     "build": "yarn run compile",
@@ -27,9 +27,9 @@
     "@forge/util": "1.4.4",
     "@sentry/node": "7.100.1",
     "ajv": "^8.12.0",
     "ajv-formats": "2.1.1",
-    "cheerio": "^1.0.0",
+    "cheerio": "^0.22.0",
     "glob": "^10.3.10",
     "lodash": "^4.17.21",
     "node-fetch": "2.7.0",
     "yaml": "^2.3.4"

Modified:package/out/scopes/shipyard-scopes.json

Index: package/out/scopes/shipyard-scopes.json
===================================================================
--- package/out/scopes/shipyard-scopes.json
+++ package/out/scopes/shipyard-scopes.json
@@ -168,8 +168,10 @@
     "read:deployment:jira-software",
     "read:design:jira",
     "read:dev-info:jira",
     "read:document-info:jira",
+    "read:email-address:confluence",
+    "read:email-address:jira",
     "read:embed:confluence",
     "read:entitlement:jira-service-management",
     "read:entitlement.detail-field:jira-service-management",
     "read:entitlement.detail:jira-service-management",

Modified:package/CHANGELOG.md

Index: package/CHANGELOG.md
===================================================================
--- package/CHANGELOG.md
+++ package/CHANGELOG.md
@@ -1,13 +1,20 @@
 # @forge/manifest
 
-## 7.5.4-next.0-experimental-264fa0f
+## 7.5.4-next.2
 
 ### Patch Changes
 
-- 562a25c: Allow updating manifest schema resources with app-host-artifacts changes on staging
-- 386c1f1: Bump cheerio from version 0.22 to version 1.0
+- c0e7e2f: Add test to validate if the i18n props in manifest json is configured properly
+- 03eba4f: Update manifest definitions
 
+## 7.5.4-next.1
+
+### Patch Changes
+
+- 09d005e: Fix failing unit tests in pipeline
+- 9384afe: Update manifest definitions
+
 ## 7.5.4-next.0
 
 ### Patch Changes

Modified:package/out/schema/manifest.d.ts

too-big