@equinor/fusion-framework-cli 12.1.3 → 12.2.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 +36 -0
- package/bin/build/bin.mjs +1 -1
- package/bin/build/cli.mjs +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/bin/app-check.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/docs/dev-server-config.md +382 -0
- package/docs/dev-server.md +4 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 12.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3512](https://github.com/equinor/fusion-framework/pull/3512) [`6f17817`](https://github.com/equinor/fusion-framework/commit/6f17817d3e1290d0befca8bb528728128612f8f1) Thanks [@eikeland](https://github.com/eikeland)! - Enhanced app management commands with pre-flight registration checks.
|
|
8
|
+
|
|
9
|
+
- Modified `checkApp` function to return boolean values instead of log results for better programmatic usage
|
|
10
|
+
- Added handling for HTTP 410 status (deleted apps) in app registration checks
|
|
11
|
+
- Added pre-flight app registration validation to `publish` and `upload` commands
|
|
12
|
+
- Commands now exit early if the app is not registered or has been deleted from the app store
|
|
13
|
+
- Improved error handling and user feedback for app registration status
|
|
14
|
+
|
|
15
|
+
This prevents publishing/uploading apps that are not registered in the app store, improving reliability and user experience.
|
|
16
|
+
|
|
17
|
+
Thanks to @odinr for reporting this issue.
|
|
18
|
+
|
|
19
|
+
Closes #3397
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- [#3534](https://github.com/equinor/fusion-framework/pull/3534) [`8049b43`](https://github.com/equinor/fusion-framework/commit/8049b43847370c73814939f258a86723329b6b3c) Thanks [@odinr](https://github.com/odinr)! - Enhanced dev-server documentation with comprehensive configuration guide.
|
|
24
|
+
|
|
25
|
+
- Added detailed `dev-server-config.md` documentation covering configuration options, API mocking, service discovery customization, and template environment overrides
|
|
26
|
+
- Updated main `dev-server.md` documentation with improved architecture overview and configuration reference
|
|
27
|
+
- Provided practical examples and troubleshooting guidance for dev-server configuration
|
|
28
|
+
|
|
29
|
+
ref: [#3523](https://github.com/equinor/fusion-framework/issues/3523)
|
|
30
|
+
|
|
31
|
+
- [#3532](https://github.com/equinor/fusion-framework/pull/3532) [`63ecde5`](https://github.com/equinor/fusion-framework/commit/63ecde5c29e775b341c3fac0c1eeb7123db5e2db) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump vite from 7.1.8 to 7.1.9 across development tools and plugins.
|
|
32
|
+
|
|
33
|
+
This patch update fixes bugs and improves stability in the vite dependency.
|
|
34
|
+
|
|
35
|
+
- Updated dependencies [[`6cb288b`](https://github.com/equinor/fusion-framework/commit/6cb288b9e1ec4fae68ae6899735c176837bb4275), [`11b5a00`](https://github.com/equinor/fusion-framework/commit/11b5a00047171f9969cabbcbbb53dd188ed8421e), [`63ac6a1`](https://github.com/equinor/fusion-framework/commit/63ac6a1178fc6f6b0702f51a9c36a67db76b92cd), [`63ecde5`](https://github.com/equinor/fusion-framework/commit/63ecde5c29e775b341c3fac0c1eeb7123db5e2db)]:
|
|
36
|
+
- @equinor/fusion-framework-dev-portal@1.2.0
|
|
37
|
+
- @equinor/fusion-framework-dev-server@1.1.4
|
|
38
|
+
|
|
3
39
|
## 12.1.3
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|