@forge/cli-shared 9.5.1-next.5 → 9.6.0-next.7
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 +14 -0
- package/out/graphql/graphql-types.d.ts +465 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +84 -52
- package/out/shared/developer-console.d.ts +10 -0
- package/out/shared/developer-console.d.ts.map +1 -0
- package/out/shared/developer-console.js +41 -0
- package/out/shared/index.d.ts +1 -0
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/out/ui/command-line-ui.d.ts +9 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +100 -6
- package/out/ui/text.d.ts +13 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +19 -5
- package/out/ui/ui.d.ts +2 -1
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 9.6.0-next.7
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4f14f40: Added the `forge console` command to open your app in the developer console overview page. The command prints a link to the console for the current app (identified by the manifest).
|
|
8
|
+
|
|
9
|
+
Refactored developer console URL construction to use a centralized registry pattern (`getDevConsoleUrl`), replacing `getAppOverviewUrl` and `getDeveloperConsoleBaseUrl`. This fixes hardcoded production-domain URLs that broke on staging (`forge deploy` distribution link and `forge install` permission-denied link now work correctly on staging). All console links are now clickable terminal links.
|
|
10
|
+
|
|
11
|
+
## 9.6.0-next.6
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 406407c: Added secret key support for authorised web-triggers, plus non-expiring keys via `--noKeyExpiry` on `forge webtrigger create` and `secretKeyConfig.noExpiry` in `@forge/api`
|
|
16
|
+
|
|
3
17
|
## 9.5.1-next.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|