@equinor/fusion-framework-react-app 5.0.11 → 5.1.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 CHANGED
@@ -1,486 +1,550 @@
1
1
  # Change Log
2
2
 
3
+ ## 5.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#2180](https://github.com/equinor/fusion-framework/pull/2180) [`060a1aa`](https://github.com/equinor/fusion-framework/commit/060a1aa7f4f2ce6b1ddef527a219bf267e488500) Thanks [@odinr](https://github.com/odinr)! - ## @equinor/fusion-react
8
+
9
+ ### What changed?
10
+
11
+ The `useAppEnvironmentVariables` hook has been added to the `@equinor/fusion-react` package.
12
+ This hook provides access to the application's environment variables, which are retrieved from the app module provided by the framework.
13
+
14
+ ### Why the change?
15
+
16
+ Previously, there was no built-in way to access the application's environment variables from the React components.
17
+ This new hook fills that gap, making it easier for developers to retrieve and use the environment configuration in their applications.
18
+
19
+ ### How to use the new feature
20
+
21
+ To use the `useAppEnvironmentVariables` hook, simply import it and call it in your React component:
22
+
23
+ ```typescript
24
+ import { useAppEnvironmentVariables } from '@equinor/fusion-react';
25
+
26
+ const MyComponent = () => {
27
+ const env = useAppEnvironmentVariables<{ API_URL: string }>();
28
+
29
+ if (!env.complete) {
30
+ return <div>Loading environment variables...</div>;
31
+ }
32
+
33
+ if (env.error) {
34
+ return <div>Error loading environment variables</div>;
35
+ }
36
+
37
+ return (
38
+ <div>
39
+ My environment variables: {JSON.stringify(env.value, null, 2)}
40
+ </div>
41
+ );
42
+ };
43
+ ```
44
+
45
+ The hook returns an observable state object that represents the current environment configuration.
46
+ The `value` property of this object contains the environment variables, which can be typed using a generic type parameter.
47
+
48
+ If the environment configuration is not yet available (e.g., during the initial load), the `complete` property will be `false`.
49
+ If there was an error retrieving the configuration, the `error` property will be set.
50
+
51
+ ### Migration guide
52
+
53
+ There are no breaking changes introduced with this feature. Developers can start using the `useAppEnvironmentVariables` hook immediately to access their application's environment variables.
54
+
55
+ ### Patch Changes
56
+
57
+ - Updated dependencies [[`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2), [`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2), [`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2)]:
58
+ - @equinor/fusion-framework-module@4.3.1
59
+ - @equinor/fusion-framework-app@9.0.9
60
+ - @equinor/fusion-framework-module-app@5.3.5
61
+ - @equinor/fusion-framework-module-msal@3.1.1
62
+ - @equinor/fusion-framework-module-navigation@4.0.2
63
+ - @equinor/fusion-framework-react@7.0.8
64
+ - @equinor/fusion-framework-react-module@3.1.2
65
+ - @equinor/fusion-framework-react-module-http@5.0.4
66
+
3
67
  ## 5.0.11
4
68
 
5
69
  ### Patch Changes
6
70
 
7
- - Updated dependencies []:
8
- - @equinor/fusion-framework-module-app@5.3.4
9
- - @equinor/fusion-framework-app@9.0.8
10
- - @equinor/fusion-framework-react@7.0.7
71
+ - Updated dependencies []:
72
+ - @equinor/fusion-framework-module-app@5.3.4
73
+ - @equinor/fusion-framework-app@9.0.8
74
+ - @equinor/fusion-framework-react@7.0.7
11
75
 
12
76
  ## 5.0.10
13
77
 
14
78
  ### Patch Changes
15
79
 
16
- - Updated dependencies []:
17
- - @equinor/fusion-framework-module-app@5.3.3
18
- - @equinor/fusion-framework-app@9.0.7
19
- - @equinor/fusion-framework-react@7.0.6
80
+ - Updated dependencies []:
81
+ - @equinor/fusion-framework-module-app@5.3.3
82
+ - @equinor/fusion-framework-app@9.0.7
83
+ - @equinor/fusion-framework-react@7.0.6
20
84
 
21
85
  ## 5.0.9
22
86
 
23
87
  ### Patch Changes
24
88
 
25
- - [#2096](https://github.com/equinor/fusion-framework/pull/2096) [`0f95a74`](https://github.com/equinor/fusion-framework/commit/0f95a74b78cb5e86bc14c4a0f1f1715415746ef5) Thanks [@odinr](https://github.com/odinr)! - update documentation
89
+ - [#2096](https://github.com/equinor/fusion-framework/pull/2096) [`0f95a74`](https://github.com/equinor/fusion-framework/commit/0f95a74b78cb5e86bc14c4a0f1f1715415746ef5) Thanks [@odinr](https://github.com/odinr)! - update documentation
26
90
 
27
- - Updated dependencies [[`0f95a74`](https://github.com/equinor/fusion-framework/commit/0f95a74b78cb5e86bc14c4a0f1f1715415746ef5)]:
28
- - @equinor/fusion-framework-module-navigation@4.0.1
29
- - @equinor/fusion-framework-module-app@5.3.2
30
- - @equinor/fusion-framework-app@9.0.6
31
- - @equinor/fusion-framework-react@7.0.5
91
+ - Updated dependencies [[`0f95a74`](https://github.com/equinor/fusion-framework/commit/0f95a74b78cb5e86bc14c4a0f1f1715415746ef5)]:
92
+ - @equinor/fusion-framework-module-navigation@4.0.1
93
+ - @equinor/fusion-framework-module-app@5.3.2
94
+ - @equinor/fusion-framework-app@9.0.6
95
+ - @equinor/fusion-framework-react@7.0.5
32
96
 
33
97
  ## 5.0.8
34
98
 
35
99
  ### Patch Changes
36
100
 
37
- - Updated dependencies []:
38
- - @equinor/fusion-framework-app@9.0.5
39
- - @equinor/fusion-framework-module-app@5.3.1
40
- - @equinor/fusion-framework-react-module-http@5.0.3
41
- - @equinor/fusion-framework-react@7.0.4
101
+ - Updated dependencies []:
102
+ - @equinor/fusion-framework-app@9.0.5
103
+ - @equinor/fusion-framework-module-app@5.3.1
104
+ - @equinor/fusion-framework-react-module-http@5.0.3
105
+ - @equinor/fusion-framework-react@7.0.4
42
106
 
43
107
  ## 5.0.7
44
108
 
45
109
  ### Patch Changes
46
110
 
47
- - Updated dependencies []:
48
- - @equinor/fusion-framework-module-app@5.3.1
49
- - @equinor/fusion-framework-react@7.0.3
50
- - @equinor/fusion-framework-app@9.0.4
111
+ - Updated dependencies []:
112
+ - @equinor/fusion-framework-module-app@5.3.1
113
+ - @equinor/fusion-framework-react@7.0.3
114
+ - @equinor/fusion-framework-app@9.0.4
51
115
 
52
116
  ## 5.0.6
53
117
 
54
118
  ### Patch Changes
55
119
 
56
- - Updated dependencies []:
57
- - @equinor/fusion-framework-app@9.0.3
58
- - @equinor/fusion-framework-module-app@5.3.0
59
- - @equinor/fusion-framework-react-module-http@5.0.2
60
- - @equinor/fusion-framework-react@7.0.2
120
+ - Updated dependencies []:
121
+ - @equinor/fusion-framework-app@9.0.3
122
+ - @equinor/fusion-framework-module-app@5.3.0
123
+ - @equinor/fusion-framework-react-module-http@5.0.2
124
+ - @equinor/fusion-framework-react@7.0.2
61
125
 
62
126
  ## 5.0.5
63
127
 
64
128
  ### Patch Changes
65
129
 
66
- - Updated dependencies [[`036ec15`](https://github.com/equinor/fusion-framework/commit/036ec151ace9c051ded41798ab94b8ee5e3d4461)]:
67
- - @equinor/fusion-framework-app@9.0.2
130
+ - Updated dependencies [[`036ec15`](https://github.com/equinor/fusion-framework/commit/036ec151ace9c051ded41798ab94b8ee5e3d4461)]:
131
+ - @equinor/fusion-framework-app@9.0.2
68
132
 
69
133
  ## 5.0.4
70
134
 
71
135
  ### Patch Changes
72
136
 
73
- - [#1981](https://github.com/equinor/fusion-framework/pull/1981) [`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc) Thanks [@eikeland](https://github.com/eikeland)! - Align package exports with node10+ documentation.
137
+ - [#1981](https://github.com/equinor/fusion-framework/pull/1981) [`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc) Thanks [@eikeland](https://github.com/eikeland)! - Align package exports with node10+ documentation.
74
138
 
75
- - Updated dependencies [[`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc)]:
76
- - @equinor/fusion-framework-react-module@3.1.1
77
- - @equinor/fusion-framework-react@7.0.1
78
- - @equinor/fusion-framework-app@9.0.1
79
- - @equinor/fusion-framework-react-module-http@5.0.1
80
- - @equinor/fusion-framework-module-app@5.3.0
139
+ - Updated dependencies [[`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc)]:
140
+ - @equinor/fusion-framework-react-module@3.1.1
141
+ - @equinor/fusion-framework-react@7.0.1
142
+ - @equinor/fusion-framework-app@9.0.1
143
+ - @equinor/fusion-framework-react-module-http@5.0.1
144
+ - @equinor/fusion-framework-module-app@5.3.0
81
145
 
82
146
  ## 5.0.3
83
147
 
84
148
  ### Patch Changes
85
149
 
86
- - [#1963](https://github.com/equinor/fusion-framework/pull/1963) [`e0b95f1`](https://github.com/equinor/fusion-framework/commit/e0b95f1879ecfc108987073a58c3c3150c156aa8) Thanks [@eikeland](https://github.com/eikeland)! - Fixes type exports in package
150
+ - [#1963](https://github.com/equinor/fusion-framework/pull/1963) [`e0b95f1`](https://github.com/equinor/fusion-framework/commit/e0b95f1879ecfc108987073a58c3c3150c156aa8) Thanks [@eikeland](https://github.com/eikeland)! - Fixes type exports in package
87
151
 
88
152
  ## 5.0.0
89
153
 
90
154
  ### Minor Changes
91
155
 
92
- - [#1953](https://github.com/equinor/fusion-framework/pull/1953) [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904) Thanks [@odinr](https://github.com/odinr)! - updated typescript to 5.4.2
156
+ - [#1953](https://github.com/equinor/fusion-framework/pull/1953) [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904) Thanks [@odinr](https://github.com/odinr)! - updated typescript to 5.4.2
93
157
 
94
158
  ### Patch Changes
95
159
 
96
- - Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904), [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
97
- - @equinor/fusion-framework-module@4.3.0
98
- - @equinor/fusion-framework-react-module@3.1.0
99
- - @equinor/fusion-framework-module-navigation@4.0.0
100
- - @equinor/fusion-framework-react-module-http@5.0.0
101
- - @equinor/fusion-framework-react@7.0.0
102
- - @equinor/fusion-framework-module-msal@3.1.0
103
- - @equinor/fusion-framework-module-app@5.3.0
104
- - @equinor/fusion-framework-app@9.0.0
160
+ - Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904), [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
161
+ - @equinor/fusion-framework-module@4.3.0
162
+ - @equinor/fusion-framework-react-module@3.1.0
163
+ - @equinor/fusion-framework-module-navigation@4.0.0
164
+ - @equinor/fusion-framework-react-module-http@5.0.0
165
+ - @equinor/fusion-framework-react@7.0.0
166
+ - @equinor/fusion-framework-module-msal@3.1.0
167
+ - @equinor/fusion-framework-module-app@5.3.0
168
+ - @equinor/fusion-framework-app@9.0.0
105
169
 
106
170
  ## 4.3.8
107
171
 
108
172
  ### Patch Changes
109
173
 
110
- - Updated dependencies []:
111
- - @equinor/fusion-framework-app@8.1.4
112
- - @equinor/fusion-framework-react@6.0.5
174
+ - Updated dependencies []:
175
+ - @equinor/fusion-framework-app@8.1.4
176
+ - @equinor/fusion-framework-react@6.0.5
113
177
 
114
178
  ## 4.3.7
115
179
 
116
180
  ### Patch Changes
117
181
 
118
- - Updated dependencies [[`2acd475`](https://github.com/equinor/fusion-framework/commit/2acd47532fe680f498fdf7229309cddb2594e391)]:
119
- - @equinor/fusion-framework-module-app@5.2.14
120
- - @equinor/fusion-framework-app@8.1.3
121
- - @equinor/fusion-framework-react@6.0.4
182
+ - Updated dependencies [[`2acd475`](https://github.com/equinor/fusion-framework/commit/2acd47532fe680f498fdf7229309cddb2594e391)]:
183
+ - @equinor/fusion-framework-module-app@5.2.14
184
+ - @equinor/fusion-framework-app@8.1.3
185
+ - @equinor/fusion-framework-react@6.0.4
122
186
 
123
187
  ## 4.3.6
124
188
 
125
189
  ### Patch Changes
126
190
 
127
- - Updated dependencies []:
128
- - @equinor/fusion-framework-react@6.0.3
129
- - @equinor/fusion-framework-app@8.1.2
191
+ - Updated dependencies []:
192
+ - @equinor/fusion-framework-react@6.0.3
193
+ - @equinor/fusion-framework-app@8.1.2
130
194
 
131
195
  ## 4.3.5
132
196
 
133
197
  ### Patch Changes
134
198
 
135
- - [#1852](https://github.com/equinor/fusion-framework/pull/1852) [`bdc50b0`](https://github.com/equinor/fusion-framework/commit/bdc50b035b9c20301105d17509937ff3d91ea027) Thanks [@odinr](https://github.com/odinr)! - chore: add missing exported type
199
+ - [#1852](https://github.com/equinor/fusion-framework/pull/1852) [`bdc50b0`](https://github.com/equinor/fusion-framework/commit/bdc50b035b9c20301105d17509937ff3d91ea027) Thanks [@odinr](https://github.com/odinr)! - chore: add missing exported type
136
200
 
137
201
  ## 4.3.4
138
202
 
139
203
  ### Patch Changes
140
204
 
141
- - [#1746](https://github.com/equinor/fusion-framework/pull/1746) [`7a70bfb`](https://github.com/equinor/fusion-framework/commit/7a70bfb6674c5cf8624ce090e318239a41c8fb86) Thanks [@Noggling](https://github.com/Noggling)! - Exposing Widget for app development.
205
+ - [#1746](https://github.com/equinor/fusion-framework/pull/1746) [`7a70bfb`](https://github.com/equinor/fusion-framework/commit/7a70bfb6674c5cf8624ce090e318239a41c8fb86) Thanks [@Noggling](https://github.com/Noggling)! - Exposing Widget for app development.
142
206
 
143
207
  ## 4.3.3
144
208
 
145
209
  ### Patch Changes
146
210
 
147
- - Updated dependencies [[`2a813bc`](https://github.com/equinor/fusion-framework/commit/2a813bc0a32f53e7515f16f8b5cba1cf1e5018a3), [`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
148
- - @equinor/fusion-framework-react@6.0.2
149
- - @equinor/fusion-framework-module@4.2.7
150
- - @equinor/fusion-framework-app@8.1.1
151
- - @equinor/fusion-framework-module-app@5.2.13
152
- - @equinor/fusion-framework-module-msal@3.0.10
153
- - @equinor/fusion-framework-module-navigation@3.1.4
154
- - @equinor/fusion-framework-react-module@3.0.8
155
- - @equinor/fusion-framework-react-module-http@4.0.6
211
+ - Updated dependencies [[`2a813bc`](https://github.com/equinor/fusion-framework/commit/2a813bc0a32f53e7515f16f8b5cba1cf1e5018a3), [`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
212
+ - @equinor/fusion-framework-react@6.0.2
213
+ - @equinor/fusion-framework-module@4.2.7
214
+ - @equinor/fusion-framework-app@8.1.1
215
+ - @equinor/fusion-framework-module-app@5.2.13
216
+ - @equinor/fusion-framework-module-msal@3.0.10
217
+ - @equinor/fusion-framework-module-navigation@3.1.4
218
+ - @equinor/fusion-framework-react-module@3.0.8
219
+ - @equinor/fusion-framework-react-module-http@4.0.6
156
220
 
157
221
  ## 4.3.2
158
222
 
159
223
  ### Patch Changes
160
224
 
161
- - [#1781](https://github.com/equinor/fusion-framework/pull/1781) [`0f3affa`](https://github.com/equinor/fusion-framework/commit/0f3affa45b7b7dc0a0f01682682293e4b899a5d9) Thanks [@odinr](https://github.com/odinr)! - Added functionality for enabling feature flagging
225
+ - [#1781](https://github.com/equinor/fusion-framework/pull/1781) [`0f3affa`](https://github.com/equinor/fusion-framework/commit/0f3affa45b7b7dc0a0f01682682293e4b899a5d9) Thanks [@odinr](https://github.com/odinr)! - Added functionality for enabling feature flagging
162
226
 
163
- ```ts
164
- import { enableFeatureFlag } from `@equinor/fusion-framework-react-app/feature-flag`
165
- enableFeatureFlag(confgurator, [{
166
- id: 'my-flag',
167
- title: 'My flag'
168
- }])
169
- ```
227
+ ```ts
228
+ import { enableFeatureFlag } from `@equinor/fusion-framework-react-app/feature-flag`
229
+ enableFeatureFlag(confgurator, [{
230
+ id: 'my-flag',
231
+ title: 'My flag'
232
+ }])
233
+ ```
170
234
 
171
- the user still needs to install `@equinor/fusion-framework-module-feature-flag`
235
+ the user still needs to install `@equinor/fusion-framework-module-feature-flag`
172
236
 
173
- - Updated dependencies [[`0f3affa`](https://github.com/equinor/fusion-framework/commit/0f3affa45b7b7dc0a0f01682682293e4b899a5d9)]:
174
- - @equinor/fusion-framework-app@8.1.0
237
+ - Updated dependencies [[`0f3affa`](https://github.com/equinor/fusion-framework/commit/0f3affa45b7b7dc0a0f01682682293e4b899a5d9)]:
238
+ - @equinor/fusion-framework-app@8.1.0
175
239
 
176
240
  ## 4.3.1
177
241
 
178
242
  ### Patch Changes
179
243
 
180
- - Updated dependencies [[`1ca8264`](https://github.com/equinor/fusion-framework/commit/1ca826489a0d1dd755324344a12bbf6659a3be12), [`fdbe12f`](https://github.com/equinor/fusion-framework/commit/fdbe12f258aeb98d91094f16f2d8ce229d7b13ee)]:
181
- - @equinor/fusion-framework-module-app@5.2.13
182
- - @equinor/fusion-framework-react@6.0.1
183
- - @equinor/fusion-framework-app@8.0.1
244
+ - Updated dependencies [[`1ca8264`](https://github.com/equinor/fusion-framework/commit/1ca826489a0d1dd755324344a12bbf6659a3be12), [`fdbe12f`](https://github.com/equinor/fusion-framework/commit/fdbe12f258aeb98d91094f16f2d8ce229d7b13ee)]:
245
+ - @equinor/fusion-framework-module-app@5.2.13
246
+ - @equinor/fusion-framework-react@6.0.1
247
+ - @equinor/fusion-framework-app@8.0.1
184
248
 
185
249
  ## 4.3.0
186
250
 
187
251
  ### Minor Changes
188
252
 
189
- - [#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 hook for accessing feature flags
253
+ - [#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 hook for accessing feature flags
190
254
 
191
- > [!IMPORTANT]
192
- > the `useFeature` hook look for flag in parent **(portal)** if not defined in application scope
255
+ > [!IMPORTANT]
256
+ > the `useFeature` hook look for flag in parent **(portal)** if not defined in application scope
193
257
 
194
- > [!CAUTION] > `@equinor/fusion-framework-react-app/feature-flag` will only return `useFeature`, since we don not see any scenario which an application would need to access multiple.
195
- > We might add `useFeatures` if the should be an use-case
258
+ > [!CAUTION] > `@equinor/fusion-framework-react-app/feature-flag` will only return `useFeature`, since we don not see any scenario which an application would need to access multiple.
259
+ > We might add `useFeatures` if the should be an use-case
196
260
 
197
261
  ### Patch Changes
198
262
 
199
- - Updated dependencies [[`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e), [`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e)]:
200
- - @equinor/fusion-framework-app@8.0.0
201
- - @equinor/fusion-framework-react@6.0.0
263
+ - Updated dependencies [[`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e), [`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e)]:
264
+ - @equinor/fusion-framework-app@8.0.0
265
+ - @equinor/fusion-framework-react@6.0.0
202
266
 
203
267
  ## 4.2.1
204
268
 
205
269
  ### Patch Changes
206
270
 
207
- - [#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
271
+ - [#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
208
272
 
209
- - Updated dependencies []:
210
- - @equinor/fusion-framework-react@5.3.9
273
+ - Updated dependencies []:
274
+ - @equinor/fusion-framework-react@5.3.9
211
275
 
212
276
  ## 4.2.0
213
277
 
214
278
  ### Minor Changes
215
279
 
216
- - [#1646](https://github.com/equinor/fusion-framework/pull/1646) [`5eab8af`](https://github.com/equinor/fusion-framework/commit/5eab8afe3c3106cc67ad14ce4cbee6c7e4e8dfb1) Thanks [@odinr](https://github.com/odinr)! - Created namespace for MSAL:
280
+ - [#1646](https://github.com/equinor/fusion-framework/pull/1646) [`5eab8af`](https://github.com/equinor/fusion-framework/commit/5eab8afe3c3106cc67ad14ce4cbee6c7e4e8dfb1) Thanks [@odinr](https://github.com/odinr)! - Created namespace for MSAL:
217
281
 
218
- - Created hooks for accessing current authenticated account
219
- - Created hooks for acquiring token
220
- - Created hooks for acquiring access token
282
+ - Created hooks for accessing current authenticated account
283
+ - Created hooks for acquiring token
284
+ - Created hooks for acquiring access token
221
285
 
222
286
  ### Patch Changes
223
287
 
224
- - Updated dependencies [[`5eab8af`](https://github.com/equinor/fusion-framework/commit/5eab8afe3c3106cc67ad14ce4cbee6c7e4e8dfb1)]:
225
- - @equinor/fusion-framework-module-msal@3.0.9
226
- - @equinor/fusion-framework-app@7.1.15
227
- - @equinor/fusion-framework-module-app@5.2.12
228
- - @equinor/fusion-framework-react@5.3.8
229
- - @equinor/fusion-framework-react-module-http@4.0.5
288
+ - Updated dependencies [[`5eab8af`](https://github.com/equinor/fusion-framework/commit/5eab8afe3c3106cc67ad14ce4cbee6c7e4e8dfb1)]:
289
+ - @equinor/fusion-framework-module-msal@3.0.9
290
+ - @equinor/fusion-framework-app@7.1.15
291
+ - @equinor/fusion-framework-module-app@5.2.12
292
+ - @equinor/fusion-framework-react@5.3.8
293
+ - @equinor/fusion-framework-react-module-http@4.0.5
230
294
 
231
295
  ## 4.1.19
232
296
 
233
297
  ### Patch Changes
234
298
 
235
- - Updated dependencies []:
236
- - @equinor/fusion-framework-app@7.1.14
237
- - @equinor/fusion-framework-module-app@5.2.12
238
- - @equinor/fusion-framework-react-module-http@4.0.4
239
- - @equinor/fusion-framework-react@5.3.7
299
+ - Updated dependencies []:
300
+ - @equinor/fusion-framework-app@7.1.14
301
+ - @equinor/fusion-framework-module-app@5.2.12
302
+ - @equinor/fusion-framework-react-module-http@4.0.4
303
+ - @equinor/fusion-framework-react@5.3.7
240
304
 
241
305
  ## 4.1.18
242
306
 
243
307
  ### Patch Changes
244
308
 
245
- - Updated dependencies [[`cce198d`](https://github.com/equinor/fusion-framework/commit/cce198d6a91fb7912265d4383246dc405cf17a17), [`f85316f`](https://github.com/equinor/fusion-framework/commit/f85316f2344258896a77ef602bd4047dfa553788)]:
246
- - @equinor/fusion-framework-react-module-http@4.0.3
247
- - @equinor/fusion-framework-app@7.1.13
248
- - @equinor/fusion-framework-module-app@5.2.12
249
- - @equinor/fusion-framework-react@5.3.6
309
+ - Updated dependencies [[`cce198d`](https://github.com/equinor/fusion-framework/commit/cce198d6a91fb7912265d4383246dc405cf17a17), [`f85316f`](https://github.com/equinor/fusion-framework/commit/f85316f2344258896a77ef602bd4047dfa553788)]:
310
+ - @equinor/fusion-framework-react-module-http@4.0.3
311
+ - @equinor/fusion-framework-app@7.1.13
312
+ - @equinor/fusion-framework-module-app@5.2.12
313
+ - @equinor/fusion-framework-react@5.3.6
250
314
 
251
315
  ## 4.1.17
252
316
 
253
317
  ### Patch Changes
254
318
 
255
- - Updated dependencies []:
256
- - @equinor/fusion-framework-module-app@5.2.12
257
- - @equinor/fusion-framework-react@5.3.5
258
- - @equinor/fusion-framework-app@7.1.12
319
+ - Updated dependencies []:
320
+ - @equinor/fusion-framework-module-app@5.2.12
321
+ - @equinor/fusion-framework-react@5.3.5
322
+ - @equinor/fusion-framework-app@7.1.12
259
323
 
260
324
  ## 4.1.16
261
325
 
262
326
  ### Patch Changes
263
327
 
264
- - [#1595](https://github.com/equinor/fusion-framework/pull/1595) [`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125) Thanks [@Gustav-Eikaas](https://github.com/Gustav-Eikaas)! - support for module resolution NodeNext & Bundler
328
+ - [#1595](https://github.com/equinor/fusion-framework/pull/1595) [`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125) Thanks [@Gustav-Eikaas](https://github.com/Gustav-Eikaas)! - support for module resolution NodeNext & Bundler
265
329
 
266
- - Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
267
- - @equinor/fusion-framework-module-navigation@3.1.3
268
- - @equinor/fusion-framework-react@5.3.4
269
- - @equinor/fusion-framework-module@4.2.6
270
- - @equinor/fusion-framework-module-app@5.2.11
271
- - @equinor/fusion-framework-app@7.1.11
272
- - @equinor/fusion-framework-react-module@3.0.7
273
- - @equinor/fusion-framework-react-module-http@4.0.2
330
+ - Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
331
+ - @equinor/fusion-framework-module-navigation@3.1.3
332
+ - @equinor/fusion-framework-react@5.3.4
333
+ - @equinor/fusion-framework-module@4.2.6
334
+ - @equinor/fusion-framework-module-app@5.2.11
335
+ - @equinor/fusion-framework-app@7.1.11
336
+ - @equinor/fusion-framework-react-module@3.0.7
337
+ - @equinor/fusion-framework-react-module-http@4.0.2
274
338
 
275
339
  ## 4.1.15
276
340
 
277
341
  ### Patch Changes
278
342
 
279
- - Updated dependencies [[`6d303787`](https://github.com/equinor/fusion-framework/commit/6d303787f647bb2fc3c90456eccac751abb264c4)]:
280
- - @equinor/fusion-framework-module-app@5.2.10
281
- - @equinor/fusion-framework-app@7.1.10
282
- - @equinor/fusion-framework-react@5.3.3
343
+ - Updated dependencies [[`6d303787`](https://github.com/equinor/fusion-framework/commit/6d303787f647bb2fc3c90456eccac751abb264c4)]:
344
+ - @equinor/fusion-framework-module-app@5.2.10
345
+ - @equinor/fusion-framework-app@7.1.10
346
+ - @equinor/fusion-framework-react@5.3.3
283
347
 
284
348
  ## 4.1.14
285
349
 
286
350
  ### Patch Changes
287
351
 
288
- - Updated dependencies [[`8274dca1`](https://github.com/equinor/fusion-framework/commit/8274dca10a773e1d29ffbce82a6f6f2bae818316)]:
289
- - @equinor/fusion-framework-module-app@5.2.9
290
- - @equinor/fusion-framework-app@7.1.9
291
- - @equinor/fusion-framework-react@5.3.3
352
+ - Updated dependencies [[`8274dca1`](https://github.com/equinor/fusion-framework/commit/8274dca10a773e1d29ffbce82a6f6f2bae818316)]:
353
+ - @equinor/fusion-framework-module-app@5.2.9
354
+ - @equinor/fusion-framework-app@7.1.9
355
+ - @equinor/fusion-framework-react@5.3.3
292
356
 
293
357
  ## 4.1.13
294
358
 
295
359
  ### Patch Changes
296
360
 
297
- - Updated dependencies [[`a8f0f061`](https://github.com/equinor/fusion-framework/commit/a8f0f061dbde9efb3e2faf11fdb9c886d2277723)]:
298
- - @equinor/fusion-framework-module-navigation@3.1.2
361
+ - Updated dependencies [[`a8f0f061`](https://github.com/equinor/fusion-framework/commit/a8f0f061dbde9efb3e2faf11fdb9c886d2277723)]:
362
+ - @equinor/fusion-framework-module-navigation@3.1.2
299
363
 
300
364
  ## 4.1.12
301
365
 
302
366
  ### Patch Changes
303
367
 
304
- - Updated dependencies [[`e2ec89f4`](https://github.com/equinor/fusion-framework/commit/e2ec89f457135037e2a333a61ba546fee6d99cd8)]:
305
- - @equinor/fusion-framework-module-navigation@3.1.1
368
+ - Updated dependencies [[`e2ec89f4`](https://github.com/equinor/fusion-framework/commit/e2ec89f457135037e2a333a61ba546fee6d99cd8)]:
369
+ - @equinor/fusion-framework-module-navigation@3.1.1
306
370
 
307
371
  ## 4.1.11
308
372
 
309
373
  ### Patch Changes
310
374
 
311
- - Updated dependencies [[`6f542d4c`](https://github.com/equinor/fusion-framework/commit/6f542d4c7c01ae94c28b7e82efba800a902a7633)]:
312
- - @equinor/fusion-framework-module-navigation@3.1.0
375
+ - Updated dependencies [[`6f542d4c`](https://github.com/equinor/fusion-framework/commit/6f542d4c7c01ae94c28b7e82efba800a902a7633)]:
376
+ - @equinor/fusion-framework-module-navigation@3.1.0
313
377
 
314
378
  ## 4.1.10
315
379
 
316
380
  ### Patch Changes
317
381
 
318
- - Updated dependencies []:
319
- - @equinor/fusion-framework-module-app@5.2.8
320
- - @equinor/fusion-framework-app@7.1.8
321
- - @equinor/fusion-framework-react@5.3.3
382
+ - Updated dependencies []:
383
+ - @equinor/fusion-framework-module-app@5.2.8
384
+ - @equinor/fusion-framework-app@7.1.8
385
+ - @equinor/fusion-framework-react@5.3.3
322
386
 
323
387
  ## 4.1.9
324
388
 
325
389
  ### Patch Changes
326
390
 
327
- - Updated dependencies [[`7ad31761`](https://github.com/equinor/fusion-framework/commit/7ad3176102f92da108b67ede6fdf29b76149bed9)]:
328
- - @equinor/fusion-framework-module-app@5.2.7
329
- - @equinor/fusion-framework-app@7.1.7
330
- - @equinor/fusion-framework-react@5.3.2
391
+ - Updated dependencies [[`7ad31761`](https://github.com/equinor/fusion-framework/commit/7ad3176102f92da108b67ede6fdf29b76149bed9)]:
392
+ - @equinor/fusion-framework-module-app@5.2.7
393
+ - @equinor/fusion-framework-app@7.1.7
394
+ - @equinor/fusion-framework-react@5.3.2
331
395
 
332
396
  ## 4.1.8
333
397
 
334
398
  ### Patch Changes
335
399
 
336
- - [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
400
+ - [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
337
401
 
338
- - Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
339
- - @equinor/fusion-framework-app@7.1.6
340
- - @equinor/fusion-framework-module-app@5.2.6
341
- - @equinor/fusion-framework-module@4.2.5
342
- - @equinor/fusion-framework-module-navigation@3.0.6
343
- - @equinor/fusion-framework-react@5.3.1
344
- - @equinor/fusion-framework-react-module-http@4.0.1
345
- - @equinor/fusion-framework-react-module@3.0.6
402
+ - Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
403
+ - @equinor/fusion-framework-app@7.1.6
404
+ - @equinor/fusion-framework-module-app@5.2.6
405
+ - @equinor/fusion-framework-module@4.2.5
406
+ - @equinor/fusion-framework-module-navigation@3.0.6
407
+ - @equinor/fusion-framework-react@5.3.1
408
+ - @equinor/fusion-framework-react-module-http@4.0.1
409
+ - @equinor/fusion-framework-react-module@3.0.6
346
410
 
347
411
  ## 4.1.7
348
412
 
349
413
  ### Patch Changes
350
414
 
351
- - Updated dependencies [[`3896fbec`](https://github.com/equinor/fusion-framework/commit/3896fbec3458dbe2ebd66e772465d5f89cd20658)]:
352
- - @equinor/fusion-framework-react@5.3.0
353
- - @equinor/fusion-framework-app@7.1.5
354
- - @equinor/fusion-framework-module-app@5.2.5
355
- - @equinor/fusion-framework-react-module-http@4.0.0
415
+ - Updated dependencies [[`3896fbec`](https://github.com/equinor/fusion-framework/commit/3896fbec3458dbe2ebd66e772465d5f89cd20658)]:
416
+ - @equinor/fusion-framework-react@5.3.0
417
+ - @equinor/fusion-framework-app@7.1.5
418
+ - @equinor/fusion-framework-module-app@5.2.5
419
+ - @equinor/fusion-framework-react-module-http@4.0.0
356
420
 
357
421
  ## 4.1.6
358
422
 
359
423
  ### Patch Changes
360
424
 
361
- - Updated dependencies []:
362
- - @equinor/fusion-framework-module-app@5.2.4
363
- - @equinor/fusion-framework-app@7.1.4
364
- - @equinor/fusion-framework-react@5.2.7
425
+ - Updated dependencies []:
426
+ - @equinor/fusion-framework-module-app@5.2.4
427
+ - @equinor/fusion-framework-app@7.1.4
428
+ - @equinor/fusion-framework-react@5.2.7
365
429
 
366
430
  ## 4.1.5
367
431
 
368
432
  ### Patch Changes
369
433
 
370
- - Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
371
- - @equinor/fusion-framework-module@4.2.4
372
- - @equinor/fusion-framework-module-app@5.2.4
373
- - @equinor/fusion-framework-react@5.2.6
374
- - @equinor/fusion-framework-app@7.1.3
375
- - @equinor/fusion-framework-module-navigation@3.0.5
376
- - @equinor/fusion-framework-react-module@3.0.5
377
- - @equinor/fusion-framework-react-module-http@3.0.5
434
+ - Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
435
+ - @equinor/fusion-framework-module@4.2.4
436
+ - @equinor/fusion-framework-module-app@5.2.4
437
+ - @equinor/fusion-framework-react@5.2.6
438
+ - @equinor/fusion-framework-app@7.1.3
439
+ - @equinor/fusion-framework-module-navigation@3.0.5
440
+ - @equinor/fusion-framework-react-module@3.0.5
441
+ - @equinor/fusion-framework-react-module-http@3.0.5
378
442
 
379
443
  ## 4.1.4
380
444
 
381
445
  ### Patch Changes
382
446
 
383
- - Updated dependencies []:
384
- - @equinor/fusion-framework-module-app@5.2.3
385
- - @equinor/fusion-framework-app@7.1.2
386
- - @equinor/fusion-framework-react@5.2.5
447
+ - Updated dependencies []:
448
+ - @equinor/fusion-framework-module-app@5.2.3
449
+ - @equinor/fusion-framework-app@7.1.2
450
+ - @equinor/fusion-framework-react@5.2.5
387
451
 
388
452
  ## 4.1.3
389
453
 
390
454
  ### Patch Changes
391
455
 
392
- - [#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
456
+ - [#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
393
457
 
394
- conflicts of `@types/react` made random outcomes when using `yarn`
458
+ conflicts of `@types/react` made random outcomes when using `yarn`
395
459
 
396
- this change should not affect consumer of the packages, but might conflict dependent on local package manager.
460
+ this change should not affect consumer of the packages, but might conflict dependent on local package manager.
397
461
 
398
- - [#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
462
+ - [#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
399
463
 
400
- only dev deps updated should not affect any consumers
464
+ only dev deps updated should not affect any consumers
401
465
 
402
- see [react changelog](https://github.com/facebook/react/releases) for details
466
+ see [react changelog](https://github.com/facebook/react/releases) for details
403
467
 
404
- - Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`2dccccd1`](https://github.com/equinor/fusion-framework/commit/2dccccd124fbe3cdde2132c29c27d3da9fc6f1f5), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
405
- - @equinor/fusion-framework-react-module@3.0.4
406
- - @equinor/fusion-framework-module-navigation@3.0.4
407
- - @equinor/fusion-framework-react-module-http@3.0.4
408
- - @equinor/fusion-framework-react@5.2.4
409
- - @equinor/fusion-framework-module@4.2.3
410
- - @equinor/fusion-framework-module-app@5.2.2
411
- - @equinor/fusion-framework-app@7.1.1
468
+ - Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`2dccccd1`](https://github.com/equinor/fusion-framework/commit/2dccccd124fbe3cdde2132c29c27d3da9fc6f1f5), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
469
+ - @equinor/fusion-framework-react-module@3.0.4
470
+ - @equinor/fusion-framework-module-navigation@3.0.4
471
+ - @equinor/fusion-framework-react-module-http@3.0.4
472
+ - @equinor/fusion-framework-react@5.2.4
473
+ - @equinor/fusion-framework-module@4.2.3
474
+ - @equinor/fusion-framework-module-app@5.2.2
475
+ - @equinor/fusion-framework-app@7.1.1
412
476
 
413
477
  ## 4.1.2
414
478
 
415
479
  ### Patch Changes
416
480
 
417
- - [#959](https://github.com/equinor/fusion-framework/pull/959) [`ac889787`](https://github.com/equinor/fusion-framework/commit/ac88978763f7c2d2eee3b5154a0eac12a93bc5a8) Thanks [@odinr](https://github.com/odinr)! - create a hook which returns the current `ContextProvider`
481
+ - [#959](https://github.com/equinor/fusion-framework/pull/959) [`ac889787`](https://github.com/equinor/fusion-framework/commit/ac88978763f7c2d2eee3b5154a0eac12a93bc5a8) Thanks [@odinr](https://github.com/odinr)! - create a hook which returns the current `ContextProvider`
418
482
 
419
- example
483
+ example
420
484
 
421
- ```ts
422
- import { useContextProvider } from "@equinor/fusion-framework-react-app/context";
423
- const App = () => {
424
- const contextProvider = useContextProvider();
425
- };
426
- ```
485
+ ```ts
486
+ import { useContextProvider } from '@equinor/fusion-framework-react-app/context';
487
+ const App = () => {
488
+ const contextProvider = useContextProvider();
489
+ };
490
+ ```
427
491
 
428
492
  ## 4.1.1
429
493
 
430
494
  ### Patch Changes
431
495
 
432
- - [#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
496
+ - [#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
433
497
 
434
- - Updated dependencies [[`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352)]:
435
- - @equinor/fusion-framework-app@7.0.16
436
- - @equinor/fusion-framework-module-navigation@3.0.1
437
- - @equinor/fusion-framework-react@5.2.2
498
+ - Updated dependencies [[`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352)]:
499
+ - @equinor/fusion-framework-app@7.0.16
500
+ - @equinor/fusion-framework-module-navigation@3.0.1
501
+ - @equinor/fusion-framework-react@5.2.2
438
502
 
439
503
  ## 4.1.0
440
504
 
441
505
  ### Minor Changes
442
506
 
443
- - [#934](https://github.com/equinor/fusion-framework/pull/934) [`ea081696`](https://github.com/equinor/fusion-framework/commit/ea0816967244917b01a3aa43b75cd3cf59573958) Thanks [@odinr](https://github.com/odinr)! - **Add tooling for navigation in React App package**
507
+ - [#934](https://github.com/equinor/fusion-framework/pull/934) [`ea081696`](https://github.com/equinor/fusion-framework/commit/ea0816967244917b01a3aa43b75cd3cf59573958) Thanks [@odinr](https://github.com/odinr)! - **Add tooling for navigation in React App package**
444
508
 
445
- - add hook for using the navigation module
446
- - add hook for creating a react router
509
+ - add hook for using the navigation module
510
+ - add hook for creating a react router
447
511
 
448
- ```ts
449
- const routes = [
450
- {
451
- path: '/',
452
- element: <p>👍🏻</p>,
453
- },
454
- ];
512
+ ```ts
513
+ const routes = [
514
+ {
515
+ path: '/',
516
+ element: <p>👍🏻</p>,
517
+ },
518
+ ];
455
519
 
456
- const Router = () => {
457
- const router = useRouter(routes);
458
- return <RouterProvider router={router} fallbackElement={<p>😥</p>} />;
459
- };
520
+ const Router = () => {
521
+ const router = useRouter(routes);
522
+ return <RouterProvider router={router} fallbackElement={<p>😥</p>} />;
523
+ };
460
524
 
461
- const App = () => <Router />;
462
- ```
525
+ const App = () => <Router />;
526
+ ```
463
527
 
464
- - [#934](https://github.com/equinor/fusion-framework/pull/934) [`ea081696`](https://github.com/equinor/fusion-framework/commit/ea0816967244917b01a3aa43b75cd3cf59573958) Thanks [@odinr](https://github.com/odinr)! - hook `useAppModule` now throws error if requested module is not configured
528
+ - [#934](https://github.com/equinor/fusion-framework/pull/934) [`ea081696`](https://github.com/equinor/fusion-framework/commit/ea0816967244917b01a3aa43b75cd3cf59573958) Thanks [@odinr](https://github.com/odinr)! - hook `useAppModule` now throws error if requested module is not configured
465
529
 
466
530
  ### Patch Changes
467
531
 
468
- - [#934](https://github.com/equinor/fusion-framework/pull/934) [`ea081696`](https://github.com/equinor/fusion-framework/commit/ea0816967244917b01a3aa43b75cd3cf59573958) Thanks [@odinr](https://github.com/odinr)! - updated cookbook for routing ([documentation](https://equinor.github.io/fusion-framework/modules/navigation/))
532
+ - [#934](https://github.com/equinor/fusion-framework/pull/934) [`ea081696`](https://github.com/equinor/fusion-framework/commit/ea0816967244917b01a3aa43b75cd3cf59573958) Thanks [@odinr](https://github.com/odinr)! - updated cookbook for routing ([documentation](https://equinor.github.io/fusion-framework/modules/navigation/))
469
533
 
470
534
  ## 4.0.17
471
535
 
472
536
  ### Patch Changes
473
537
 
474
- - [#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**
538
+ - [#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**
475
539
 
476
- - align all versions of typescript
477
- - update types to build
478
- - 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
540
+ - align all versions of typescript
541
+ - update types to build
542
+ - 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
479
543
 
480
- - Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
481
- - @equinor/fusion-framework-app@7.0.15
482
- - @equinor/fusion-framework-react@5.1.4
483
- - @equinor/fusion-framework-react-module-http@3.0.3
544
+ - Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
545
+ - @equinor/fusion-framework-app@7.0.15
546
+ - @equinor/fusion-framework-react@5.1.4
547
+ - @equinor/fusion-framework-react-module-http@3.0.3
484
548
 
485
549
  All notable changes to this project will be documented in this file.
486
550
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
@@ -529,7 +593,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
529
593
 
530
594
  ### Bug Fixes
531
595
 
532
- - **react-app:** allow broader component type when creating react framework component ([a0c9187](https://github.com/equinor/fusion-framework/commit/a0c9187aa8861f48e6b62ea848cf951a75d02c1b))
596
+ - **react-app:** allow broader component type when creating react framework component ([a0c9187](https://github.com/equinor/fusion-framework/commit/a0c9187aa8861f48e6b62ea848cf951a75d02c1b))
533
597
 
534
598
  ## 4.0.5 (2023-04-24)
535
599
 
@@ -651,7 +715,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
651
715
 
652
716
  ### Bug Fixes
653
717
 
654
- - **react-app:** ts-ignore for type error ([b1b3eb7](https://github.com/equinor/fusion-framework/commit/b1b3eb7da1a35eb9ad7461aa4ee15f58d4de9766))
718
+ - **react-app:** ts-ignore for type error ([b1b3eb7](https://github.com/equinor/fusion-framework/commit/b1b3eb7da1a35eb9ad7461aa4ee15f58d4de9766))
655
719
 
656
720
  ## 3.0.1 (2023-01-30)
657
721
 
@@ -701,7 +765,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
701
765
 
702
766
  ### Bug Fixes
703
767
 
704
- - **react-app:** cleanup tsconfig ([1283609](https://github.com/equinor/fusion-framework/commit/1283609ad137c7956fe2181fba97b0050638c553))
768
+ - **react-app:** cleanup tsconfig ([1283609](https://github.com/equinor/fusion-framework/commit/1283609ad137c7956fe2181fba97b0050638c553))
705
769
 
706
770
  ## [2.0.29](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@2.0.28...@equinor/fusion-framework-react-app@2.0.29) (2023-01-04)
707
771
 
@@ -731,7 +795,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
731
795
 
732
796
  ### Bug Fixes
733
797
 
734
- - **react-app:** check if manifest is provided in env ([e41b6d1](https://github.com/equinor/fusion-framework/commit/e41b6d1c9006f7d55933a6375861d96126498015))
798
+ - **react-app:** check if manifest is provided in env ([e41b6d1](https://github.com/equinor/fusion-framework/commit/e41b6d1c9006f7d55933a6375861d96126498015))
735
799
 
736
800
  ## [2.0.22](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@2.0.21...@equinor/fusion-framework-react-app@2.0.22) (2022-12-16)
737
801
 
@@ -769,7 +833,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
769
833
 
770
834
  ### Bug Fixes
771
835
 
772
- - **react-app:** update typing of legacy-app ([d4dbbb0](https://github.com/equinor/fusion-framework/commit/d4dbbb0a326cb6b54bb3a2348fd7961b3abf4ba7))
836
+ - **react-app:** update typing of legacy-app ([d4dbbb0](https://github.com/equinor/fusion-framework/commit/d4dbbb0a326cb6b54bb3a2348fd7961b3abf4ba7))
773
837
 
774
838
  ## [2.0.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@2.0.12...@equinor/fusion-framework-react-app@2.0.13) (2022-12-08)
775
839
 
@@ -815,7 +879,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
815
879
 
816
880
  ### Bug Fixes
817
881
 
818
- - **react-app:** fix optional dependencie version react-module-context ([4149ce6](https://github.com/equinor/fusion-framework/commit/4149ce625ffc330d69becde1d66f4d894c22c9f3))
882
+ - **react-app:** fix optional dependencie version react-module-context ([4149ce6](https://github.com/equinor/fusion-framework/commit/4149ce625ffc330d69becde1d66f4d894c22c9f3))
819
883
 
820
884
  ## [2.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@2.0.1...@equinor/fusion-framework-react-app@2.0.2) (2022-12-05)
821
885
 
@@ -897,7 +961,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
897
961
 
898
962
  ### Bug Fixes
899
963
 
900
- - **react-app:** expose interface from framework-app ([a01aee3](https://github.com/equinor/fusion-framework/commit/a01aee3a32a74c821fdc93624aaf4173c0fcc4e1))
964
+ - **react-app:** expose interface from framework-app ([a01aee3](https://github.com/equinor/fusion-framework/commit/a01aee3a32a74c821fdc93624aaf4173c0fcc4e1))
901
965
 
902
966
  ## [1.3.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@1.3.2...@equinor/fusion-framework-react-app@1.3.3) (2022-11-18)
903
967
 
@@ -907,7 +971,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
907
971
 
908
972
  ### Bug Fixes
909
973
 
910
- - basename in app render ([ae75815](https://github.com/equinor/fusion-framework/commit/ae75815877701c364f853413b29ad4f053d9c2c2))
974
+ - basename in app render ([ae75815](https://github.com/equinor/fusion-framework/commit/ae75815877701c364f853413b29ad4f053d9c2c2))
911
975
 
912
976
  ## [1.3.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@1.3.0...@equinor/fusion-framework-react-app@1.3.1) (2022-11-18)
913
977
 
@@ -917,7 +981,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
917
981
 
918
982
  ### Features
919
983
 
920
- - **module-navigation:** initial ([891e69d](https://github.com/equinor/fusion-framework/commit/891e69d9a98ba02ee1f9dd1c5b0cb31ff1b5fd0f))
984
+ - **module-navigation:** initial ([891e69d](https://github.com/equinor/fusion-framework/commit/891e69d9a98ba02ee1f9dd1c5b0cb31ff1b5fd0f))
921
985
 
922
986
  ## 1.2.15 (2022-11-17)
923
987
 
@@ -955,13 +1019,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
955
1019
 
956
1020
  ### Bug Fixes
957
1021
 
958
- - **react-app:** adjust function for creating components ([c986a4a](https://github.com/equinor/fusion-framework/commit/c986a4ac8aeb57035eb555ed07b86b1792b09900))
1022
+ - **react-app:** adjust function for creating components ([c986a4a](https://github.com/equinor/fusion-framework/commit/c986a4ac8aeb57035eb555ed07b86b1792b09900))
959
1023
 
960
1024
  ## 1.2.6 (2022-11-03)
961
1025
 
962
1026
  ### Bug Fixes
963
1027
 
964
- - deprecate useFramework from hooks ([d3d9b24](https://github.com/equinor/fusion-framework/commit/d3d9b24fe56937e2c9feba7de4228d8eb1cbbec5))
1028
+ - deprecate useFramework from hooks ([d3d9b24](https://github.com/equinor/fusion-framework/commit/d3d9b24fe56937e2c9feba7de4228d8eb1cbbec5))
965
1029
 
966
1030
  ## [1.2.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@1.2.4...@equinor/fusion-framework-react-app@1.2.5) (2022-11-03)
967
1031
 
@@ -987,8 +1051,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
987
1051
 
988
1052
  ### Features
989
1053
 
990
- - deprecate app-config ([1f24abc](https://github.com/equinor/fusion-framework/commit/1f24abc5125b0526c64973fe0b063a9c33d532b0))
991
- - **react-app:** react tooling for context ([84a2624](https://github.com/equinor/fusion-framework/commit/84a26242f73da2d77b1468b7724da56b2add590b))
1054
+ - deprecate app-config ([1f24abc](https://github.com/equinor/fusion-framework/commit/1f24abc5125b0526c64973fe0b063a9c33d532b0))
1055
+ - **react-app:** react tooling for context ([84a2624](https://github.com/equinor/fusion-framework/commit/84a26242f73da2d77b1468b7724da56b2add590b))
992
1056
 
993
1057
  ## [1.1.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@1.1.0...@equinor/fusion-framework-react-app@1.1.1) (2022-11-02)
994
1058
 
@@ -998,7 +1062,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
998
1062
 
999
1063
  ### Features
1000
1064
 
1001
- - **framework:** implement module-app ([dc917f0](https://github.com/equinor/fusion-framework/commit/dc917f019da852fbd93eaf6ed7bc4a3a7e6f0d68))
1065
+ - **framework:** implement module-app ([dc917f0](https://github.com/equinor/fusion-framework/commit/dc917f019da852fbd93eaf6ed7bc4a3a7e6f0d68))
1002
1066
 
1003
1067
  ## 1.0.23 (2022-11-01)
1004
1068
 
@@ -1012,19 +1076,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1012
1076
 
1013
1077
  ### Bug Fixes
1014
1078
 
1015
- - :fire: rewrite hook for getting app config ([cc862ba](https://github.com/equinor/fusion-framework/commit/cc862ba3c23608be6d3406b9cf35d20af6eccb97))
1079
+ - :fire: rewrite hook for getting app config ([cc862ba](https://github.com/equinor/fusion-framework/commit/cc862ba3c23608be6d3406b9cf35d20af6eccb97))
1016
1080
 
1017
1081
  ## [1.0.20](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@1.0.19...@equinor/fusion-framework-react-app@1.0.20) (2022-10-26)
1018
1082
 
1019
1083
  ### Bug Fixes
1020
1084
 
1021
- - **react-app:** :fire: update render env args with typing ([06bd3c7](https://github.com/equinor/fusion-framework/commit/06bd3c75218981f54216f76d3b7a667110dac3ae))
1085
+ - **react-app:** :fire: update render env args with typing ([06bd3c7](https://github.com/equinor/fusion-framework/commit/06bd3c75218981f54216f76d3b7a667110dac3ae))
1022
1086
 
1023
1087
  ## 1.0.19 (2022-10-21)
1024
1088
 
1025
1089
  ### Bug Fixes
1026
1090
 
1027
- - **react-app:** improve app module hook ([ffb66e3](https://github.com/equinor/fusion-framework/commit/ffb66e3f488bf9c28870824b4d42748e5d072364))
1091
+ - **react-app:** improve app module hook ([ffb66e3](https://github.com/equinor/fusion-framework/commit/ffb66e3f488bf9c28870824b4d42748e5d072364))
1028
1092
 
1029
1093
  ## [1.0.18](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@1.0.17...@equinor/fusion-framework-react-app@1.0.18) (2022-10-21)
1030
1094
 
@@ -1050,7 +1114,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1050
1114
 
1051
1115
  ### Bug Fixes
1052
1116
 
1053
- - **react-app:** update typing of module instance ([b656a24](https://github.com/equinor/fusion-framework/commit/b656a24b2c0daac647994c1468dd8f14438fba2e))
1117
+ - **react-app:** update typing of module instance ([b656a24](https://github.com/equinor/fusion-framework/commit/b656a24b2c0daac647994c1468dd8f14438fba2e))
1054
1118
 
1055
1119
  ## [1.0.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@1.0.11...@equinor/fusion-framework-react-app@1.0.12) (2022-09-29)
1056
1120
 
@@ -1072,7 +1136,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1072
1136
 
1073
1137
  ### Bug Fixes
1074
1138
 
1075
- - **react-app:** expose module http ([fcd50b7](https://github.com/equinor/fusion-framework/commit/fcd50b7359fda49617000ccbca810cbcc1d6553b))
1139
+ - **react-app:** expose module http ([fcd50b7](https://github.com/equinor/fusion-framework/commit/fcd50b7359fda49617000ccbca810cbcc1d6553b))
1076
1140
 
1077
1141
  ## 1.0.7 (2022-09-20)
1078
1142
 
@@ -1090,13 +1154,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1090
1154
 
1091
1155
  ### Bug Fixes
1092
1156
 
1093
- - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
1157
+ - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
1094
1158
 
1095
1159
  ## [1.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@1.0.2...@equinor/fusion-framework-react-app@1.0.3) (2022-09-13)
1096
1160
 
1097
1161
  ### Bug Fixes
1098
1162
 
1099
- - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
1163
+ - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
1100
1164
 
1101
1165
  ## [1.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@1.0.1...@equinor/fusion-framework-react-app@1.0.2) (2022-09-13)
1102
1166
 
@@ -1118,27 +1182,27 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1118
1182
 
1119
1183
  ### ⚠ BREAKING CHANGES
1120
1184
 
1121
- - **react-app:** config is now object
1185
+ - **react-app:** config is now object
1122
1186
 
1123
1187
  ### Features
1124
1188
 
1125
- - **react-app:** update init ([a41f102](https://github.com/equinor/fusion-framework/commit/a41f102e2fee94ec4e29b567cf867465c672f16f))
1189
+ - **react-app:** update init ([a41f102](https://github.com/equinor/fusion-framework/commit/a41f102e2fee94ec4e29b567cf867465c672f16f))
1126
1190
 
1127
1191
  ## [1.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@0.8.0...@equinor/fusion-framework-react-app@1.0.0-alpha.0) (2022-09-12)
1128
1192
 
1129
1193
  ### ⚠ BREAKING CHANGES
1130
1194
 
1131
- - **react-app:** config is now object
1195
+ - **react-app:** config is now object
1132
1196
 
1133
1197
  ### Features
1134
1198
 
1135
- - **react-app:** update init ([a41f102](https://github.com/equinor/fusion-framework/commit/a41f102e2fee94ec4e29b567cf867465c672f16f))
1199
+ - **react-app:** update init ([a41f102](https://github.com/equinor/fusion-framework/commit/a41f102e2fee94ec4e29b567cf867465c672f16f))
1136
1200
 
1137
1201
  ## [0.8.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@0.7.3...@equinor/fusion-framework-react-app@0.8.0) (2022-09-09)
1138
1202
 
1139
1203
  ### Features
1140
1204
 
1141
- - **react-app:** create legacy app ([4ae10ab](https://github.com/equinor/fusion-framework/commit/4ae10ab4aec50d9e92ce4cb0c74a1405a0dcc36e))
1205
+ - **react-app:** create legacy app ([4ae10ab](https://github.com/equinor/fusion-framework/commit/4ae10ab4aec50d9e92ce4cb0c74a1405a0dcc36e))
1142
1206
 
1143
1207
  ## [0.7.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@0.7.2...@equinor/fusion-framework-react-app@0.7.3) (2022-09-05)
1144
1208
 
@@ -1156,7 +1220,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1156
1220
 
1157
1221
  ### Features
1158
1222
 
1159
- - **react-app:** expose http client ([91b9930](https://github.com/equinor/fusion-framework/commit/91b9930f404772bd58ce043b6987aaffc8324654))
1223
+ - **react-app:** expose http client ([91b9930](https://github.com/equinor/fusion-framework/commit/91b9930f404772bd58ce043b6987aaffc8324654))
1160
1224
 
1161
1225
  ## 0.6.1 (2022-09-01)
1162
1226
 
@@ -1166,23 +1230,23 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1166
1230
 
1167
1231
  ### ⚠ BREAKING CHANGES
1168
1232
 
1169
- - rename fetch
1233
+ - rename fetch
1170
1234
 
1171
- - fix(module-service-discovery): update http client consumer
1235
+ - fix(module-service-discovery): update http client consumer
1172
1236
 
1173
- - build: update allowed branches
1237
+ - build: update allowed branches
1174
1238
 
1175
- - build: add conventional commit
1239
+ - build: add conventional commit
1176
1240
 
1177
- - build: use conventionalcommits
1241
+ - build: use conventionalcommits
1178
1242
 
1179
- - build(module-http): push major
1243
+ - build(module-http): push major
1180
1244
 
1181
- - build: update deps
1245
+ - build: update deps
1182
1246
 
1183
1247
  ### Features
1184
1248
 
1185
- - rename fetch method ([#226](https://github.com/equinor/fusion-framework/issues/226)) ([f02df7c](https://github.com/equinor/fusion-framework/commit/f02df7cdd2b9098b0da49c5ea56ac3b6a17e9e32))
1249
+ - rename fetch method ([#226](https://github.com/equinor/fusion-framework/issues/226)) ([f02df7c](https://github.com/equinor/fusion-framework/commit/f02df7cdd2b9098b0da49c5ea56ac3b6a17e9e32))
1186
1250
 
1187
1251
  ## [0.5.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@0.5.0...@equinor/fusion-framework-react-app@0.5.1) (2022-08-23)
1188
1252
 
@@ -1192,7 +1256,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1192
1256
 
1193
1257
  ### Features
1194
1258
 
1195
- - **react-app:** use event module ([21cf7f9](https://github.com/equinor/fusion-framework/commit/21cf7f98eafb8a4d970f3d2d9f56d56046da1321))
1259
+ - **react-app:** use event module ([21cf7f9](https://github.com/equinor/fusion-framework/commit/21cf7f98eafb8a4d970f3d2d9f56d56046da1321))
1196
1260
 
1197
1261
  ## [0.4.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@0.4.3...@equinor/fusion-framework-react-app@0.4.4) (2022-08-19)
1198
1262
 
@@ -1214,13 +1278,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1214
1278
 
1215
1279
  ### Features
1216
1280
 
1217
- - **react-app:** implement app config for react apps ([b367e55](https://github.com/equinor/fusion-framework/commit/b367e550b1868ed30b067a9bfd99db09b269d862))
1281
+ - **react-app:** implement app config for react apps ([b367e55](https://github.com/equinor/fusion-framework/commit/b367e550b1868ed30b067a9bfd99db09b269d862))
1218
1282
 
1219
1283
  # 0.3.0 (2022-08-05)
1220
1284
 
1221
1285
  ### Features
1222
1286
 
1223
- - **react-app:** implement react framework modules ([#195](https://github.com/equinor/fusion-framework/issues/195)) ([acb0db3](https://github.com/equinor/fusion-framework/commit/acb0db36bff74c7838c48297179cf644db6cc8ca))
1287
+ - **react-app:** implement react framework modules ([#195](https://github.com/equinor/fusion-framework/issues/195)) ([acb0db3](https://github.com/equinor/fusion-framework/commit/acb0db36bff74c7838c48297179cf644db6cc8ca))
1224
1288
 
1225
1289
  ## [0.2.29](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@0.2.28...@equinor/fusion-framework-react-app@0.2.29) (2022-08-04)
1226
1290
 
@@ -1234,7 +1298,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1234
1298
 
1235
1299
  ### Bug Fixes
1236
1300
 
1237
- - expose framework in react-app package ([9dc2e5b](https://github.com/equinor/fusion-framework/commit/9dc2e5b2ec27344fbb390248abdbb73caed297cc))
1301
+ - expose framework in react-app package ([9dc2e5b](https://github.com/equinor/fusion-framework/commit/9dc2e5b2ec27344fbb390248abdbb73caed297cc))
1238
1302
 
1239
1303
  ## [0.2.26](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@0.2.25...@equinor/fusion-framework-react-app@0.2.26) (2022-07-06)
1240
1304
 
@@ -1344,7 +1408,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1344
1408
 
1345
1409
  ### Features
1346
1410
 
1347
- - **module-service-discovery:** allow custom service discovery ([8917e4e](https://github.com/equinor/fusion-framework/commit/8917e4e3053b824ac8d878b0bfbe6a22efd56c3b))
1411
+ - **module-service-discovery:** allow custom service discovery ([8917e4e](https://github.com/equinor/fusion-framework/commit/8917e4e3053b824ac8d878b0bfbe6a22efd56c3b))
1348
1412
 
1349
1413
  ## [0.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-app@0.1.1...@equinor/fusion-framework-react-app@0.1.2) (2022-02-09)
1350
1414
 
@@ -1358,18 +1422,18 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1358
1422
 
1359
1423
  ### Bug Fixes
1360
1424
 
1361
- - memo http clients ([f876acb](https://github.com/equinor/fusion-framework/commit/f876acb11e19d7802a28f58ce7d70bc76f777c5e))
1362
- - **react-app:** await configuration of app ([a71484b](https://github.com/equinor/fusion-framework/commit/a71484b17f2b6575aedefb0bdbc7965ffffae5e8))
1363
- - **react-app:** expose http interface ([441facd](https://github.com/equinor/fusion-framework/commit/441facdc32f71391683b33db394f34e966772faf))
1364
- - **react-app:** fix AppConfigurator interface ([e5a8a21](https://github.com/equinor/fusion-framework/commit/e5a8a21ff6a558876e3db9a2596e891d9abea0cd))
1365
- - **react-app:** include fusion modules in init of app ([1d7ffc3](https://github.com/equinor/fusion-framework/commit/1d7ffc3c203c7d7dda3d05abf4e8ffb396de04b4))
1366
- - **react-app:** rename of file ([6e3b758](https://github.com/equinor/fusion-framework/commit/6e3b758aec7e020d05912c2a80f398cd0b790a8b))
1367
- - **react-app:** update typeing ([20495bd](https://github.com/equinor/fusion-framework/commit/20495bdf2a1d67aed2b03ff1b07f5c38f02a8d9d))
1368
- - removed duplicate declaration of Component ([6db1b74](https://github.com/equinor/fusion-framework/commit/6db1b74304a3abd145b0b0268a20c5693743871a))
1369
- - shared context ([f00732e](https://github.com/equinor/fusion-framework/commit/f00732ee3c1016be812204c7cf7b0205b2322075))
1425
+ - memo http clients ([f876acb](https://github.com/equinor/fusion-framework/commit/f876acb11e19d7802a28f58ce7d70bc76f777c5e))
1426
+ - **react-app:** await configuration of app ([a71484b](https://github.com/equinor/fusion-framework/commit/a71484b17f2b6575aedefb0bdbc7965ffffae5e8))
1427
+ - **react-app:** expose http interface ([441facd](https://github.com/equinor/fusion-framework/commit/441facdc32f71391683b33db394f34e966772faf))
1428
+ - **react-app:** fix AppConfigurator interface ([e5a8a21](https://github.com/equinor/fusion-framework/commit/e5a8a21ff6a558876e3db9a2596e891d9abea0cd))
1429
+ - **react-app:** include fusion modules in init of app ([1d7ffc3](https://github.com/equinor/fusion-framework/commit/1d7ffc3c203c7d7dda3d05abf4e8ffb396de04b4))
1430
+ - **react-app:** rename of file ([6e3b758](https://github.com/equinor/fusion-framework/commit/6e3b758aec7e020d05912c2a80f398cd0b790a8b))
1431
+ - **react-app:** update typeing ([20495bd](https://github.com/equinor/fusion-framework/commit/20495bdf2a1d67aed2b03ff1b07f5c38f02a8d9d))
1432
+ - removed duplicate declaration of Component ([6db1b74](https://github.com/equinor/fusion-framework/commit/6db1b74304a3abd145b0b0268a20c5693743871a))
1433
+ - shared context ([f00732e](https://github.com/equinor/fusion-framework/commit/f00732ee3c1016be812204c7cf7b0205b2322075))
1370
1434
 
1371
1435
  ### Features
1372
1436
 
1373
- - add package for creating react app ([c478025](https://github.com/equinor/fusion-framework/commit/c478025a057d1e6b38cd33189fe24580e58fc32b))
1374
- - **react-app:** add hooks ([9bfcc5e](https://github.com/equinor/fusion-framework/commit/9bfcc5ebd721b19232e7896cee037637c716f09a))
1375
- - **reat-app:** add default modules ([74bf60e](https://github.com/equinor/fusion-framework/commit/74bf60ec07ea9573901d4160de5d4252e6e9c167))
1437
+ - add package for creating react app ([c478025](https://github.com/equinor/fusion-framework/commit/c478025a057d1e6b38cd33189fe24580e58fc32b))
1438
+ - **react-app:** add hooks ([9bfcc5e](https://github.com/equinor/fusion-framework/commit/9bfcc5ebd721b19232e7896cee037637c716f09a))
1439
+ - **reat-app:** add default modules ([74bf60e](https://github.com/equinor/fusion-framework/commit/74bf60ec07ea9573901d4160de5d4252e6e9c167))