@equinor/fusion-framework-dev-portal 1.2.0 → 1.2.2

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,28 @@
1
1
  # @equinor/fusion-framework-dev-portal
2
2
 
3
+ ## 1.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3557](https://github.com/equinor/fusion-framework/pull/3557) [`8c6f679`](https://github.com/equinor/fusion-framework/commit/8c6f6790c69cca01bde55d622418040da1c5c9fc) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Update deps of `@equinor/fusion-react-context-selector@1.0.6`
8
+
9
+ ## 1.2.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#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.
14
+
15
+ - Updated `@equinor/fusion-react-person` from `^0.10.3` to `^0.10.10` in app-react-people cookbook
16
+ - Updated `@equinor/fusion-wc-person` from `^3.1.8` to `^3.2.4` in dev-portal and people-resolver packages
17
+
18
+ - [#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)).
19
+
20
+ - Added `/portal-proxy` service worker resource configuration in dev-server.ts
21
+ - Routes portal proxy requests to Fusion portal service API (`/@fusion-api/portals`)
22
+ - Enables portal proxy functionality for testing against real portal environments
23
+
24
+ This change supports the portal proxy feature by configuring the service worker to properly route portal requests through the dev-server proxy system.
25
+
3
26
  ## 1.2.0
4
27
 
5
28
  ### Minor Changes
package/dev-server.ts CHANGED
@@ -53,6 +53,11 @@ if (serviceScopes.length === 0) {
53
53
  rewrite: '/@fusion-api/help',
54
54
  scopes: serviceScopes,
55
55
  },
56
+ {
57
+ url: '/portal-proxy',
58
+ rewrite: '/@fusion-api/portals',
59
+ scopes: serviceScopes,
60
+ },
56
61
  ],
57
62
  },
58
63
  },