@equinor/fusion-framework-cli 9.8.0 → 10.0.0-widget-47330bca
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 +422 -362
- package/dist/bin/build-application.js +2 -1
- package/dist/bin/build-application.js.map +1 -1
- package/dist/bin/bundle-application.js +2 -2
- package/dist/bin/bundle-application.js.map +1 -1
- package/dist/bin/bundle-widget.js +61 -0
- package/dist/bin/bundle-widget.js.map +1 -0
- package/dist/bin/create-dev-serve.js +21 -3
- package/dist/bin/create-dev-serve.js.map +1 -1
- package/dist/bin/create-export-config.js.map +1 -1
- package/dist/bin/create-export-manifest-widget.js +68 -0
- package/dist/bin/create-export-manifest-widget.js.map +1 -0
- package/dist/bin/create-export-manifest.js.map +1 -1
- package/dist/bin/dev-portal/AppLoader.js.map +1 -1
- package/dist/bin/dev-portal/ContextSelector.js.map +1 -1
- package/dist/bin/dev-portal/PersonSideSheet/index.js.map +1 -1
- package/dist/bin/dev-portal/config.js +2 -0
- package/dist/bin/dev-portal/config.js.map +1 -1
- package/dist/bin/dev-proxy.js +13 -3
- package/dist/bin/dev-proxy.js.map +1 -1
- package/dist/bin/main.app.js +8 -2
- package/dist/bin/main.app.js.map +1 -1
- package/dist/bin/main.js +2 -0
- package/dist/bin/main.js.map +1 -1
- package/dist/bin/main.widget.js +78 -0
- package/dist/bin/main.widget.js.map +1 -0
- package/dist/bin/public/assets/{index-Wjdyh2CN.js → index-UrNngCGF.js} +1234 -621
- package/dist/bin/public/index.html +1 -1
- package/dist/bin/utils/format.js.map +1 -1
- package/dist/bin/utils/load-app-config.js.map +1 -1
- package/dist/bin/utils/load-dev-proxy.js +48 -0
- package/dist/bin/utils/load-dev-proxy.js.map +1 -0
- package/dist/bin/utils/load-manifest.js.map +1 -1
- package/dist/bin/utils/load-vite-config.js.map +1 -1
- package/dist/bin/utils/load-widget-manifest.js +35 -0
- package/dist/bin/utils/load-widget-manifest.js.map +1 -0
- package/dist/bin/utils/load-widget-package.js +24 -0
- package/dist/bin/utils/load-widget-package.js.map +1 -0
- package/dist/lib/app-config.js.map +1 -1
- package/dist/lib/app-manifest.js.map +1 -1
- package/dist/lib/app-package.js.map +1 -1
- package/dist/lib/dev-config.js +9 -0
- package/dist/lib/dev-config.js.map +1 -0
- package/dist/lib/index.js +3 -0
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/utils/assert.js.map +1 -1
- package/dist/lib/utils/config.js.map +1 -1
- package/dist/lib/utils/file-exists.js.map +1 -1
- package/dist/lib/utils/ts-transpile.js.map +1 -1
- package/dist/lib/vite-config.js +5 -2
- package/dist/lib/vite-config.js.map +1 -1
- package/dist/lib/vite-logger.js.map +1 -1
- package/dist/lib/widget-config.js +57 -0
- package/dist/lib/widget-config.js.map +1 -0
- package/dist/lib/widget-manifest.js +73 -0
- package/dist/lib/widget-manifest.js.map +1 -0
- package/dist/lib/widget-package.js +33 -0
- package/dist/lib/widget-package.js.map +1 -0
- package/dist/types/bin/build-application.d.ts +1 -0
- package/dist/types/bin/bundle-application.d.ts +1 -0
- package/dist/types/bin/bundle-widget.d.ts +5 -0
- package/dist/types/bin/create-dev-serve.d.ts +3 -0
- package/dist/types/bin/create-export-manifest-widget.d.ts +20 -0
- package/dist/types/bin/dev-portal/PersonSideSheet/sheets/Styled.d.ts +1087 -4
- package/dist/types/bin/dev-proxy.d.ts +9 -1
- package/dist/types/bin/main.widget.d.ts +3 -0
- package/dist/types/bin/utils/format.d.ts +0 -1
- package/dist/types/bin/utils/load-dev-proxy.d.ts +3 -0
- package/dist/types/bin/utils/load-widget-manifest.d.ts +8 -0
- package/dist/types/bin/utils/load-widget-package.d.ts +5 -0
- package/dist/types/lib/dev-config.d.ts +13 -0
- package/dist/types/lib/index.d.ts +3 -0
- package/dist/types/lib/utils/assert.d.ts +0 -1
- package/dist/types/lib/utils/config.d.ts +3 -0
- package/dist/types/lib/widget-config.d.ts +26 -0
- package/dist/types/lib/widget-manifest.d.ts +53 -0
- package/dist/types/lib/widget-package.d.ts +23 -0
- package/dist/types/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,646 +1,706 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 10.0.0-widget-47330bca
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#1854](https://github.com/equinor/fusion-framework/pull/1854) [`0709eda`](https://github.com/equinor/fusion-framework/commit/0709edaff0b2bdd9b7cd5e9c247f3dd389d7440d) Thanks [@Noggling](https://github.com/Noggling)! - Expanding the Fusion CLI introduces the capability to create widgets, enhancing development server configuration via `dev.config.ts`.
|
|
8
|
+
|
|
9
|
+
The development configuration empowers users to tailor the underlying Express server.
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
import { createDevConfig } from '@equinor/fusion-framework-cli';
|
|
13
|
+
import httpProxy from 'http-proxy';
|
|
14
|
+
|
|
15
|
+
const proxy = httpProxy.createProxyServer();
|
|
16
|
+
|
|
17
|
+
const targetServer = 'http://example.com';
|
|
18
|
+
|
|
19
|
+
export default createDevConfig(() => ({
|
|
20
|
+
express: (app) => {
|
|
21
|
+
app.all('*', (req, res) => {
|
|
22
|
+
proxy.web(req, res, { target: targetServer });
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
// Error handling for proxy
|
|
26
|
+
proxy.on('error', (err, req, res) => {
|
|
27
|
+
console.error('Proxy Error:', err);
|
|
28
|
+
res.status(500).send('Proxy Error');
|
|
29
|
+
});
|
|
30
|
+
},
|
|
31
|
+
}));
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
```typescript
|
|
35
|
+
import { createDevConfig } from '@equinor/fusion-framework-cli';
|
|
36
|
+
|
|
37
|
+
export default createDevConfig(() => ({
|
|
38
|
+
widgets: [
|
|
39
|
+
{
|
|
40
|
+
entryPoint: '/src/index.ts',
|
|
41
|
+
assetPath: '../widget-react-test/',
|
|
42
|
+
name: 'widget1',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
entryPoint: '/src/index.ts',
|
|
46
|
+
assetPath: '../widget-react-test2/',
|
|
47
|
+
name: 'widget2',
|
|
48
|
+
},
|
|
49
|
+
],
|
|
50
|
+
}));
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Additionally, a helper for widget development has been incorporated. The entry point can be configured to both compiled and source code. If set to source, developers gain the ability to utilize hot module replacements/auto-reload during development.
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- Updated dependencies [[`0709eda`](https://github.com/equinor/fusion-framework/commit/0709edaff0b2bdd9b7cd5e9c247f3dd389d7440d)]:
|
|
58
|
+
- @equinor/fusion-framework-react-widget@1.0.1-widget-47330bca
|
|
59
|
+
|
|
60
|
+
## 9.8.1
|
|
61
|
+
|
|
62
|
+
### Patch Changes
|
|
63
|
+
|
|
64
|
+
- [#1839](https://github.com/equinor/fusion-framework/pull/1839) [`f2e5d9f`](https://github.com/equinor/fusion-framework/commit/f2e5d9f78546b4e933f012d58081439a1c2f5554) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bumps @equinor/fusion-wc-person to 2.5.1
|
|
65
|
+
|
|
66
|
+
- Updated dependencies [[`f2e5d9f`](https://github.com/equinor/fusion-framework/commit/f2e5d9f78546b4e933f012d58081439a1c2f5554)]:
|
|
67
|
+
- @equinor/fusion-framework-react-components-people-provider@1.2.1
|
|
68
|
+
|
|
3
69
|
## 9.8.0
|
|
4
70
|
|
|
5
71
|
### Minor Changes
|
|
6
72
|
|
|
7
|
-
-
|
|
73
|
+
- [#1827](https://github.com/equinor/fusion-framework/pull/1827) [`91a5782`](https://github.com/equinor/fusion-framework/commit/91a5782d22b25c562a1c65cc702bee1c96b97737) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Update @equinor/fusion-react-person to 0.7.0 and @equinor/fusion-wc-person to 2.4.0
|
|
8
74
|
|
|
9
75
|
### Patch Changes
|
|
10
76
|
|
|
11
|
-
-
|
|
77
|
+
- [#1823](https://github.com/equinor/fusion-framework/pull/1823) [`9733563`](https://github.com/equinor/fusion-framework/commit/9733563ad072a6c21d61952d6d71978b88612ac5) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump @equinor/eds-core-react from 0.35.1 to 0.36.0
|
|
12
78
|
|
|
13
|
-
-
|
|
14
|
-
|
|
79
|
+
- Updated dependencies [[`91a5782`](https://github.com/equinor/fusion-framework/commit/91a5782d22b25c562a1c65cc702bee1c96b97737)]:
|
|
80
|
+
- @equinor/fusion-framework-react-components-people-provider@1.2.0
|
|
15
81
|
|
|
16
82
|
## 9.7.0
|
|
17
83
|
|
|
18
84
|
### Minor Changes
|
|
19
85
|
|
|
20
|
-
-
|
|
86
|
+
- [#1801](https://github.com/equinor/fusion-framework/pull/1801) [`6e8fb78`](https://github.com/equinor/fusion-framework/commit/6e8fb78698fe11402ceef8d8ab48530bb8866699) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump commander from 11.1.0 to 12.0.0
|
|
21
87
|
|
|
22
|
-
|
|
88
|
+
see [changelog](https://github.com/tj/commander.js/releases/tag/v12.0.0)
|
|
23
89
|
|
|
24
90
|
### Patch Changes
|
|
25
91
|
|
|
26
|
-
-
|
|
92
|
+
- [#1719](https://github.com/equinor/fusion-framework/pull/1719) [`5658d04`](https://github.com/equinor/fusion-framework/commit/5658d04bac8957fd3741083385bc2d7871da7df9) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-context-selector from 0.5.0 to 0.6.0
|
|
27
93
|
|
|
28
94
|
## 9.6.4
|
|
29
95
|
|
|
30
96
|
### Patch Changes
|
|
31
97
|
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
98
|
+
- Updated dependencies []:
|
|
99
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.15
|
|
100
|
+
- @equinor/fusion-framework-app@8.1.1
|
|
101
|
+
- @equinor/fusion-framework-module-feature-flag@1.0.2
|
|
36
102
|
|
|
37
103
|
## 9.6.3
|
|
38
104
|
|
|
39
105
|
### Patch Changes
|
|
40
106
|
|
|
41
|
-
-
|
|
107
|
+
- [#1786](https://github.com/equinor/fusion-framework/pull/1786) [`a5f74f2`](https://github.com/equinor/fusion-framework/commit/a5f74f2096a55c4dab4b1d263bd39cd0dc39ac7a) Thanks [@odinr](https://github.com/odinr)! - support resources in `defineAppManifest`
|
|
42
108
|
|
|
43
|
-
|
|
109
|
+
ref [issue 286](https://github.com/equinor/fusion/issues/286#issuecomment-1923401234)
|
|
44
110
|
|
|
45
111
|
## 9.6.2
|
|
46
112
|
|
|
47
113
|
### Patch Changes
|
|
48
114
|
|
|
49
|
-
-
|
|
50
|
-
|
|
51
|
-
|
|
115
|
+
- Updated dependencies [[`09f8dd2`](https://github.com/equinor/fusion-framework/commit/09f8dd2dad31e8de47409e6bd751f74e3dd02607), [`0f3affa`](https://github.com/equinor/fusion-framework/commit/0f3affa45b7b7dc0a0f01682682293e4b899a5d9)]:
|
|
116
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.14
|
|
117
|
+
- @equinor/fusion-framework-app@8.1.0
|
|
52
118
|
|
|
53
119
|
## 9.6.1
|
|
54
120
|
|
|
55
121
|
### Patch Changes
|
|
56
122
|
|
|
57
|
-
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
123
|
+
- Updated dependencies [[`036546f`](https://github.com/equinor/fusion-framework/commit/036546f2e3d9c0d289c7145da84e940673027b5e), [`d0c0c6a`](https://github.com/equinor/fusion-framework/commit/d0c0c6a971a478e3f447663bf50b4e3a7cb1517e)]:
|
|
124
|
+
- @equinor/fusion-observable@8.1.5
|
|
125
|
+
- @equinor/fusion-framework-module-feature-flag@1.0.1
|
|
126
|
+
- @equinor/fusion-framework-app@8.0.1
|
|
127
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.13
|
|
62
128
|
|
|
63
129
|
## 9.6.0
|
|
64
130
|
|
|
65
131
|
### Minor Changes
|
|
66
132
|
|
|
67
|
-
-
|
|
133
|
+
- [#1747](https://github.com/equinor/fusion-framework/pull/1747) [`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e) Thanks [@odinr](https://github.com/odinr)! - refactor side-sheet for displaying framework and application feature flags
|
|
68
134
|
|
|
69
135
|
### Patch Changes
|
|
70
136
|
|
|
71
|
-
-
|
|
137
|
+
- [#1754](https://github.com/equinor/fusion-framework/pull/1754) [`81e7db7`](https://github.com/equinor/fusion-framework/commit/81e7db74690aa7284584d3820494cb71e6ad6c91) Thanks [@eikeland](https://github.com/eikeland)! - Updating eds packages to mitigate type errors after latest version, @equinor/ids-icons >= 0.20.0.
|
|
72
138
|
|
|
73
|
-
-
|
|
139
|
+
- [`cb20fc1`](https://github.com/equinor/fusion-framework/commit/cb20fc1a0259a8e0f91d43e44a035b2ad26951f3) Thanks [@odinr](https://github.com/odinr)! - [security update](https://github.com/equinor/fusion-framework/security/dependabot/90)
|
|
74
140
|
|
|
75
|
-
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
141
|
+
- Updated dependencies [[`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e), [`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e)]:
|
|
142
|
+
- @equinor/fusion-framework-app@8.0.0
|
|
143
|
+
- @equinor/fusion-framework-module-feature-flag@1.0.0
|
|
144
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.12
|
|
79
145
|
|
|
80
146
|
## 9.5.10
|
|
81
147
|
|
|
82
148
|
### Patch Changes
|
|
83
149
|
|
|
84
|
-
-
|
|
150
|
+
- [#1738](https://github.com/equinor/fusion-framework/pull/1738) [`1241772`](https://github.com/equinor/fusion-framework/commit/124177256696f2d83f739a1bbc9022c9840db106) Thanks [@eikeland](https://github.com/eikeland)! - Updating fwc-person
|
|
85
151
|
|
|
86
152
|
## 9.5.9
|
|
87
153
|
|
|
88
154
|
### Patch Changes
|
|
89
155
|
|
|
90
|
-
-
|
|
91
|
-
|
|
156
|
+
- Updated dependencies []:
|
|
157
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.11
|
|
92
158
|
|
|
93
159
|
## 9.5.8
|
|
94
160
|
|
|
95
161
|
### Patch Changes
|
|
96
162
|
|
|
97
|
-
-
|
|
163
|
+
- [#1215](https://github.com/equinor/fusion-framework/pull/1215) [`1918c82`](https://github.com/equinor/fusion-framework/commit/1918c8228bc7158c4c358aa8f5688342e3b11b1d) Thanks [@odinr](https://github.com/odinr)! - Adding PersonSidesheet to cli with featuretoggler
|
|
98
164
|
|
|
99
|
-
-
|
|
100
|
-
|
|
101
|
-
|
|
165
|
+
- Updated dependencies [[`1918c82`](https://github.com/equinor/fusion-framework/commit/1918c8228bc7158c4c358aa8f5688342e3b11b1d), [`1918c82`](https://github.com/equinor/fusion-framework/commit/1918c8228bc7158c4c358aa8f5688342e3b11b1d)]:
|
|
166
|
+
- @equinor/fusion-framework-module-feature-flag@0.0.1
|
|
167
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.10
|
|
102
168
|
|
|
103
169
|
## 9.5.7
|
|
104
170
|
|
|
105
171
|
### Patch Changes
|
|
106
172
|
|
|
107
|
-
-
|
|
173
|
+
- [`cb39579`](https://github.com/equinor/fusion-framework/commit/cb39579d8845df2f8b2a8e0b1afc04e1cc8dd8a6) Thanks [@odinr](https://github.com/odinr)! - prevent code splitting in the CLI
|
|
108
174
|
|
|
109
175
|
## 9.5.6
|
|
110
176
|
|
|
111
177
|
### Patch Changes
|
|
112
178
|
|
|
113
|
-
-
|
|
179
|
+
- [#1556](https://github.com/equinor/fusion-framework/pull/1556) [`1e0eda4`](https://github.com/equinor/fusion-framework/commit/1e0eda439f9096d91506b4bfae17ad4d03efab73) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @equinor/fusion-react-person from 0.6.0 to 0.6.1
|
|
114
180
|
|
|
115
|
-
-
|
|
181
|
+
- [#1614](https://github.com/equinor/fusion-framework/pull/1614) [`a3235ee`](https://github.com/equinor/fusion-framework/commit/a3235ee05a4fb237ad36fc641119195207687a4a) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-context-selector from 0.5.0 to 0.5.3
|
|
116
182
|
|
|
117
|
-
-
|
|
183
|
+
- [#1642](https://github.com/equinor/fusion-framework/pull/1642) [`a67d77b`](https://github.com/equinor/fusion-framework/commit/a67d77b5fa1fbff626c08e85ad00fe9bb63da80d) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump ora from 7.0.1 to 8.0.1
|
|
118
184
|
|
|
119
|
-
-
|
|
185
|
+
- [#1662](https://github.com/equinor/fusion-framework/pull/1662) [`e7dbce5`](https://github.com/equinor/fusion-framework/commit/e7dbce5413dff7186b1004e11b6051d1fb4373d1) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @equinor/fusion-wc-person from 2.1.8 to 2.3.0
|
|
120
186
|
|
|
121
|
-
-
|
|
187
|
+
- [#1565](https://github.com/equinor/fusion-framework/pull/1565) [`4e7dbce`](https://github.com/equinor/fusion-framework/commit/4e7dbce1a92b093bec91d48d38afd7b70fe03296) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @equinor/fusion-wc-person from 2.1.8 to 2.3.0
|
|
122
188
|
|
|
123
|
-
-
|
|
124
|
-
|
|
125
|
-
|
|
189
|
+
- Updated dependencies [[`4e7dbce`](https://github.com/equinor/fusion-framework/commit/4e7dbce1a92b093bec91d48d38afd7b70fe03296)]:
|
|
190
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.9
|
|
191
|
+
- @equinor/fusion-framework-app@7.1.15
|
|
126
192
|
|
|
127
193
|
## 9.5.5
|
|
128
194
|
|
|
129
195
|
### Patch Changes
|
|
130
196
|
|
|
131
|
-
-
|
|
132
|
-
|
|
133
|
-
|
|
197
|
+
- Updated dependencies []:
|
|
198
|
+
- @equinor/fusion-framework-app@7.1.14
|
|
199
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.8
|
|
134
200
|
|
|
135
201
|
## 9.5.4
|
|
136
202
|
|
|
137
203
|
### Patch Changes
|
|
138
204
|
|
|
139
|
-
-
|
|
140
|
-
|
|
141
|
-
|
|
205
|
+
- Updated dependencies []:
|
|
206
|
+
- @equinor/fusion-framework-app@7.1.13
|
|
207
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.7
|
|
142
208
|
|
|
143
209
|
## 9.5.3
|
|
144
210
|
|
|
145
211
|
### Patch Changes
|
|
146
212
|
|
|
147
|
-
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
213
|
+
- Updated dependencies [[`6ffaabf`](https://github.com/equinor/fusion-framework/commit/6ffaabf120704f2f4f4074a0fa0a17faf77fe22a)]:
|
|
214
|
+
- @equinor/fusion-observable@8.1.4
|
|
215
|
+
- @equinor/fusion-framework-app@7.1.12
|
|
216
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.6
|
|
151
217
|
|
|
152
218
|
## 9.5.2
|
|
153
219
|
|
|
154
220
|
### Patch Changes
|
|
155
221
|
|
|
156
|
-
-
|
|
222
|
+
- [#1579](https://github.com/equinor/fusion-framework/pull/1579) [`8aecfdd`](https://github.com/equinor/fusion-framework/commit/8aecfdd892c5e4cc6afbf6c736d7d46d0199611b) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-side-sheet from 1.2.2 to 1.2.3
|
|
157
223
|
|
|
158
|
-
-
|
|
224
|
+
- [#1578](https://github.com/equinor/fusion-framework/pull/1578) [`e6859bf`](https://github.com/equinor/fusion-framework/commit/e6859bf9604b1ac388c077db97cb7bd7127f59db) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-menu from 0.2.0 to 0.3.0
|
|
159
225
|
|
|
160
|
-
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
226
|
+
- Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
|
|
227
|
+
- @equinor/fusion-observable@8.1.3
|
|
228
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.5
|
|
229
|
+
- @equinor/fusion-framework-app@7.1.11
|
|
164
230
|
|
|
165
231
|
## 9.5.1
|
|
166
232
|
|
|
167
233
|
### Patch Changes
|
|
168
234
|
|
|
169
|
-
-
|
|
235
|
+
- [#1553](https://github.com/equinor/fusion-framework/pull/1553) [`f4e02e9`](https://github.com/equinor/fusion-framework/commit/f4e02e93960ca3d1e8c1ee422c6fd8c6742bf755) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-side-sheet from 1.2.1 to 1.2.2
|
|
170
236
|
|
|
171
|
-
-
|
|
237
|
+
- [`72e12c8`](https://github.com/equinor/fusion-framework/commit/72e12c84efb6ac7f131a8d0f217076cbb9d5ab52) Thanks [@odinr](https://github.com/odinr)! - support for module resolution EsNext
|
|
172
238
|
|
|
173
239
|
## 9.5.0
|
|
174
240
|
|
|
175
241
|
### Minor Changes
|
|
176
242
|
|
|
177
|
-
-
|
|
243
|
+
- [#1532](https://github.com/equinor/fusion-framework/pull/1532) [`f77c1169`](https://github.com/equinor/fusion-framework/commit/f77c11694adf3c96e86732818cbf05aaae06a695) Thanks [@dependabot](https://github.com/apps/dependabot)! - bump vite from 4.4.9 to 5.0.0
|
|
178
244
|
|
|
179
245
|
### Patch Changes
|
|
180
246
|
|
|
181
|
-
-
|
|
182
|
-
|
|
247
|
+
- Updated dependencies [[`22909e77`](https://github.com/equinor/fusion-framework/commit/22909e77488b099697dccec93e7ac8416dc4a5bd)]:
|
|
248
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.4
|
|
183
249
|
|
|
184
250
|
## 9.4.3
|
|
185
251
|
|
|
186
252
|
### Patch Changes
|
|
187
253
|
|
|
188
|
-
-
|
|
189
|
-
|
|
190
|
-
|
|
254
|
+
- Updated dependencies []:
|
|
255
|
+
- @equinor/fusion-framework-app@7.1.10
|
|
256
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.3
|
|
191
257
|
|
|
192
258
|
## 9.4.2
|
|
193
259
|
|
|
194
260
|
### Patch Changes
|
|
195
261
|
|
|
196
|
-
-
|
|
262
|
+
- [#1533](https://github.com/equinor/fusion-framework/pull/1533) [`a571b640`](https://github.com/equinor/fusion-framework/commit/a571b640c9fe94519ce2ede22f1eb1c336ecdac9) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump find-up from 6.3.0 to 7.0.0
|
|
197
263
|
|
|
198
|
-
-
|
|
264
|
+
- [#1534](https://github.com/equinor/fusion-framework/pull/1534) [`8c77de20`](https://github.com/equinor/fusion-framework/commit/8c77de209df2f41a78636f1f6f85a81d653484d2) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump vite-plugin-restart from 0.3.1 to 0.4.0
|
|
199
265
|
|
|
200
|
-
-
|
|
201
|
-
|
|
202
|
-
|
|
266
|
+
- Updated dependencies []:
|
|
267
|
+
- @equinor/fusion-framework-app@7.1.9
|
|
268
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.3
|
|
203
269
|
|
|
204
270
|
## 9.4.1
|
|
205
271
|
|
|
206
272
|
### Patch Changes
|
|
207
273
|
|
|
208
|
-
-
|
|
274
|
+
- [#1498](https://github.com/equinor/fusion-framework/pull/1498) [`7287fa3d`](https://github.com/equinor/fusion-framework/commit/7287fa3dca655c84b3a4f5f904e3f423ec341e7a) Thanks [@odinr](https://github.com/odinr)! - bump @equinor/fusion-wc-person from 2.1.0 to 2.1.8
|
|
209
275
|
|
|
210
|
-
-
|
|
211
|
-
|
|
276
|
+
- Updated dependencies [[`7287fa3d`](https://github.com/equinor/fusion-framework/commit/7287fa3dca655c84b3a4f5f904e3f423ec341e7a)]:
|
|
277
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.3
|
|
212
278
|
|
|
213
279
|
## 9.4.0
|
|
214
280
|
|
|
215
281
|
### Minor Changes
|
|
216
282
|
|
|
217
|
-
-
|
|
283
|
+
- [#1491](https://github.com/equinor/fusion-framework/pull/1491) [`0f2b4e3a`](https://github.com/equinor/fusion-framework/commit/0f2b4e3a97aa08cac2644642b612cd3432d07be4) Thanks [@odinr](https://github.com/odinr)! - Allow setting archive name when packing bundle
|
|
218
284
|
|
|
219
285
|
### Patch Changes
|
|
220
286
|
|
|
221
|
-
-
|
|
287
|
+
- [#1487](https://github.com/equinor/fusion-framework/pull/1487) [`0dfe5a94`](https://github.com/equinor/fusion-framework/commit/0dfe5a94c89b05da3ea94d5ec0180448ba0df392) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump [rollup](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) from 3.29.2 to 4.3.0
|
|
222
288
|
|
|
223
|
-
-
|
|
289
|
+
- [#1478](https://github.com/equinor/fusion-framework/pull/1478) [`28bd0b8c`](https://github.com/equinor/fusion-framework/commit/28bd0b8c17fd6e7c5f5146ff490441d5b3caf602) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump [@equinor/fusion-react-side-sheet](https://github.com/equinor/fusion-react-components/releases/tag/%40equinor%2Ffusion-react-side-sheet%401.2.1) from 1.2.0 to 1.2.1
|
|
224
290
|
|
|
225
|
-
-
|
|
291
|
+
- [#1485](https://github.com/equinor/fusion-framework/pull/1485) [`24d02ddd`](https://github.com/equinor/fusion-framework/commit/24d02ddd532424462059a7465ac82df688e1bc6e) Thanks [@dependabot](https://github.com/apps/dependabot)! - [bump read-pkg-up from 10.1.0 to 11.0.0](https://github.com/sindresorhus/read-package-up/compare/v10.1.0...v11.0.0)
|
|
226
292
|
|
|
227
293
|
## 9.3.5
|
|
228
294
|
|
|
229
295
|
### Patch Changes
|
|
230
296
|
|
|
231
|
-
-
|
|
297
|
+
- [#1475](https://github.com/equinor/fusion-framework/pull/1475) [`9b22a14d`](https://github.com/equinor/fusion-framework/commit/9b22a14d791878a83b6df84190922d3143fdc0df) Thanks [@odinr](https://github.com/odinr)! - fix log loop
|
|
232
298
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
299
|
+
```bash
|
|
300
|
+
if (msg.match(/^Failed to load url \/assets/)) {
|
|
301
|
+
RangeError: Maximum call stack size exceeded
|
|
302
|
+
at String.match (<anonymous>)
|
|
303
|
+
```
|
|
238
304
|
|
|
239
305
|
## 9.3.4
|
|
240
306
|
|
|
241
307
|
### Patch Changes
|
|
242
308
|
|
|
243
|
-
-
|
|
309
|
+
- [#1465](https://github.com/equinor/fusion-framework/pull/1465) [`1cdc52ab`](https://github.com/equinor/fusion-framework/commit/1cdc52abbdf8aa714d4b4035a01e474fbe56d8f6) Thanks [@odinr](https://github.com/odinr)! - cli should no use provided config when developing an application which exists in Fusion App Service.
|
|
244
310
|
|
|
245
|
-
|
|
311
|
+
> when dev proxy server did not get 404 when requesting application config, it provided the manifest instead of config file path
|
|
246
312
|
|
|
247
313
|
## 9.3.3
|
|
248
314
|
|
|
249
315
|
### Patch Changes
|
|
250
316
|
|
|
251
|
-
-
|
|
317
|
+
- [`a56172c9`](https://github.com/equinor/fusion-framework/commit/a56172c9ec241550ce57b1ea1e6ffcc8848618d5) Thanks [@odinr](https://github.com/odinr)! - rebuild cli (navigation module)
|
|
252
318
|
|
|
253
319
|
## 9.3.2
|
|
254
320
|
|
|
255
321
|
### Patch Changes
|
|
256
322
|
|
|
257
|
-
-
|
|
323
|
+
- [#1462](https://github.com/equinor/fusion-framework/pull/1462) [`e35d8e2b`](https://github.com/equinor/fusion-framework/commit/e35d8e2b69148a497c7acaa8e1e0bf86987f475e) Thanks [@odinr](https://github.com/odinr)! - silent error when failing to optimize pre-built assets
|
|
258
324
|
|
|
259
|
-
|
|
325
|
+
Vite tries to import optimize pre-built assets for the dev portal (which it should not).
|
|
260
326
|
|
|
261
|
-
|
|
327
|
+
see [fix: exclude external dependencies from html rewriting](https://github.com/vitejs/vite/pull/11854#issuecomment-1500453147)
|
|
262
328
|
|
|
263
|
-
-
|
|
329
|
+
- [#1442](https://github.com/equinor/fusion-framework/pull/1442) [`1173f715`](https://github.com/equinor/fusion-framework/commit/1173f71597b7b90c17d314188d83f46e1d81a2f3) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-side-sheet from 1.1.0 to 1.2.0
|
|
264
330
|
|
|
265
331
|
## 9.3.1
|
|
266
332
|
|
|
267
333
|
### Patch Changes
|
|
268
334
|
|
|
269
|
-
-
|
|
270
|
-
|
|
271
|
-
|
|
335
|
+
- Updated dependencies []:
|
|
336
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.2
|
|
337
|
+
- @equinor/fusion-framework-app@7.1.8
|
|
272
338
|
|
|
273
339
|
## 9.3.0
|
|
274
340
|
|
|
275
341
|
### Minor Changes
|
|
276
342
|
|
|
277
|
-
-
|
|
343
|
+
- [#1374](https://github.com/equinor/fusion-framework/pull/1374) [`a1eacf9f`](https://github.com/equinor/fusion-framework/commit/a1eacf9f30728bf96a17e60a5b7d7d08e85798f3) Thanks [@odinr](https://github.com/odinr)! - update `@equinor/fusion-wc-person` to ^2.1.0
|
|
278
344
|
|
|
279
345
|
### Patch Changes
|
|
280
346
|
|
|
281
|
-
-
|
|
347
|
+
- [#1399](https://github.com/equinor/fusion-framework/pull/1399) [`52910a53`](https://github.com/equinor/fusion-framework/commit/52910a5322109ab729508432d9fab695e8dc7697) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-styles from 0.5.11 to 0.6.0
|
|
282
348
|
|
|
283
|
-
-
|
|
349
|
+
- [#1395](https://github.com/equinor/fusion-framework/pull/1395) [`dcd09dea`](https://github.com/equinor/fusion-framework/commit/dcd09dea7160cf85ababf827bc6ee32d9f9a0aca) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-icon from 0.2.16 to 0.3.0
|
|
284
350
|
|
|
285
|
-
-
|
|
351
|
+
- [#1409](https://github.com/equinor/fusion-framework/pull/1409) [`8b8ce0df`](https://github.com/equinor/fusion-framework/commit/8b8ce0dfc77bc592d3f525a2b09782fc2f570011) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-context-selector from 0.4.9 to 0.5.0
|
|
286
352
|
|
|
287
|
-
-
|
|
353
|
+
- [#1397](https://github.com/equinor/fusion-framework/pull/1397) [`15cb5a59`](https://github.com/equinor/fusion-framework/commit/15cb5a597fa0856bf56b7e618d3e974f3974a968) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-progress-indicator from 0.1.7 to 0.2.0
|
|
288
354
|
|
|
289
|
-
-
|
|
355
|
+
- [#1394](https://github.com/equinor/fusion-framework/pull/1394) [`710ea8a9`](https://github.com/equinor/fusion-framework/commit/710ea8a9574acfa55e8affb33a52594d6136d460) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-button from 0.8.3 to 0.9.0
|
|
290
356
|
|
|
291
|
-
-
|
|
357
|
+
- [#1393](https://github.com/equinor/fusion-framework/pull/1393) [`f049479b`](https://github.com/equinor/fusion-framework/commit/f049479bfb51369a227eb432089d0da20be86529) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @equinor/fusion-react-person from 0.5.1 to 0.6.0
|
|
292
358
|
|
|
293
|
-
-
|
|
359
|
+
- [#1392](https://github.com/equinor/fusion-framework/pull/1392) [`99f70720`](https://github.com/equinor/fusion-framework/commit/99f707205ad9f773f0672fabccfe52dec0c9b10f) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @equinor/fusion-react-side-sheet from 1.0.2 to 1.1.0
|
|
294
360
|
|
|
295
361
|
## 9.2.1
|
|
296
362
|
|
|
297
363
|
### Patch Changes
|
|
298
364
|
|
|
299
|
-
-
|
|
365
|
+
- [#1375](https://github.com/equinor/fusion-framework/pull/1375) [`f50ea5da`](https://github.com/equinor/fusion-framework/commit/f50ea5dab449ce7a5e3071f65fac4e800a619eec) Thanks [@odinr](https://github.com/odinr)! - update people deps
|
|
300
366
|
|
|
301
|
-
-
|
|
302
|
-
|
|
367
|
+
- Updated dependencies [[`f50ea5da`](https://github.com/equinor/fusion-framework/commit/f50ea5dab449ce7a5e3071f65fac4e800a619eec)]:
|
|
368
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.1
|
|
303
369
|
|
|
304
370
|
## 9.2.0
|
|
305
371
|
|
|
306
372
|
### Minor Changes
|
|
307
373
|
|
|
308
|
-
-
|
|
374
|
+
- [#1323](https://github.com/equinor/fusion-framework/pull/1323) [`6a4c697f`](https://github.com/equinor/fusion-framework/commit/6a4c697fc255bd189a6e45e48f76c1c4e4e59c24) Thanks [@yusijs](https://github.com/yusijs)! - Allow using a custom dev-portal
|
|
309
375
|
|
|
310
376
|
## 9.1.4
|
|
311
377
|
|
|
312
378
|
### Patch Changes
|
|
313
379
|
|
|
314
|
-
-
|
|
380
|
+
- [#1348](https://github.com/equinor/fusion-framework/pull/1348) [`0acc8827`](https://github.com/equinor/fusion-framework/commit/0acc8827e5e2df8b5b2aeac5e1a2cd29c4384e78) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @equinor/eds-core-react from 0.32.4 to 0.33.0
|
|
315
381
|
|
|
316
|
-
|
|
382
|
+
- support for [styled-components@6](https://styled-components.com/releases#v6.0.0)
|
|
317
383
|
|
|
318
384
|
## 9.1.3
|
|
319
385
|
|
|
320
386
|
### Patch Changes
|
|
321
387
|
|
|
322
|
-
-
|
|
388
|
+
- [`c4e38415`](https://github.com/equinor/fusion-framework/commit/c4e384152765d86df5093b35355d0c4b0bcfee43) Thanks [@odinr](https://github.com/odinr)! - [remove console](https://github.com/equinor/fusion-framework/commit/cb2f694697e7a130ff82bbb5fc570892211bbb70)
|
|
323
389
|
|
|
324
390
|
## 9.1.2
|
|
325
391
|
|
|
326
392
|
### Patch Changes
|
|
327
393
|
|
|
328
|
-
-
|
|
394
|
+
- [#1306](https://github.com/equinor/fusion-framework/pull/1306) [`f65c4531`](https://github.com/equinor/fusion-framework/commit/f65c453178e2c581acb154d5839971c75f60fa86) Thanks [@odinr](https://github.com/odinr)! - add fallback image to person provider
|
|
329
395
|
|
|
330
|
-
-
|
|
396
|
+
- [#1335](https://github.com/equinor/fusion-framework/pull/1335) [`5bad9c87`](https://github.com/equinor/fusion-framework/commit/5bad9c87d6ab6d0a9a518ba7525f3eb5b659a9c0) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - add cookbooks and documentation for people react components
|
|
331
397
|
|
|
332
|
-
-
|
|
398
|
+
- [`cc7bcfb5`](https://github.com/equinor/fusion-framework/commit/cc7bcfb51187fb757b95793356da4a11b233d930) Thanks [@odinr](https://github.com/odinr)! - update @equinor/fusion-wc-person to 1.1.1
|
|
333
399
|
|
|
334
|
-
-
|
|
400
|
+
- [`6ec59f64`](https://github.com/equinor/fusion-framework/commit/6ec59f64f35e553cd68d6d6e03c1e5867aba87ce) Thanks [@odinr](https://github.com/odinr)! - fixed loading of config files for Windows
|
|
335
401
|
|
|
336
|
-
|
|
402
|
+
found internal [issues](https://github.com/radarsu/ts-import/issues/39) with `ts-import` where file url path crashed native `fs` command, but failed on imports since windows can`t handle absolute paths.
|
|
337
403
|
|
|
338
|
-
|
|
404
|
+
quick and dirty transpile code and eject of `ts-import`
|
|
339
405
|
|
|
340
|
-
-
|
|
406
|
+
- [#1264](https://github.com/equinor/fusion-framework/pull/1264) [`ace9fa37`](https://github.com/equinor/fusion-framework/commit/ace9fa379215fd75e37b140db5c8ea2d3680b0c0) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump express-rate-limit from 6.9.0 to [7.0.0](https://github.com/express-rate-limit/express-rate-limit/releases/tag/v7.0.0)
|
|
341
407
|
|
|
342
|
-
-
|
|
408
|
+
- [#1345](https://github.com/equinor/fusion-framework/pull/1345) [`9d9f629e`](https://github.com/equinor/fusion-framework/commit/9d9f629e007df38db75067781b251b7e5e9673da) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - update @equinor/fusion-wc-person to 2.0.1
|
|
343
409
|
|
|
344
|
-
-
|
|
410
|
+
- [`5b8c4ebc`](https://github.com/equinor/fusion-framework/commit/5b8c4ebc85f636e18e7666fd5dbbaf9ee10d8608) Thanks [@odinr](https://github.com/odinr)! - fixed packing of application
|
|
345
411
|
|
|
346
|
-
-
|
|
347
|
-
|
|
348
|
-
|
|
412
|
+
- Updated dependencies [[`cc7bcfb5`](https://github.com/equinor/fusion-framework/commit/cc7bcfb51187fb757b95793356da4a11b233d930), [`f65c4531`](https://github.com/equinor/fusion-framework/commit/f65c453178e2c581acb154d5839971c75f60fa86), [`9f121865`](https://github.com/equinor/fusion-framework/commit/9f121865254a0c76c4a812e6e42bfe3c7086c714), [`518b8476`](https://github.com/equinor/fusion-framework/commit/518b8476bb40255d05e937663d3a513de479a1f8), [`9d9f629e`](https://github.com/equinor/fusion-framework/commit/9d9f629e007df38db75067781b251b7e5e9673da), [`3e38c9cc`](https://github.com/equinor/fusion-framework/commit/3e38c9cc925fc0456837e42e7ee3ac55e9553bad), [`63592229`](https://github.com/equinor/fusion-framework/commit/63592229cea4d3606289738fe14b432e9978623f)]:
|
|
413
|
+
- @equinor/fusion-framework-react-components-people-provider@1.1.0
|
|
414
|
+
- @equinor/fusion-framework-app@7.1.7
|
|
349
415
|
|
|
350
416
|
## 9.1.1
|
|
351
417
|
|
|
352
418
|
### Patch Changes
|
|
353
419
|
|
|
354
|
-
-
|
|
420
|
+
- [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
|
|
355
421
|
|
|
356
|
-
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
422
|
+
- Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
|
|
423
|
+
- @equinor/fusion-framework-app@7.1.6
|
|
424
|
+
- @equinor/fusion-framework-react-components-people-provider@1.0.1
|
|
425
|
+
- @equinor/fusion-observable@8.1.2
|
|
360
426
|
|
|
361
427
|
## 9.1.0
|
|
362
428
|
|
|
363
429
|
### Minor Changes
|
|
364
430
|
|
|
365
|
-
-
|
|
431
|
+
- [#1257](https://github.com/equinor/fusion-framework/pull/1257) [`780b229a`](https://github.com/equinor/fusion-framework/commit/780b229a709d83b275e88473df0236b3f218c037) Thanks [@odinr](https://github.com/odinr)! - person resolving
|
|
366
432
|
|
|
367
|
-
|
|
433
|
+
the CLI now resolves persons from `azureId` or `upn`
|
|
368
434
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
435
|
+
```tsx
|
|
436
|
+
const MyPage = () => {
|
|
437
|
+
return (
|
|
438
|
+
<fwc-person-avatar azureId='cbc6480d-12c1-467e-b0b8-cfbb22612daa'></fwc-person-avatar>
|
|
439
|
+
<fwc-person-card azureId='cbc6480d-12c1-467e-b0b8-cfbb22612daa'></fwc-person-card>
|
|
440
|
+
<fwc-person-list-item azureId='cbc6480d-12c1-467e-b0b8-cfbb22612daa'></fwc-person-list-item>
|
|
441
|
+
)
|
|
442
|
+
}
|
|
443
|
+
```
|
|
378
444
|
|
|
379
445
|
### Patch Changes
|
|
380
446
|
|
|
381
|
-
-
|
|
447
|
+
- [#1273](https://github.com/equinor/fusion-framework/pull/1273) [`9f570356`](https://github.com/equinor/fusion-framework/commit/9f570356939f077e0a6ca101fa0b7e51d369f7b4) Thanks [@Noggling](https://github.com/Noggling)! - Added display content to the div element that is provided to applications
|
|
382
448
|
|
|
383
|
-
-
|
|
449
|
+
- [`0d84d39e`](https://github.com/equinor/fusion-framework/commit/0d84d39ed9d452aa7bb8bc4dfc6ff2e46d3af82b) Thanks [@odinr](https://github.com/odinr)! - enable services for CLI portal
|
|
384
450
|
|
|
385
|
-
-
|
|
386
|
-
|
|
387
|
-
|
|
451
|
+
- Updated dependencies [[`de46f0a2`](https://github.com/equinor/fusion-framework/commit/de46f0a2ce93134fc32bf587d29dd32d7ab9a8d9)]:
|
|
452
|
+
- @equinor/fusion-framework-react-components-people-provider@1.0.0
|
|
453
|
+
- @equinor/fusion-framework-app@7.1.5
|
|
388
454
|
|
|
389
455
|
## 9.0.2
|
|
390
456
|
|
|
391
457
|
### Patch Changes
|
|
392
458
|
|
|
393
|
-
-
|
|
394
|
-
|
|
459
|
+
- Updated dependencies []:
|
|
460
|
+
- @equinor/fusion-framework-app@7.1.4
|
|
395
461
|
|
|
396
462
|
## 9.0.1
|
|
397
463
|
|
|
398
464
|
### Patch Changes
|
|
399
465
|
|
|
400
|
-
-
|
|
466
|
+
- [`5d2df189`](https://github.com/equinor/fusion-framework/commit/5d2df189e022941f91ce7048f99f42f59d17c456) Thanks [@odinr](https://github.com/odinr)! - fixed naming convention of CLI config files
|
|
401
467
|
|
|
402
468
|
## 9.0.0
|
|
403
469
|
|
|
404
470
|
### Major Changes
|
|
405
471
|
|
|
406
|
-
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
fusion-framework-cli app
|
|
469
|
-
|
|
470
|
-
```sh
|
|
471
|
-
fusion-framework-cli app dev --manifest app.manifest.local.ts
|
|
472
|
-
```
|
|
472
|
+
- [#1194](https://github.com/equinor/fusion-framework/pull/1194) [`a424aef5`](https://github.com/equinor/fusion-framework/commit/a424aef5dc6575204a9448b74e0170192147b1b3) Thanks [@odinr](https://github.com/odinr)! - Rewrite fusion framework CLI
|
|
473
|
+
|
|
474
|
+
Rework of the Fusion Framework CLI to support future features
|
|
475
|
+
|
|
476
|
+
> the CLI was thrown together as a proof of concept, but grown un-manageable, because of lack of structure
|
|
477
|
+
|
|
478
|
+
**Main Features**
|
|
479
|
+
|
|
480
|
+
- Separate logic and utilities from program (app/cli commands)
|
|
481
|
+
- allow user to provide config files `app.{config,manifest,vite}.{ts,js,json}`
|
|
482
|
+
- the cli will try to resolve from `.ts` then `.js` then `.json`
|
|
483
|
+
- `app.config` is used to configure application environment configs (app-service config)
|
|
484
|
+
- `app.manifest` application manifest, information about the application
|
|
485
|
+
- `app.vite` override the CLI vite configuration
|
|
486
|
+
- provide interface for `app.TYPE.ts` config
|
|
487
|
+
- `define` and `merge` functionality
|
|
488
|
+
- note that `app.config` and `app.manifest` needs to return full object _(will not be merged by CLI)_
|
|
489
|
+
- allow providing config file in command
|
|
490
|
+
- using config when resolving proxy request
|
|
491
|
+
- improved CLI logging
|
|
492
|
+
|
|
493
|
+
**examples**
|
|
494
|
+
|
|
495
|
+
app.config.ts
|
|
496
|
+
|
|
497
|
+
```ts
|
|
498
|
+
import { mergeAppConfigs, defineAppConfig } from '@equinor/fusion-framework-cli';
|
|
499
|
+
export default defineAppConfig((_nev, { base }) =>
|
|
500
|
+
mergeAppConfigs(base, {
|
|
501
|
+
environment: {
|
|
502
|
+
api: {
|
|
503
|
+
foo: {
|
|
504
|
+
baseUri: 'https://foo.bars',
|
|
505
|
+
scopes: ['foobar'],
|
|
506
|
+
},
|
|
507
|
+
},
|
|
508
|
+
},
|
|
509
|
+
}),
|
|
510
|
+
);
|
|
511
|
+
```
|
|
512
|
+
|
|
513
|
+
app.manifest
|
|
514
|
+
|
|
515
|
+
```ts
|
|
516
|
+
import { defineAppManifest, mergeManifests } from '@equinor/fusion-framework-cli';
|
|
517
|
+
|
|
518
|
+
export default defineAppManifest((env, { base }) => {
|
|
519
|
+
if (env.command === 'serve') {
|
|
520
|
+
return mergeManifests(base, {
|
|
521
|
+
key: 'simple',
|
|
522
|
+
});
|
|
523
|
+
}
|
|
524
|
+
return base;
|
|
525
|
+
});
|
|
526
|
+
```
|
|
527
|
+
|
|
528
|
+
fusion-framework-cli app
|
|
529
|
+
|
|
530
|
+
```sh
|
|
531
|
+
fusion-framework-cli app dev --manifest app.manifest.local.ts
|
|
532
|
+
```
|
|
473
533
|
|
|
474
534
|
### Minor Changes
|
|
475
535
|
|
|
476
|
-
-
|
|
536
|
+
- [#1194](https://github.com/equinor/fusion-framework/pull/1194) [`a424aef5`](https://github.com/equinor/fusion-framework/commit/a424aef5dc6575204a9448b74e0170192147b1b3) Thanks [@odinr](https://github.com/odinr)! - add command for generating manifest
|
|
477
537
|
|
|
478
|
-
|
|
538
|
+
generate manifest for application
|
|
479
539
|
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
540
|
+
```sh
|
|
541
|
+
fusion-framework-cli app manifest
|
|
542
|
+
#output to file
|
|
543
|
+
fusion-framework-cli app manifest -o manifest.json
|
|
544
|
+
#specify custom config
|
|
545
|
+
fusion-framework-cli app manifest -c app.manifest.custom.ts
|
|
546
|
+
```
|
|
487
547
|
|
|
488
|
-
-
|
|
548
|
+
- [#1194](https://github.com/equinor/fusion-framework/pull/1194) [`a424aef5`](https://github.com/equinor/fusion-framework/commit/a424aef5dc6575204a9448b74e0170192147b1b3) Thanks [@odinr](https://github.com/odinr)! - add pack command to cli
|
|
489
549
|
|
|
490
|
-
|
|
550
|
+
add method which will build, generate manifest and pack assets into a zip file (**just like the legacy @equinor/fusion-cli**)
|
|
491
551
|
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
552
|
+
```sh
|
|
553
|
+
fusion-framework-cli app pack
|
|
554
|
+
```
|
|
495
555
|
|
|
496
556
|
### Patch Changes
|
|
497
557
|
|
|
498
|
-
-
|
|
558
|
+
- [#1194](https://github.com/equinor/fusion-framework/pull/1194) [`a424aef5`](https://github.com/equinor/fusion-framework/commit/a424aef5dc6575204a9448b74e0170192147b1b3) Thanks [@odinr](https://github.com/odinr)! - Add command for outputting application configuration
|
|
499
559
|
|
|
500
|
-
|
|
560
|
+
**example**
|
|
501
561
|
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
562
|
+
```sh
|
|
563
|
+
fusion-framework-cli app config -o my-app.config.json
|
|
564
|
+
fdev portal config -e ci -k my-app --config-file my-app.config.json set
|
|
565
|
+
```
|
|
506
566
|
|
|
507
567
|
## 8.1.1
|
|
508
568
|
|
|
509
569
|
### Patch Changes
|
|
510
570
|
|
|
511
|
-
-
|
|
512
|
-
|
|
513
|
-
|
|
571
|
+
- Updated dependencies [[`6f64d1aa`](https://github.com/equinor/fusion-framework/commit/6f64d1aa5e44af37f0abd76cef36e87761134760), [`758eaaf4`](https://github.com/equinor/fusion-framework/commit/758eaaf436ae28d180e7d91818b41abe0d9624c4)]:
|
|
572
|
+
- @equinor/fusion-observable@8.1.1
|
|
573
|
+
- @equinor/fusion-framework-app@7.1.3
|
|
514
574
|
|
|
515
575
|
## 8.1.0
|
|
516
576
|
|
|
517
577
|
### Minor Changes
|
|
518
578
|
|
|
519
|
-
-
|
|
579
|
+
- [`066d843c`](https://github.com/equinor/fusion-framework/commit/066d843c88cb974150f23f4fb9e7d0b066c93594) Thanks [@odinr](https://github.com/odinr)! - Remove emotion decencies from CLI
|
|
520
580
|
|
|
521
|
-
|
|
522
|
-
|
|
581
|
+
align CLI with EDS and use style components instead of emotion 🥲
|
|
582
|
+
prevent conflict of react types dependent on both emotion and eds
|
|
523
583
|
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
584
|
+
- remove @emotion/\*
|
|
585
|
+
- convert emotion to styled-components
|
|
586
|
+
- fix styling of cli
|
|
587
|
+
- convert main placeholder to grid
|
|
588
|
+
- remove unnecessary styling from header
|
|
589
|
+
- set dynamic width of context selector (min 25rem)
|
|
530
590
|
|
|
531
591
|
### Patch Changes
|
|
532
592
|
|
|
533
|
-
-
|
|
593
|
+
- [`066d843c`](https://github.com/equinor/fusion-framework/commit/066d843c88cb974150f23f4fb9e7d0b066c93594) Thanks [@odinr](https://github.com/odinr)! - fixed bin resolve for pnpm
|
|
534
594
|
|
|
535
|
-
-
|
|
536
|
-
|
|
595
|
+
- Updated dependencies []:
|
|
596
|
+
- @equinor/fusion-framework-app@7.1.2
|
|
537
597
|
|
|
538
598
|
## 8.0.1
|
|
539
599
|
|
|
540
600
|
### Patch Changes
|
|
541
601
|
|
|
542
|
-
-
|
|
602
|
+
- [#1109](https://github.com/equinor/fusion-framework/pull/1109) [`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862) Thanks [@odinr](https://github.com/odinr)! - Change packaged manager from yarn to pnpm
|
|
543
603
|
|
|
544
|
-
|
|
604
|
+
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
545
605
|
|
|
546
|
-
|
|
606
|
+
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
547
607
|
|
|
548
|
-
-
|
|
608
|
+
- [#1130](https://github.com/equinor/fusion-framework/pull/1130) [`542356ee`](https://github.com/equinor/fusion-framework/commit/542356eecfcc1bc8b896e71377308a1de29f4ab9) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @emotion/styled from 11.10.6 to 11.11.0
|
|
549
609
|
|
|
550
|
-
-
|
|
610
|
+
- [#1129](https://github.com/equinor/fusion-framework/pull/1129) [`f672d0bb`](https://github.com/equinor/fusion-framework/commit/f672d0bba71a7ea6cd08135778fda67ff38f3ac3) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @equinor/eds-core-react from 0.30.0 to 0.32.4
|
|
551
611
|
|
|
552
|
-
-
|
|
612
|
+
- [#1125](https://github.com/equinor/fusion-framework/pull/1125) [`2dccccd1`](https://github.com/equinor/fusion-framework/commit/2dccccd124fbe3cdde2132c29c27d3da9fc6f1f5) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump react and @types/react to react 18.2
|
|
553
613
|
|
|
554
|
-
|
|
614
|
+
only dev deps updated should not affect any consumers
|
|
555
615
|
|
|
556
|
-
|
|
616
|
+
see [react changelog](https://github.com/facebook/react/releases) for details
|
|
557
617
|
|
|
558
|
-
-
|
|
618
|
+
- [#1122](https://github.com/equinor/fusion-framework/pull/1122) [`1a055b21`](https://github.com/equinor/fusion-framework/commit/1a055b21e07f84bc5d35cc891586aa9aa0bdf661) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update styled-components to [^6.0.7](https://github.com/styled-components/styled-components/releases/tag/v6.0.7)
|
|
559
619
|
|
|
560
|
-
|
|
561
|
-
|
|
620
|
+
- upgraded dev deps of `@equinor/fusion-framework-react-components-bookmark` to react 18, see style-components [changelog](https://github.com/styled-components/styled-components/releases/tag/v6.0.0)
|
|
621
|
+
- removed `@types/style-components` from `@equinor/fusion-framework-react-components-bookmark`
|
|
562
622
|
|
|
563
|
-
|
|
623
|
+
see style-components [migration guide](https://styled-components.com/docs/faqs#what-do-i-need-to-do-to-migrate-to-v6)
|
|
564
624
|
|
|
565
|
-
-
|
|
625
|
+
- [#1148](https://github.com/equinor/fusion-framework/pull/1148) [`46201069`](https://github.com/equinor/fusion-framework/commit/46201069505f2526d1bdec05c134da17012b6d31) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump vite from 4.2.3 to 4.4.9
|
|
566
626
|
|
|
567
|
-
|
|
627
|
+
see [changelog](https://github.com/vitejs/vite/blob/create-vite@4.4.0/packages/create-vite/CHANGELOG.md)
|
|
568
628
|
|
|
569
|
-
-
|
|
629
|
+
- [#1145](https://github.com/equinor/fusion-framework/pull/1145) [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump rxjs from 7.5.7 to [7.8.1](https://github.com/ReactiveX/rxjs/blob/7.8.1/CHANGELOG.md)
|
|
570
630
|
|
|
571
|
-
-
|
|
631
|
+
- [#1156](https://github.com/equinor/fusion-framework/pull/1156) [`dfee1f79`](https://github.com/equinor/fusion-framework/commit/dfee1f79c9b70c2c2f27c12096000e6fc1e8ff7a) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump vite-tsconfig-paths from [4.0.7](https://github.com/aleclarson/vite-tsconfig-paths/releases/tag/v4.0.7) to [4.2.0](https://github.com/aleclarson/vite-tsconfig-paths/releases/tag/v4.2.0)
|
|
572
632
|
|
|
573
|
-
-
|
|
633
|
+
- [#1087](https://github.com/equinor/fusion-framework/pull/1087) [`6887c016`](https://github.com/equinor/fusion-framework/commit/6887c0164102e17b4a6d6f16193d9e34a0f41149) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @vitejs/plugin-react from 3.1.0 to 4.0.4
|
|
574
634
|
|
|
575
|
-
-
|
|
576
|
-
|
|
577
|
-
|
|
635
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`2dccccd1`](https://github.com/equinor/fusion-framework/commit/2dccccd124fbe3cdde2132c29c27d3da9fc6f1f5), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
636
|
+
- @equinor/fusion-observable@8.1.0
|
|
637
|
+
- @equinor/fusion-framework-app@7.1.1
|
|
578
638
|
|
|
579
639
|
## 8.0.0
|
|
580
640
|
|
|
581
641
|
### Major Changes
|
|
582
642
|
|
|
583
|
-
-
|
|
643
|
+
- [#973](https://github.com/equinor/fusion-framework/pull/973) [`713c94d9`](https://github.com/equinor/fusion-framework/commit/713c94d9a493f5aecb9fefa44942f83bd30ae29c) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump commander from [10.0.1](https://github.com/tj/commander.js/releases/tag/v10.0.1) to [11.0.0](https://github.com/tj/commander.js/releases/tag/v11.0.0)
|
|
584
644
|
|
|
585
|
-
|
|
645
|
+
**Breaking**
|
|
586
646
|
|
|
587
|
-
|
|
647
|
+
@equinor/fusion-framework-cli now requires Node.js v16 or higher
|
|
588
648
|
|
|
589
649
|
### Patch Changes
|
|
590
650
|
|
|
591
|
-
-
|
|
651
|
+
- [#1047](https://github.com/equinor/fusion-framework/pull/1047) [`1a2880d2`](https://github.com/equinor/fusion-framework/commit/1a2880d2e4c80ac5ce08f63ca3699fe77e4b565c) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @typescript-eslint/eslint-plugin from 5.59.11 to 6.1.0
|
|
592
652
|
|
|
593
|
-
|
|
653
|
+
only style semantics updated
|
|
594
654
|
|
|
595
|
-
-
|
|
596
|
-
|
|
597
|
-
|
|
655
|
+
- Updated dependencies [[`b16e93e2`](https://github.com/equinor/fusion-framework/commit/b16e93e23e456ab065a414f4bdc44445b6e9ad9f), [`b16e93e2`](https://github.com/equinor/fusion-framework/commit/b16e93e23e456ab065a414f4bdc44445b6e9ad9f), [`b16e93e2`](https://github.com/equinor/fusion-framework/commit/b16e93e23e456ab065a414f4bdc44445b6e9ad9f), [`0a785d5c`](https://github.com/equinor/fusion-framework/commit/0a785d5c339ceec7cbbe2a6ff9e16053c86ce511), [`38869a87`](https://github.com/equinor/fusion-framework/commit/38869a87788c340d363e9be1e7fc6ce0e29efa63)]:
|
|
656
|
+
- @equinor/fusion-observable@8.0.3
|
|
657
|
+
- @equinor/fusion-framework-app@7.1.0
|
|
598
658
|
|
|
599
659
|
## 7.1.0
|
|
600
660
|
|
|
601
661
|
### Minor Changes
|
|
602
662
|
|
|
603
|
-
-
|
|
663
|
+
- [#1055](https://github.com/equinor/fusion-framework/pull/1055) [`6c2fd59e`](https://github.com/equinor/fusion-framework/commit/6c2fd59e66ff77629ce1b7ecd5fd47e799719b91) Thanks [@odinr](https://github.com/odinr)! - **Allow loading of custom vite config**
|
|
604
664
|
|
|
605
|
-
|
|
606
|
-
|
|
665
|
+
When running the CLI, allow the user to provide custom [Vite config](https://vitejs.dev/config/).
|
|
666
|
+
The provided config is merged with the built-in config (default generated by the CLI).
|
|
607
667
|
|
|
608
|
-
|
|
668
|
+
updated [documentation](https://equinor.github.io/fusion-framework/guide/app/cli.html#config)
|
|
609
669
|
|
|
610
670
|
## 7.0.13
|
|
611
671
|
|
|
612
672
|
### Patch Changes
|
|
613
673
|
|
|
614
|
-
-
|
|
674
|
+
- [#1002](https://github.com/equinor/fusion-framework/pull/1002) [`7f506120`](https://github.com/equinor/fusion-framework/commit/7f506120c702f157f95f477ddfc514a906176870) Thanks [@eikeland](https://github.com/eikeland)! - # Updating @equinor/fusion-react-styles
|
|
615
675
|
|
|
616
|
-
|
|
676
|
+
Updating dependency @equinor/fusion-react-styles to version 0.5.6.
|
|
617
677
|
|
|
618
|
-
|
|
678
|
+
This ads the correct equinor-font cdn link to the themeprovider.
|
|
619
679
|
|
|
620
680
|
## 7.0.12
|
|
621
681
|
|
|
622
682
|
### Patch Changes
|
|
623
683
|
|
|
624
|
-
-
|
|
684
|
+
- [#946](https://github.com/equinor/fusion-framework/pull/946) [`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352) Thanks [@odinr](https://github.com/odinr)! - Build/update typescript to 5
|
|
625
685
|
|
|
626
|
-
-
|
|
627
|
-
|
|
686
|
+
- Updated dependencies [[`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352)]:
|
|
687
|
+
- @equinor/fusion-framework-app@7.0.16
|
|
628
688
|
|
|
629
689
|
## 7.0.11
|
|
630
690
|
|
|
631
691
|
### Patch Changes
|
|
632
692
|
|
|
633
|
-
-
|
|
634
|
-
|
|
693
|
+
- [#910](https://github.com/equinor/fusion-framework/pull/910) [`d40951a3`](https://github.com/equinor/fusion-framework/commit/d40951a3f5044083e7aec416c065342d0207e5d5) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Removes requirement of leading slash in `main` attr in `package.json`, meaning
|
|
694
|
+
both `"main": "src/index.ts"` and `"main": "/src/index.ts"` will resolve.
|
|
635
695
|
|
|
636
|
-
-
|
|
696
|
+
- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages**
|
|
637
697
|
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
698
|
+
- align all versions of typescript
|
|
699
|
+
- update types to build
|
|
700
|
+
- a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future
|
|
641
701
|
|
|
642
|
-
-
|
|
643
|
-
|
|
702
|
+
- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
|
|
703
|
+
- @equinor/fusion-framework-app@7.0.15
|
|
644
704
|
|
|
645
705
|
All notable changes to this project will be documented in this file.
|
|
646
706
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -689,22 +749,22 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
689
749
|
|
|
690
750
|
### ⚠ BREAKING CHANGES
|
|
691
751
|
|
|
692
|
-
-
|
|
752
|
+
- **module-context:** `ContextProvider.setCurrentContext` now returns an `Observable`
|
|
693
753
|
|
|
694
754
|
### Features
|
|
695
755
|
|
|
696
|
-
-
|
|
756
|
+
- **module-context:** make setting context as an observable ([21e1c6b](https://github.com/equinor/fusion-framework/commit/21e1c6b64f541ec63dd6ea830410c7bb5cbdd84a))
|
|
697
757
|
|
|
698
758
|
## 6.1.0 (2023-04-24)
|
|
699
759
|
|
|
700
760
|
### Features
|
|
701
761
|
|
|
702
|
-
-
|
|
762
|
+
- **cli:** added bookmark side sheet to cli and updated header ([d5da5eb](https://github.com/equinor/fusion-framework/commit/d5da5eb2c61983c8f038956a18e7a8c16a987450))
|
|
703
763
|
|
|
704
764
|
### Bug Fixes
|
|
705
765
|
|
|
706
|
-
-
|
|
707
|
-
-
|
|
766
|
+
- **bookmark:** fix linting ([17b179f](https://github.com/equinor/fusion-framework/commit/17b179fbb25243730dd65cc116c86471074faabc))
|
|
767
|
+
- cli package json ([966695a](https://github.com/equinor/fusion-framework/commit/966695a7701cbea9115053226f48d378a77d6af3))
|
|
708
768
|
|
|
709
769
|
## 6.0.4 (2023-04-18)
|
|
710
770
|
|
|
@@ -750,7 +810,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
750
810
|
|
|
751
811
|
### Bug Fixes
|
|
752
812
|
|
|
753
|
-
-
|
|
813
|
+
- :bug: fix incorrect height cli portal ([38aee24](https://github.com/equinor/fusion-framework/commit/38aee24011fe1d3c049d7667d777c91b19a02d2c))
|
|
754
814
|
|
|
755
815
|
## [5.1.14](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.1.13...@equinor/fusion-framework-cli@5.1.14) (2023-04-13)
|
|
756
816
|
|
|
@@ -764,23 +824,23 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
764
824
|
|
|
765
825
|
### Bug Fixes
|
|
766
826
|
|
|
767
|
-
-
|
|
827
|
+
- force build of cli ([3fdff80](https://github.com/equinor/fusion-framework/commit/3fdff80c69c769d789d00f7cec5895a080be3ccf))
|
|
768
828
|
|
|
769
829
|
## [5.1.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.1.9...@equinor/fusion-framework-cli@5.1.11) (2023-03-31)
|
|
770
830
|
|
|
771
831
|
### Bug Fixes
|
|
772
832
|
|
|
773
|
-
-
|
|
774
|
-
-
|
|
775
|
-
-
|
|
833
|
+
- **cli:** contextSearch shows current context in selector ([52b4cc4](https://github.com/equinor/fusion-framework/commit/52b4cc4f2ade64e4f2722e16a2d27358d0121c05))
|
|
834
|
+
- **cli:** moved vite-plugin-enviornment from dev-dependencie to dependecies ([1c42889](https://github.com/equinor/fusion-framework/commit/1c428894503cdd95c5bfc2b60c0148860491f305))
|
|
835
|
+
- **cli:** update deps ([86cc317](https://github.com/equinor/fusion-framework/commit/86cc31728ce6d78ebd198eadc0ccddcaf16df55e))
|
|
776
836
|
|
|
777
837
|
## [5.1.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.1.9...@equinor/fusion-framework-cli@5.1.10) (2023-03-31)
|
|
778
838
|
|
|
779
839
|
### Bug Fixes
|
|
780
840
|
|
|
781
|
-
-
|
|
782
|
-
-
|
|
783
|
-
-
|
|
841
|
+
- **cli:** contextSearch shows current context in selector ([52b4cc4](https://github.com/equinor/fusion-framework/commit/52b4cc4f2ade64e4f2722e16a2d27358d0121c05))
|
|
842
|
+
- **cli:** moved vite-plugin-enviornment from dev-dependencie to dependecies ([1c42889](https://github.com/equinor/fusion-framework/commit/1c428894503cdd95c5bfc2b60c0148860491f305))
|
|
843
|
+
- **cli:** update deps ([86cc317](https://github.com/equinor/fusion-framework/commit/86cc31728ce6d78ebd198eadc0ccddcaf16df55e))
|
|
784
844
|
|
|
785
845
|
## [5.1.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.1.8...@equinor/fusion-framework-cli@5.1.9) (2023-03-28)
|
|
786
846
|
|
|
@@ -810,7 +870,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
810
870
|
|
|
811
871
|
### Bug Fixes
|
|
812
872
|
|
|
813
|
-
-
|
|
873
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
814
874
|
|
|
815
875
|
## [5.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.1.1...@equinor/fusion-framework-cli@5.1.2) (2023-03-21)
|
|
816
876
|
|
|
@@ -820,13 +880,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
820
880
|
|
|
821
881
|
### Bug Fixes
|
|
822
882
|
|
|
823
|
-
-
|
|
883
|
+
- **cli:** add missing proxy target ([1f14f99](https://github.com/equinor/fusion-framework/commit/1f14f99290d6ee3c112115f29b9f28d1a6959b62))
|
|
824
884
|
|
|
825
885
|
## [5.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.0.8...@equinor/fusion-framework-cli@5.1.0) (2023-03-20)
|
|
826
886
|
|
|
827
887
|
### Features
|
|
828
888
|
|
|
829
|
-
-
|
|
889
|
+
- **cli:** allow configuring portal host in cli ([9641b21](https://github.com/equinor/fusion-framework/commit/9641b215a1bff957687e9eda661679f000588a47))
|
|
830
890
|
|
|
831
891
|
## [5.0.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.0.7...@equinor/fusion-framework-cli@5.0.8) (2023-03-20)
|
|
832
892
|
|
|
@@ -840,13 +900,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
840
900
|
|
|
841
901
|
### Bug Fixes
|
|
842
902
|
|
|
843
|
-
-
|
|
903
|
+
- **cli:** use referer as proxy uri ([35edbdc](https://github.com/equinor/fusion-framework/commit/35edbdcae83d51595e013550303b8ea8b7e1c675))
|
|
844
904
|
|
|
845
905
|
## [5.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.0.5...@equinor/fusion-framework-cli@5.0.6) (2023-03-10)
|
|
846
906
|
|
|
847
907
|
### Bug Fixes
|
|
848
908
|
|
|
849
|
-
-
|
|
909
|
+
- **cli:** fix mounting element in app loader ([0410c7f](https://github.com/equinor/fusion-framework/commit/0410c7f0ce7a1b9f25c7716e0206534a1d047529))
|
|
850
910
|
|
|
851
911
|
## 5.0.5 (2023-03-09)
|
|
852
912
|
|
|
@@ -856,7 +916,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
856
916
|
|
|
857
917
|
### Bug Fixes
|
|
858
918
|
|
|
859
|
-
-
|
|
919
|
+
- **cli:** include `NODE_ENV` environment in build ([28faf2a](https://github.com/equinor/fusion-framework/commit/28faf2abc1adb09cc52242e26abb61e2ddfeb6c1))
|
|
860
920
|
|
|
861
921
|
## [5.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.0.2...@equinor/fusion-framework-cli@5.0.3) (2023-03-06)
|
|
862
922
|
|
|
@@ -870,36 +930,36 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
870
930
|
|
|
871
931
|
### Bug Fixes
|
|
872
932
|
|
|
873
|
-
-
|
|
933
|
+
- **cli:** allow cli to read paths from tsconfig ([c78673f](https://github.com/equinor/fusion-framework/commit/c78673f7d85a2c3697798aa6a59ef1792ca53af6))
|
|
874
934
|
|
|
875
935
|
## [5.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@4.1.0...@equinor/fusion-framework-cli@5.0.0) (2023-02-13)
|
|
876
936
|
|
|
877
937
|
### ⚠ BREAKING CHANGES
|
|
878
938
|
|
|
879
|
-
-
|
|
939
|
+
- **utils/observable:** `useObservableInputState` and `useObservableSelectorState` now return full state, not only value
|
|
880
940
|
|
|
881
941
|
### Bug Fixes
|
|
882
942
|
|
|
883
|
-
-
|
|
884
|
-
-
|
|
943
|
+
- **utils/observable:** rename `next` to `value`from `useObservableState` ([4a08445](https://github.com/equinor/fusion-framework/commit/4a08445645af2488666564c2da716d32aa5e88c0))
|
|
944
|
+
- **utils/observable:** when subject in useObservableState reset state ([9c5c041](https://github.com/equinor/fusion-framework/commit/9c5c041d3d8c0b01bd507ea7f672711d9f5cb653))
|
|
885
945
|
|
|
886
946
|
## [4.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@4.0.4...@equinor/fusion-framework-cli@4.1.0) (2023-02-09)
|
|
887
947
|
|
|
888
948
|
### Features
|
|
889
949
|
|
|
890
|
-
-
|
|
891
|
-
-
|
|
950
|
+
- (framework): person provider ([d4a3936](https://github.com/equinor/fusion-framework/commit/d4a3936d6a60f093f71eac1dacc05cd60c7bf554))
|
|
951
|
+
- **cli:** add react es lint for cli ([55137d7](https://github.com/equinor/fusion-framework/commit/55137d7baee9611fcb3e4bde4a4c0a954a8a68c6))
|
|
892
952
|
|
|
893
953
|
### Bug Fixes
|
|
894
954
|
|
|
895
|
-
-
|
|
896
|
-
-
|
|
955
|
+
- **cli:** add custom element register ([3f30c34](https://github.com/equinor/fusion-framework/commit/3f30c34324ca43fcc947f9163919a31611471afd))
|
|
956
|
+
- **cli:** update person resolver ([4ef99ae](https://github.com/equinor/fusion-framework/commit/4ef99ae5da870ec5d076041996ee98548fc18e5a))
|
|
897
957
|
|
|
898
958
|
## [4.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@4.0.4...@equinor/fusion-framework-cli@4.0.5) (2023-02-02)
|
|
899
959
|
|
|
900
960
|
### Bug Fixes
|
|
901
961
|
|
|
902
|
-
-
|
|
962
|
+
- **cli:** add custom element register ([3f30c34](https://github.com/equinor/fusion-framework/commit/3f30c34324ca43fcc947f9163919a31611471afd))
|
|
903
963
|
|
|
904
964
|
## 4.0.4 (2023-02-02)
|
|
905
965
|
|
|
@@ -921,21 +981,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
921
981
|
|
|
922
982
|
### ⚠ BREAKING CHANGES
|
|
923
983
|
|
|
924
|
-
-
|
|
984
|
+
- hook has new return type
|
|
925
985
|
|
|
926
986
|
### Bug Fixes
|
|
927
987
|
|
|
928
|
-
-
|
|
988
|
+
- references to useObservableState ([614a569](https://github.com/equinor/fusion-framework/commit/614a5691f856765f07f5d71e39708f80dea49a6e))
|
|
929
989
|
|
|
930
990
|
## [3.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@3.0.5...@equinor/fusion-framework-cli@3.1.0) (2023-02-01)
|
|
931
991
|
|
|
932
992
|
### Features
|
|
933
993
|
|
|
934
|
-
-
|
|
994
|
+
- **equinorloader:** centered starprogress loader ([081226d](https://github.com/equinor/fusion-framework/commit/081226d4afa1bdbb9daca0304ce34bc13471e8d7))
|
|
935
995
|
|
|
936
996
|
### Bug Fixes
|
|
937
997
|
|
|
938
|
-
-
|
|
998
|
+
- **cli:** fixing contextresolver ([41edf18](https://github.com/equinor/fusion-framework/commit/41edf18223aed93b393c0fab1e1f41797b7f06da)), closes [#591](https://github.com/equinor/fusion-framework/issues/591)
|
|
939
999
|
|
|
940
1000
|
## [3.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@3.0.4...@equinor/fusion-framework-cli@3.0.5) (2023-01-30)
|
|
941
1001
|
|
|
@@ -945,7 +1005,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
945
1005
|
|
|
946
1006
|
### Bug Fixes
|
|
947
1007
|
|
|
948
|
-
-
|
|
1008
|
+
- **cli:** disable 'x-powered-by' ([29cc4a8](https://github.com/equinor/fusion-framework/commit/29cc4a866f3f38a17a2df23eac047e7b82129696))
|
|
949
1009
|
|
|
950
1010
|
## [3.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@3.0.2...@equinor/fusion-framework-cli@3.0.3) (2023-01-30)
|
|
951
1011
|
|
|
@@ -955,7 +1015,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
955
1015
|
|
|
956
1016
|
### Bug Fixes
|
|
957
1017
|
|
|
958
|
-
-
|
|
1018
|
+
- **cli:** named exports ([b03381b](https://github.com/equinor/fusion-framework/commit/b03381bde924db1979e9e5e870b356dc5db4b81d))
|
|
959
1019
|
|
|
960
1020
|
## 3.0.1 (2023-01-27)
|
|
961
1021
|
|
|
@@ -1017,17 +1077,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1017
1077
|
|
|
1018
1078
|
### ⚠ BREAKING CHANGES
|
|
1019
1079
|
|
|
1020
|
-
-
|
|
1080
|
+
- **module-app:** manifest prop rename
|
|
1021
1081
|
|
|
1022
1082
|
### Bug Fixes
|
|
1023
1083
|
|
|
1024
|
-
-
|
|
1084
|
+
- **module-app:** rename `appKey` to `key` ([9ee97b1](https://github.com/equinor/fusion-framework/commit/9ee97b149b9167a3747da371de76490e287d9514))
|
|
1025
1085
|
|
|
1026
1086
|
## [1.2.14](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@1.2.13...@equinor/fusion-framework-cli@1.2.14) (2022-12-22)
|
|
1027
1087
|
|
|
1028
1088
|
### Bug Fixes
|
|
1029
1089
|
|
|
1030
|
-
-
|
|
1090
|
+
- **utils/cli:** typo in import ([e4c3d0a](https://github.com/equinor/fusion-framework/commit/e4c3d0ac13f8a47ec4447cc07f7b9dc4210ba0c1))
|
|
1031
1091
|
|
|
1032
1092
|
## [1.2.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@1.2.12...@equinor/fusion-framework-cli@1.2.13) (2022-12-21)
|
|
1033
1093
|
|
|
@@ -1057,13 +1117,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1057
1117
|
|
|
1058
1118
|
### Bug Fixes
|
|
1059
1119
|
|
|
1060
|
-
-
|
|
1120
|
+
- **utils/cli:** update app-loader ([4b1d5e7](https://github.com/equinor/fusion-framework/commit/4b1d5e7a5ca1e7b9d7a34556799a7c9aa77b9440))
|
|
1061
1121
|
|
|
1062
1122
|
## [1.2.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@1.2.5...@equinor/fusion-framework-cli@1.2.6) (2022-12-14)
|
|
1063
1123
|
|
|
1064
1124
|
### Bug Fixes
|
|
1065
1125
|
|
|
1066
|
-
-
|
|
1126
|
+
- **module-app:** make app module optional ([fa5c0ed](https://github.com/equinor/fusion-framework/commit/fa5c0ed0a9afc1f9ade3adb6e52e4425a59a7aa6))
|
|
1067
1127
|
|
|
1068
1128
|
## [1.2.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@1.2.4...@equinor/fusion-framework-cli@1.2.5) (2022-12-13)
|
|
1069
1129
|
|
|
@@ -1085,19 +1145,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1085
1145
|
|
|
1086
1146
|
### Bug Fixes
|
|
1087
1147
|
|
|
1088
|
-
-
|
|
1148
|
+
- **context:** method for contextParameterFn on enableContext ([398658d](https://github.com/equinor/fusion-framework/commit/398658de26355a8ca99aea291963b8c302df3ddc))
|
|
1089
1149
|
|
|
1090
1150
|
## [1.2.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@1.1.9...@equinor/fusion-framework-cli@1.2.0) (2022-12-12)
|
|
1091
1151
|
|
|
1092
1152
|
### Features
|
|
1093
1153
|
|
|
1094
|
-
-
|
|
1154
|
+
- **utils/cli:** update context selector ([c091107](https://github.com/equinor/fusion-framework/commit/c09110735e019b47f16300332fedb360d3396cfc))
|
|
1095
1155
|
|
|
1096
1156
|
### Bug Fixes
|
|
1097
1157
|
|
|
1098
|
-
-
|
|
1099
|
-
-
|
|
1100
|
-
-
|
|
1158
|
+
- **utils/cli:** fix layout of router outlet ([ac99033](https://github.com/equinor/fusion-framework/commit/ac99033061ae9867adf6c47f1293266fd20ab8ef))
|
|
1159
|
+
- **utils/cli:** update header of error view ([971b5e5](https://github.com/equinor/fusion-framework/commit/971b5e5ee8f3ec98e2ec41eb485bf01b35ee501e))
|
|
1160
|
+
- **utils/cli:** update loading of application ([4de3289](https://github.com/equinor/fusion-framework/commit/4de3289942f8e3d81f4ee5749311479f4f49b680))
|
|
1101
1161
|
|
|
1102
1162
|
## [1.1.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@1.1.8...@equinor/fusion-framework-cli@1.1.9) (2022-12-08)
|
|
1103
1163
|
|
|
@@ -1139,17 +1199,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1139
1199
|
|
|
1140
1200
|
### Features
|
|
1141
1201
|
|
|
1142
|
-
-
|
|
1143
|
-
-
|
|
1144
|
-
-
|
|
1145
|
-
-
|
|
1146
|
-
-
|
|
1202
|
+
- **context-selector:** adds icon to orgchart result items ([90343d9](https://github.com/equinor/fusion-framework/commit/90343d9915cb85eaa9945012c8709a2d40f6f023))
|
|
1203
|
+
- **context-selector:** header type contextselector and appcheck ([8ab0a50](https://github.com/equinor/fusion-framework/commit/8ab0a50e3f7ea3487796735c868f2e65d84fecd2))
|
|
1204
|
+
- **contextselector:** cli context selector ([f414466](https://github.com/equinor/fusion-framework/commit/f4144668e4deee32ed229807d81a0ea08ba5a476))
|
|
1205
|
+
- fusionlogo component ([b02fe16](https://github.com/equinor/fusion-framework/commit/b02fe16d3bb723b13413115826df0bbbc2b46815))
|
|
1206
|
+
- header with contextselector and logo ([174ed3d](https://github.com/equinor/fusion-framework/commit/174ed3d14383b6a813d2264ad5dfd9397fe17185))
|
|
1147
1207
|
|
|
1148
1208
|
### Bug Fixes
|
|
1149
1209
|
|
|
1150
|
-
-
|
|
1151
|
-
-
|
|
1152
|
-
-
|
|
1210
|
+
- **app:** adding type contextModule in event details for app package ([abea386](https://github.com/equinor/fusion-framework/commit/abea386c76c6297934a236d1bba9c71a12425065))
|
|
1211
|
+
- **cli:** contextselector improvements and comments ([bf8363e](https://github.com/equinor/fusion-framework/commit/bf8363e86909407632caa5ec46182643cbdd2205))
|
|
1212
|
+
- **cli:** updated dependencie versions ([12cb3c8](https://github.com/equinor/fusion-framework/commit/12cb3c8d56cad82986d910f45ec1933fe43bfd67))
|
|
1153
1213
|
|
|
1154
1214
|
## [1.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@1.0.1...@equinor/fusion-framework-cli@1.0.2) (2022-12-05)
|
|
1155
1215
|
|
|
@@ -1227,13 +1287,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1227
1287
|
|
|
1228
1288
|
### Bug Fixes
|
|
1229
1289
|
|
|
1230
|
-
-
|
|
1290
|
+
- **cli:** windows url path ([0176fa8](https://github.com/equinor/fusion-framework/commit/0176fa8ac1337025c584101ec2ceac8092eb0c13))
|
|
1231
1291
|
|
|
1232
1292
|
## 0.3.5 (2022-11-23)
|
|
1233
1293
|
|
|
1234
1294
|
### Bug Fixes
|
|
1235
1295
|
|
|
1236
|
-
-
|
|
1296
|
+
- **cli:** relative path resolve windows ([0316c30](https://github.com/equinor/fusion-framework/commit/0316c30fd0e75d230893015c40c96dd369e8e472))
|
|
1237
1297
|
|
|
1238
1298
|
## [0.3.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.3.3...@equinor/fusion-framework-cli@0.3.4) (2022-11-20)
|
|
1239
1299
|
|
|
@@ -1247,7 +1307,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1247
1307
|
|
|
1248
1308
|
### Bug Fixes
|
|
1249
1309
|
|
|
1250
|
-
-
|
|
1310
|
+
- basename in app render ([ae75815](https://github.com/equinor/fusion-framework/commit/ae75815877701c364f853413b29ad4f053d9c2c2))
|
|
1251
1311
|
|
|
1252
1312
|
## [0.3.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.3.0...@equinor/fusion-framework-cli@0.3.1) (2022-11-18)
|
|
1253
1313
|
|
|
@@ -1257,7 +1317,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1257
1317
|
|
|
1258
1318
|
### Features
|
|
1259
1319
|
|
|
1260
|
-
-
|
|
1320
|
+
- **module-navigation:** initial ([891e69d](https://github.com/equinor/fusion-framework/commit/891e69d9a98ba02ee1f9dd1c5b0cb31ff1b5fd0f))
|
|
1261
1321
|
|
|
1262
1322
|
## [0.2.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.2.2...@equinor/fusion-framework-cli@0.2.3) (2022-11-17)
|
|
1263
1323
|
|
|
@@ -1267,7 +1327,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1267
1327
|
|
|
1268
1328
|
### Bug Fixes
|
|
1269
1329
|
|
|
1270
|
-
-
|
|
1330
|
+
- **cli:** update dev scope for service discovery ([af1ff9c](https://github.com/equinor/fusion-framework/commit/af1ff9cb2eebb2a19b658549feef3b5822d8f8a3))
|
|
1271
1331
|
|
|
1272
1332
|
## [0.2.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.2.0...@equinor/fusion-framework-cli@0.2.1) (2022-11-16)
|
|
1273
1333
|
|
|
@@ -1277,8 +1337,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1277
1337
|
|
|
1278
1338
|
### Features
|
|
1279
1339
|
|
|
1280
|
-
-
|
|
1281
|
-
-
|
|
1340
|
+
- add router and app loader ([f21661d](https://github.com/equinor/fusion-framework/commit/f21661d1255633848d1662dabb74e8e33ab629d5))
|
|
1341
|
+
- **cli:** add proxy routing for app and config ([b923830](https://github.com/equinor/fusion-framework/commit/b9238309a2f15a470d63411d2da0b58a1eb63e90))
|
|
1282
1342
|
|
|
1283
1343
|
## 0.1.15 (2022-11-14)
|
|
1284
1344
|
|
|
@@ -1304,28 +1364,28 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1304
1364
|
|
|
1305
1365
|
### Bug Fixes
|
|
1306
1366
|
|
|
1307
|
-
-
|
|
1367
|
+
- **cli:** add dep @vitejs/plugin-react ([415dd9f](https://github.com/equinor/fusion-framework/commit/415dd9f466076f232e751bbbffa54a8b10c0bea4))
|
|
1308
1368
|
|
|
1309
1369
|
## [0.1.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.1.8...@equinor/fusion-framework-cli@0.1.9) (2022-11-07)
|
|
1310
1370
|
|
|
1311
1371
|
### Bug Fixes
|
|
1312
1372
|
|
|
1313
|
-
-
|
|
1373
|
+
- **cli:** requires vite ([c512d9e](https://github.com/equinor/fusion-framework/commit/c512d9e0e413e515fe0dcb412af49996b04d2484))
|
|
1314
1374
|
|
|
1315
1375
|
## [0.1.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.1.7...@equinor/fusion-framework-cli@0.1.8) (2022-11-07)
|
|
1316
1376
|
|
|
1317
1377
|
### Bug Fixes
|
|
1318
1378
|
|
|
1319
|
-
-
|
|
1320
|
-
-
|
|
1379
|
+
- **cli:** allow overwrite on build ([8e648d7](https://github.com/equinor/fusion-framework/commit/8e648d7ea17518a3ec74f3bb366c4247b8f4fce9))
|
|
1380
|
+
- **cli:** set default dev-server logging to info ([5f302d4](https://github.com/equinor/fusion-framework/commit/5f302d4773abdca9e29660e8f9dd5c8d80e1ebe2))
|
|
1321
1381
|
|
|
1322
1382
|
## [0.1.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.1.6...@equinor/fusion-framework-cli@0.1.7) (2022-11-03)
|
|
1323
1383
|
|
|
1324
1384
|
### Bug Fixes
|
|
1325
1385
|
|
|
1326
|
-
-
|
|
1327
|
-
-
|
|
1328
|
-
-
|
|
1386
|
+
- **cli:** allow default export of render app ([d27a336](https://github.com/equinor/fusion-framework/commit/d27a336874d918448389a79b1291b13a1b2f41d9))
|
|
1387
|
+
- **cli:** transform request to index.html ([e531958](https://github.com/equinor/fusion-framework/commit/e5319586598cf8567987040468f933438a4a7521))
|
|
1388
|
+
- deprecate useFramework from hooks ([d3d9b24](https://github.com/equinor/fusion-framework/commit/d3d9b24fe56937e2c9feba7de4228d8eb1cbbec5))
|
|
1329
1389
|
|
|
1330
1390
|
## [0.1.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.1.5...@equinor/fusion-framework-cli@0.1.6) (2022-11-03)
|
|
1331
1391
|
|
|
@@ -1355,4 +1415,4 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1355
1415
|
|
|
1356
1416
|
### Features
|
|
1357
1417
|
|
|
1358
|
-
-
|
|
1418
|
+
- **cli:** initial commit ([#380](https://github.com/equinor/fusion-framework/issues/380)) ([775b74f](https://github.com/equinor/fusion-framework/commit/775b74f5cc8507cf5449a9f91e018d80a4ab50a1))
|