@forge/cli-shared 3.14.0-next.0 → 3.14.0-next.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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.14.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2517649d: Copy changes for simplified user consent
8
+
3
9
  ## 3.14.0-next.0
4
10
 
5
11
  ### Minor Changes
package/out/ui/text.js CHANGED
@@ -553,7 +553,7 @@ What do you like or don't like about Forge? Share your feedback below or press C
553
553
  optionConfirmScopes: 'skip confirmation of scopes for the app before installing or upgrading the app',
554
554
  optionUpgrade: 'upgrade an existing installation',
555
555
  listScopes: (scopes) => `Your app will be installed with the following scopes:\n${scopes
556
- .map(({ name, requiresInteractiveConsent }) => `- ${name}${requiresInteractiveConsent ? ' (requires interactive consent)' : ''}`)
556
+ .map(({ name, requiresInteractiveConsent }) => `- ${name}${requiresInteractiveConsent ? ' (requires user consent)' : ''}`)
557
557
  .join('\n')}\n`,
558
558
  listEgressAddresses: (egressAddresses) => `Your app will exchange data with the following urls:\n${egressAddresses.map((url) => `- ${url}`).join('\n')}\n`,
559
559
  permissionsMismatch: (environment) => `The scopes or egress URLs in the manifest are different from the scopes in your most recent deployment to ${environment}. Try running ${chalk_1.default.bold(`forge deploy -e ${environment}`)} before installing.\n`,
@@ -620,7 +620,7 @@ ${buildTerminalLink(link)}\n`,
620
620
  error: `Upgrade failed`
621
621
  },
622
622
  listScopes: (scopes) => `Your app will be upgraded with the following additional scopes:\n${scopes
623
- .map(({ name, requiresInteractiveConsent }) => `- ${name}${requiresInteractiveConsent ? ' (requires interactive consent)' : ''}`)
623
+ .map(({ name, requiresInteractiveConsent }) => `- ${name}${requiresInteractiveConsent ? ' (requires user consent)' : ''}`)
624
624
  .join('\n')}\n`,
625
625
  listEgressAddresses: (egressAddresses) => `Your app will exchange data with the following urls:\n${egressAddresses.map((url) => `- ${url}`).join('\n')}\n`,
626
626
  permissionsMismatch: (environment) => `The scopes or egress URLs in the manifest are different from the scopes in your most recent deployment to ${environment}. Try running ${chalk_1.default.bold(`forge deploy -e ${environment}`)} before upgrading.\n`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/cli-shared",
3
- "version": "3.14.0-next.0",
3
+ "version": "3.14.0-next.1",
4
4
  "description": "Common functionality for Forge CLI",
5
5
  "author": "Atlassian",
6
6
  "license": "UNLICENSED",