@equinor/fusion-framework-dev-portal 1.1.4 → 1.2.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 +74 -0
- package/dev-server.ts +5 -0
- package/dist/main.js +36571 -31844
- package/package.json +19 -18
- package/src/AppLoader.tsx +3 -2
- package/src/ContextSelector/ContextSelector.tsx +3 -2
- package/src/FusionLogo.tsx +56 -50
- package/src/Header.tsx +3 -2
- package/src/config.ts +47 -8
- package/src/version.ts +1 -1
- package/tsconfig.json +3 -0
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,79 @@
|
|
|
1
1
|
# @equinor/fusion-framework-dev-portal
|
|
2
2
|
|
|
3
|
+
## 1.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3542](https://github.com/equinor/fusion-framework/pull/3542) [`2d4fd18`](https://github.com/equinor/fusion-framework/commit/2d4fd18394e8545b4616140a93a369d5ae77ccbc) Thanks [@eikeland](https://github.com/eikeland)! - Updated person component dependencies for improved functionality and bug fixes.
|
|
8
|
+
|
|
9
|
+
- Updated `@equinor/fusion-react-person` from `^0.10.3` to `^0.10.10` in app-react-people cookbook
|
|
10
|
+
- Updated `@equinor/fusion-wc-person` from `^3.1.8` to `^3.2.4` in dev-portal and people-resolver packages
|
|
11
|
+
|
|
12
|
+
- [#3547](https://github.com/equinor/fusion-framework/pull/3547) [`99a3c26`](https://github.com/equinor/fusion-framework/commit/99a3c26275c2089c3708124f5819ce383d8dc3dc) Thanks [@odinr](https://github.com/odinr)! - Enhanced dev-portal with portal proxy service worker configuration ([Issue #3546](https://github.com/equinor/fusion-framework/issues/3546)).
|
|
13
|
+
|
|
14
|
+
- Added `/portal-proxy` service worker resource configuration in dev-server.ts
|
|
15
|
+
- Routes portal proxy requests to Fusion portal service API (`/@fusion-api/portals`)
|
|
16
|
+
- Enables portal proxy functionality for testing against real portal environments
|
|
17
|
+
|
|
18
|
+
This change supports the portal proxy feature by configuring the service worker to properly route portal requests through the dev-server proxy system.
|
|
19
|
+
|
|
20
|
+
## 1.2.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- [#3522](https://github.com/equinor/fusion-framework/pull/3522) [`63ac6a1`](https://github.com/equinor/fusion-framework/commit/63ac6a1178fc6f6b0702f51a9c36a67db76b92cd) Thanks [@odinr](https://github.com/odinr)! - Add comprehensive telemetry integration to the Fusion Dev Portal.
|
|
25
|
+
|
|
26
|
+
**New Features:**
|
|
27
|
+
|
|
28
|
+
- Enable telemetry tracking for portal usage analytics and monitoring
|
|
29
|
+
- Configure portal-specific metadata including version and name identification
|
|
30
|
+
- Set up telemetry event scoping for portal-specific tracking
|
|
31
|
+
- Attach framework configurator events for comprehensive telemetry coverage
|
|
32
|
+
|
|
33
|
+
**Technical Implementation:**
|
|
34
|
+
|
|
35
|
+
- Integrate `@equinor/fusion-framework-module-telemetry` module
|
|
36
|
+
- Configure telemetry with portal metadata (`type: 'portal-telemetry'`)
|
|
37
|
+
- Set default scope to `['portal']` for event categorization
|
|
38
|
+
- Establish parent-child telemetry relationship for consistent tracking
|
|
39
|
+
- Add TypeScript path references for telemetry module
|
|
40
|
+
|
|
41
|
+
**Configuration Updates:**
|
|
42
|
+
|
|
43
|
+
- Enhanced `config.ts` with detailed telemetry setup and documentation
|
|
44
|
+
- Updated dependency versions to use `workspace:*` for better monorepo compatibility
|
|
45
|
+
- Improved code documentation and developer experience features
|
|
46
|
+
|
|
47
|
+
resolves: [#3485](https://github.com/equinor/fusion-framework/issues/3485)
|
|
48
|
+
|
|
49
|
+
### Patch Changes
|
|
50
|
+
|
|
51
|
+
- [#3515](https://github.com/equinor/fusion-framework/pull/3515) [`6cb288b`](https://github.com/equinor/fusion-framework/commit/6cb288b9e1ec4fae68ae6899735c176837bb4275) Thanks [@odinr](https://github.com/odinr)! - ## Global Biome Configuration Modernization
|
|
52
|
+
|
|
53
|
+
**Workspace-wide changes:**
|
|
54
|
+
|
|
55
|
+
- Remove 19 rule overrides from `biome.json` to use Biome's strict "error" defaults
|
|
56
|
+
- Enable `correctness/useUniqueElementIds` accessibility rule globally
|
|
57
|
+
- Reduce configuration size by 40% (60+ → ~35 lines)
|
|
58
|
+
- Eliminate all custom linting rule customizations
|
|
59
|
+
|
|
60
|
+
**Package-specific changes:**
|
|
61
|
+
|
|
62
|
+
- Replace static IDs with React `useId()` hooks in bookmark and dev-portal components
|
|
63
|
+
- Fix `suspicious/noAssignInExpressions` violations in context, legacy-interopt, and observable packages
|
|
64
|
+
- Update 11 React components for accessibility compliance
|
|
65
|
+
|
|
66
|
+
**Impact:** All packages now use consistent, strict code quality enforcement with zero custom rule overrides.
|
|
67
|
+
|
|
68
|
+
resolves: [#3494](https://github.com/equinor/fusion-framework/issues/3494)
|
|
69
|
+
resolves: [#3495](https://github.com/equinor/fusion-framework/issues/3495)
|
|
70
|
+
|
|
71
|
+
- [#3479](https://github.com/equinor/fusion-framework/pull/3479) [`11b5a00`](https://github.com/equinor/fusion-framework/commit/11b5a00047171f9969cabbcbbb53dd188ed8421e) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump dotenv from 17.2.2 to 17.2.3 (TypeScript definition fix)
|
|
72
|
+
|
|
73
|
+
- [#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.
|
|
74
|
+
|
|
75
|
+
This patch update fixes bugs and improves stability in the vite dependency.
|
|
76
|
+
|
|
3
77
|
## 1.1.4
|
|
4
78
|
|
|
5
79
|
### Patch Changes
|