@forge/manifest 11.1.0-next.8 → 11.1.1-next.0

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,34 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 11.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 29741cf: Fixed TypeScript errors in action validators by adding explicit type assertions for string arrays
8
+ - 354f5d1: Update manifest definitions
9
+
10
+ ## 11.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - b5f0775: Add bitbucket:repoCodeFileViewer module and templates
15
+ - af4af6f: Add bitbucket:workspaceGlobalPage module
16
+ - c50eeb5: Added manifest validation for XPA with full page modules
17
+ - beefc94: Added linting for jira:fullPage
18
+ - b9cefff: Add bitbucket:projectSettingsMenuPage module and templates
19
+ - bb6e58a: Add validation for filePattern in Bitbucket file viewer module
20
+
21
+ ### Patch Changes
22
+
23
+ - 559c541: Added rovo:agentConnector validations to check if agentCard and jsonRpcTransport endpoints are valid endpoint references.
24
+ - 2f0c3c2: Add missing entry in i18n test
25
+ - 00eaa35: Fix failing test
26
+ - b5f0775: Update manifest definitions
27
+ - 069288e: Update manifest definitions
28
+ - d317f2e: Update manifest definitions
29
+ - bf0e0f6: Update manifest definitions
30
+ - af4af6f: Update manifest definitions
31
+
3
32
  ## 11.1.0-next.8
4
33
 
5
34
  ### Minor Changes
@@ -16,7 +16,7 @@ exports.validateUndefinedActionName = validateUndefinedActionName;
16
16
  function getUndefinedActionName(allModules) {
17
17
  const actionKey = (0, utils_1.cleanKey)(types_1.AllModuleTypes.CoreAction);
18
18
  const allActions = allModules[actionKey];
19
- return allActions?.filter((action) => !action.name).map((action) => action.key) ?? [];
19
+ return (allActions?.filter((action) => !action.name).map((action) => action.key) ?? []);
20
20
  }
21
21
  function getValidationError(action, yamlContentByLine) {
22
22
  return {
@@ -15,7 +15,7 @@ const validateUnreferencedActions = (allModules, yamlContentByLine) => {
15
15
  exports.validateUnreferencedActions = validateUnreferencedActions;
16
16
  function getUnreferencedActions(allModules) {
17
17
  const actionKey = (0, utils_1.cleanKey)(types_1.AllModuleTypes.CoreAction);
18
- const allActions = new Set(allModules[actionKey]?.map((action) => action.key) ?? []);
18
+ const allActions = new Set((allModules[actionKey]?.map((action) => action.key) ?? []));
19
19
  const rovoAgents = allModules[types_1.AllModuleTypes.RovoAgent];
20
20
  const automationActionProviders = allModules[types_1.AllModuleTypes.AutomationActionProvider];
21
21
  rovoAgents?.forEach((agent) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "11.1.0-next.8",
3
+ "version": "11.1.1-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {