@equinor/fusion-framework-app 8.1.2 → 8.1.4

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,280 +1,295 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @equinor/fusion-framework@7.0.33
9
+
10
+ ## 8.1.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`2acd475`](https://github.com/equinor/fusion-framework/commit/2acd47532fe680f498fdf7229309cddb2594e391)]:
15
+ - @equinor/fusion-framework-module-app@5.2.14
16
+ - @equinor/fusion-framework@7.0.32
17
+
3
18
  ## 8.1.2
4
19
 
5
20
  ### Patch Changes
6
21
 
7
- - Updated dependencies []:
8
- - @equinor/fusion-framework@7.0.31
22
+ - Updated dependencies []:
23
+ - @equinor/fusion-framework@7.0.31
9
24
 
10
25
  ## 8.1.1
11
26
 
12
27
  ### Patch Changes
13
28
 
14
- - Updated dependencies [[`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
15
- - @equinor/fusion-framework-module@4.2.7
16
- - @equinor/fusion-framework@7.0.30
17
- - @equinor/fusion-framework-module-app@5.2.13
18
- - @equinor/fusion-framework-module-event@4.0.8
19
- - @equinor/fusion-framework-module-feature-flag@1.0.2
20
- - @equinor/fusion-framework-module-http@5.1.6
21
- - @equinor/fusion-framework-module-msal@3.0.10
29
+ - Updated dependencies [[`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
30
+ - @equinor/fusion-framework-module@4.2.7
31
+ - @equinor/fusion-framework@7.0.30
32
+ - @equinor/fusion-framework-module-app@5.2.13
33
+ - @equinor/fusion-framework-module-event@4.0.8
34
+ - @equinor/fusion-framework-module-feature-flag@1.0.2
35
+ - @equinor/fusion-framework-module-http@5.1.6
36
+ - @equinor/fusion-framework-module-msal@3.0.10
22
37
 
23
38
  ## 8.1.0
24
39
 
25
40
  ### Minor Changes
26
41
 
27
- - [#1781](https://github.com/equinor/fusion-framework/pull/1781) [`0f3affa`](https://github.com/equinor/fusion-framework/commit/0f3affa45b7b7dc0a0f01682682293e4b899a5d9) Thanks [@odinr](https://github.com/odinr)! - removed `useFeatureFlags` from `AppConfigurator` since caused issued for users without installing feature-flag module
42
+ - [#1781](https://github.com/equinor/fusion-framework/pull/1781) [`0f3affa`](https://github.com/equinor/fusion-framework/commit/0f3affa45b7b7dc0a0f01682682293e4b899a5d9) Thanks [@odinr](https://github.com/odinr)! - removed `useFeatureFlags` from `AppConfigurator` since caused issued for users without installing feature-flag module
28
43
 
29
44
  ## 8.0.1
30
45
 
31
46
  ### Patch Changes
32
47
 
33
- - Updated dependencies [[`1ca8264`](https://github.com/equinor/fusion-framework/commit/1ca826489a0d1dd755324344a12bbf6659a3be12)]:
34
- - @equinor/fusion-framework-module-app@5.2.13
35
- - @equinor/fusion-framework-module-feature-flag@1.0.1
36
- - @equinor/fusion-framework@7.0.29
48
+ - Updated dependencies [[`1ca8264`](https://github.com/equinor/fusion-framework/commit/1ca826489a0d1dd755324344a12bbf6659a3be12)]:
49
+ - @equinor/fusion-framework-module-app@5.2.13
50
+ - @equinor/fusion-framework-module-feature-flag@1.0.1
51
+ - @equinor/fusion-framework@7.0.29
37
52
 
38
53
  ## 8.0.0
39
54
 
40
55
  ### Minor Changes
41
56
 
42
- - [#1747](https://github.com/equinor/fusion-framework/pull/1747) [`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e) Thanks [@odinr](https://github.com/odinr)! - Added method to `AppConfigurator` to enabled `Feature Flag Module`
43
-
44
- ```ts
45
- export const configure: ModuleInitiator = (appConfigurator, args) => {
46
- /** provide a list of features that should be available in the application */
47
- appConfigurator.useFeatureFlags([
48
- {
49
- key: MyFeatures.MyFlag,
50
- title: 'this is a flag',
51
- },
52
- {
53
- key: MyFeatures.MyUrlFlag,
54
- title: 'this feature can be toggled by ?my-url-flag=true',
55
- allowUrl: true,
56
- },
57
- ]);
58
- };
59
- ```
57
+ - [#1747](https://github.com/equinor/fusion-framework/pull/1747) [`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e) Thanks [@odinr](https://github.com/odinr)! - Added method to `AppConfigurator` to enabled `Feature Flag Module`
58
+
59
+ ```ts
60
+ export const configure: ModuleInitiator = (appConfigurator, args) => {
61
+ /** provide a list of features that should be available in the application */
62
+ appConfigurator.useFeatureFlags([
63
+ {
64
+ key: MyFeatures.MyFlag,
65
+ title: "this is a flag",
66
+ },
67
+ {
68
+ key: MyFeatures.MyUrlFlag,
69
+ title: "this feature can be toggled by ?my-url-flag=true",
70
+ allowUrl: true,
71
+ },
72
+ ]);
73
+ };
74
+ ```
60
75
 
61
76
  ### Patch Changes
62
77
 
63
- - Updated dependencies [[`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e)]:
64
- - @equinor/fusion-framework-module-feature-flag@1.0.0
78
+ - Updated dependencies [[`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e)]:
79
+ - @equinor/fusion-framework-module-feature-flag@1.0.0
65
80
 
66
81
  ## 7.1.15
67
82
 
68
83
  ### Patch Changes
69
84
 
70
- - Updated dependencies [[`5eab8af`](https://github.com/equinor/fusion-framework/commit/5eab8afe3c3106cc67ad14ce4cbee6c7e4e8dfb1)]:
71
- - @equinor/fusion-framework-module-msal@3.0.9
72
- - @equinor/fusion-framework@7.0.28
73
- - @equinor/fusion-framework-module-app@5.2.12
74
- - @equinor/fusion-framework-module-http@5.1.5
85
+ - Updated dependencies [[`5eab8af`](https://github.com/equinor/fusion-framework/commit/5eab8afe3c3106cc67ad14ce4cbee6c7e4e8dfb1)]:
86
+ - @equinor/fusion-framework-module-msal@3.0.9
87
+ - @equinor/fusion-framework@7.0.28
88
+ - @equinor/fusion-framework-module-app@5.2.12
89
+ - @equinor/fusion-framework-module-http@5.1.5
75
90
 
76
91
  ## 7.1.14
77
92
 
78
93
  ### Patch Changes
79
94
 
80
- - Updated dependencies [[`1e4ba77`](https://github.com/equinor/fusion-framework/commit/1e4ba7707d3ce5cfd9c8d6673f760523aa47a45e)]:
81
- - @equinor/fusion-framework-module-http@5.1.4
82
- - @equinor/fusion-framework@7.0.27
83
- - @equinor/fusion-framework-module-app@5.2.12
95
+ - Updated dependencies [[`1e4ba77`](https://github.com/equinor/fusion-framework/commit/1e4ba7707d3ce5cfd9c8d6673f760523aa47a45e)]:
96
+ - @equinor/fusion-framework-module-http@5.1.4
97
+ - @equinor/fusion-framework@7.0.27
98
+ - @equinor/fusion-framework-module-app@5.2.12
84
99
 
85
100
  ## 7.1.13
86
101
 
87
102
  ### Patch Changes
88
103
 
89
- - Updated dependencies [[`0af3540`](https://github.com/equinor/fusion-framework/commit/0af3540340bac85a19ca3a8ec4e0ccd42b3090ee)]:
90
- - @equinor/fusion-framework-module-http@5.1.3
91
- - @equinor/fusion-framework@7.0.26
92
- - @equinor/fusion-framework-module-app@5.2.12
104
+ - Updated dependencies [[`0af3540`](https://github.com/equinor/fusion-framework/commit/0af3540340bac85a19ca3a8ec4e0ccd42b3090ee)]:
105
+ - @equinor/fusion-framework-module-http@5.1.3
106
+ - @equinor/fusion-framework@7.0.26
107
+ - @equinor/fusion-framework-module-app@5.2.12
93
108
 
94
109
  ## 7.1.12
95
110
 
96
111
  ### Patch Changes
97
112
 
98
- - Updated dependencies []:
99
- - @equinor/fusion-framework-module-app@5.2.12
100
- - @equinor/fusion-framework@7.0.25
113
+ - Updated dependencies []:
114
+ - @equinor/fusion-framework-module-app@5.2.12
115
+ - @equinor/fusion-framework@7.0.25
101
116
 
102
117
  ## 7.1.11
103
118
 
104
119
  ### Patch Changes
105
120
 
106
- - Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
107
- - @equinor/fusion-framework-module@4.2.6
108
- - @equinor/fusion-framework-module-http@5.1.2
109
- - @equinor/fusion-framework-module-msal@3.0.8
110
- - @equinor/fusion-framework-module-app@5.2.11
111
- - @equinor/fusion-framework@7.0.24
112
- - @equinor/fusion-framework-module-event@4.0.7
121
+ - Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
122
+ - @equinor/fusion-framework-module@4.2.6
123
+ - @equinor/fusion-framework-module-http@5.1.2
124
+ - @equinor/fusion-framework-module-msal@3.0.8
125
+ - @equinor/fusion-framework-module-app@5.2.11
126
+ - @equinor/fusion-framework@7.0.24
127
+ - @equinor/fusion-framework-module-event@4.0.7
113
128
 
114
129
  ## 7.1.10
115
130
 
116
131
  ### Patch Changes
117
132
 
118
- - Updated dependencies [[`6d303787`](https://github.com/equinor/fusion-framework/commit/6d303787f647bb2fc3c90456eccac751abb264c4)]:
119
- - @equinor/fusion-framework-module-app@5.2.10
133
+ - Updated dependencies [[`6d303787`](https://github.com/equinor/fusion-framework/commit/6d303787f647bb2fc3c90456eccac751abb264c4)]:
134
+ - @equinor/fusion-framework-module-app@5.2.10
120
135
 
121
136
  ## 7.1.9
122
137
 
123
138
  ### Patch Changes
124
139
 
125
- - Updated dependencies [[`8274dca1`](https://github.com/equinor/fusion-framework/commit/8274dca10a773e1d29ffbce82a6f6f2bae818316)]:
126
- - @equinor/fusion-framework-module-app@5.2.9
140
+ - Updated dependencies [[`8274dca1`](https://github.com/equinor/fusion-framework/commit/8274dca10a773e1d29ffbce82a6f6f2bae818316)]:
141
+ - @equinor/fusion-framework-module-app@5.2.9
127
142
 
128
143
  ## 7.1.8
129
144
 
130
145
  ### Patch Changes
131
146
 
132
- - Updated dependencies []:
133
- - @equinor/fusion-framework-module-app@5.2.8
134
- - @equinor/fusion-framework@7.0.23
147
+ - Updated dependencies []:
148
+ - @equinor/fusion-framework-module-app@5.2.8
149
+ - @equinor/fusion-framework@7.0.23
135
150
 
136
151
  ## 7.1.7
137
152
 
138
153
  ### Patch Changes
139
154
 
140
- - Updated dependencies [[`7ad31761`](https://github.com/equinor/fusion-framework/commit/7ad3176102f92da108b67ede6fdf29b76149bed9)]:
141
- - @equinor/fusion-framework-module-app@5.2.7
142
- - @equinor/fusion-framework@7.0.22
155
+ - Updated dependencies [[`7ad31761`](https://github.com/equinor/fusion-framework/commit/7ad3176102f92da108b67ede6fdf29b76149bed9)]:
156
+ - @equinor/fusion-framework-module-app@5.2.7
157
+ - @equinor/fusion-framework@7.0.22
143
158
 
144
159
  ## 7.1.6
145
160
 
146
161
  ### Patch Changes
147
162
 
148
- - [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
163
+ - [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
149
164
 
150
- - Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
151
- - @equinor/fusion-framework@7.0.21
152
- - @equinor/fusion-framework-module-app@5.2.6
153
- - @equinor/fusion-framework-module-event@4.0.6
154
- - @equinor/fusion-framework-module-http@5.1.1
155
- - @equinor/fusion-framework-module@4.2.5
156
- - @equinor/fusion-framework-module-msal@3.0.7
165
+ - Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
166
+ - @equinor/fusion-framework@7.0.21
167
+ - @equinor/fusion-framework-module-app@5.2.6
168
+ - @equinor/fusion-framework-module-event@4.0.6
169
+ - @equinor/fusion-framework-module-http@5.1.1
170
+ - @equinor/fusion-framework-module@4.2.5
171
+ - @equinor/fusion-framework-module-msal@3.0.7
157
172
 
158
173
  ## 7.1.5
159
174
 
160
175
  ### Patch Changes
161
176
 
162
- - Updated dependencies [[`8e9e34a0`](https://github.com/equinor/fusion-framework/commit/8e9e34a06a6905d092ad8ca3f9330a3699da20fa)]:
163
- - @equinor/fusion-framework-module-http@5.1.0
164
- - @equinor/fusion-framework@7.0.20
165
- - @equinor/fusion-framework-module-app@5.2.5
177
+ - Updated dependencies [[`8e9e34a0`](https://github.com/equinor/fusion-framework/commit/8e9e34a06a6905d092ad8ca3f9330a3699da20fa)]:
178
+ - @equinor/fusion-framework-module-http@5.1.0
179
+ - @equinor/fusion-framework@7.0.20
180
+ - @equinor/fusion-framework-module-app@5.2.5
166
181
 
167
182
  ## 7.1.4
168
183
 
169
184
  ### Patch Changes
170
185
 
171
- - Updated dependencies []:
172
- - @equinor/fusion-framework@7.0.19
173
- - @equinor/fusion-framework-module-app@5.2.4
186
+ - Updated dependencies []:
187
+ - @equinor/fusion-framework@7.0.19
188
+ - @equinor/fusion-framework-module-app@5.2.4
174
189
 
175
190
  ## 7.1.3
176
191
 
177
192
  ### Patch Changes
178
193
 
179
- - Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
180
- - @equinor/fusion-framework-module@4.2.4
181
- - @equinor/fusion-framework-module-app@5.2.4
182
- - @equinor/fusion-framework@7.0.18
183
- - @equinor/fusion-framework-module-event@4.0.5
184
- - @equinor/fusion-framework-module-http@5.0.6
185
- - @equinor/fusion-framework-module-msal@3.0.6
194
+ - Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
195
+ - @equinor/fusion-framework-module@4.2.4
196
+ - @equinor/fusion-framework-module-app@5.2.4
197
+ - @equinor/fusion-framework@7.0.18
198
+ - @equinor/fusion-framework-module-event@4.0.5
199
+ - @equinor/fusion-framework-module-http@5.0.6
200
+ - @equinor/fusion-framework-module-msal@3.0.6
186
201
 
187
202
  ## 7.1.2
188
203
 
189
204
  ### Patch Changes
190
205
 
191
- - Updated dependencies []:
192
- - @equinor/fusion-framework-module-app@5.2.3
193
- - @equinor/fusion-framework@7.0.17
206
+ - Updated dependencies []:
207
+ - @equinor/fusion-framework-module-app@5.2.3
208
+ - @equinor/fusion-framework@7.0.17
194
209
 
195
210
  ## 7.1.1
196
211
 
197
212
  ### Patch Changes
198
213
 
199
- - [#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
214
+ - [#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
200
215
 
201
- conflicts of `@types/react` made random outcomes when using `yarn`
216
+ conflicts of `@types/react` made random outcomes when using `yarn`
202
217
 
203
- this change should not affect consumer of the packages, but might conflict dependent on local package manager.
218
+ this change should not affect consumer of the packages, but might conflict dependent on local package manager.
204
219
 
205
- - Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272), [`52d98701`](https://github.com/equinor/fusion-framework/commit/52d98701627e93c7284c0b9a5bfd8dab1da43bd3)]:
206
- - @equinor/fusion-framework-module@4.2.3
207
- - @equinor/fusion-framework-module-event@4.0.4
208
- - @equinor/fusion-framework-module-http@5.0.5
209
- - @equinor/fusion-framework-module-msal@3.0.5
210
- - @equinor/fusion-framework-module-app@5.2.2
211
- - @equinor/fusion-framework@7.0.16
220
+ - Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272), [`52d98701`](https://github.com/equinor/fusion-framework/commit/52d98701627e93c7284c0b9a5bfd8dab1da43bd3)]:
221
+ - @equinor/fusion-framework-module@4.2.3
222
+ - @equinor/fusion-framework-module-event@4.0.4
223
+ - @equinor/fusion-framework-module-http@5.0.5
224
+ - @equinor/fusion-framework-module-msal@3.0.5
225
+ - @equinor/fusion-framework-module-app@5.2.2
226
+ - @equinor/fusion-framework@7.0.16
212
227
 
213
228
  ## 7.1.0
214
229
 
215
230
  ### Minor Changes
216
231
 
217
- - [#1093](https://github.com/equinor/fusion-framework/pull/1093) [`0a785d5c`](https://github.com/equinor/fusion-framework/commit/0a785d5c339ceec7cbbe2a6ff9e16053c86ce511) Thanks [@odinr](https://github.com/odinr)! - Allow options for `config.useFrameworkServiceClient`
232
+ - [#1093](https://github.com/equinor/fusion-framework/pull/1093) [`0a785d5c`](https://github.com/equinor/fusion-framework/commit/0a785d5c339ceec7cbbe2a6ff9e16053c86ce511) Thanks [@odinr](https://github.com/odinr)! - Allow options for `config.useFrameworkServiceClient`
218
233
 
219
- Add optional configuration when using a predefined client from service discovery
234
+ Add optional configuration when using a predefined client from service discovery
220
235
 
221
- **Changed interface**
236
+ **Changed interface**
222
237
 
223
- ```ts
224
- type useFrameworkServiceClient = (
225
- service_name: string,
226
- /** new, allows customize registration of http client from service discovery */
227
- options?: Omit<HttpClientOptions<any>, 'baseUri' | 'defaultScopes'>,
228
- )
229
- ```
238
+ ```ts
239
+ type useFrameworkServiceClient = (
240
+ service_name: string,
241
+ /** new, allows customize registration of http client from service discovery */
242
+ options?: Omit<HttpClientOptions<any>, 'baseUri' | 'defaultScopes'>,
243
+ )
244
+ ```
230
245
 
231
- **example**
246
+ **example**
232
247
 
233
- ```ts
234
- config.useFrameworkServiceClient('some_fusion_service', {
235
- onCreate(client: IHttpClient) {
236
- /** make creation of http client add default request header */
237
- client.requestHandler.setHeader('api-version', '2.0');
238
- },
239
- });
240
- ```
248
+ ```ts
249
+ config.useFrameworkServiceClient("some_fusion_service", {
250
+ onCreate(client: IHttpClient) {
251
+ /** make creation of http client add default request header */
252
+ client.requestHandler.setHeader("api-version", "2.0");
253
+ },
254
+ });
255
+ ```
241
256
 
242
257
  ### Patch Changes
243
258
 
244
- - Updated dependencies [[`7aee3cf0`](https://github.com/equinor/fusion-framework/commit/7aee3cf01764a272e7b0a09045ff674575b15035), [`1a2880d2`](https://github.com/equinor/fusion-framework/commit/1a2880d2e4c80ac5ce08f63ca3699fe77e4b565c)]:
245
- - @equinor/fusion-framework-module-event@4.0.3
246
- - @equinor/fusion-framework-module@4.2.2
259
+ - Updated dependencies [[`7aee3cf0`](https://github.com/equinor/fusion-framework/commit/7aee3cf01764a272e7b0a09045ff674575b15035), [`1a2880d2`](https://github.com/equinor/fusion-framework/commit/1a2880d2e4c80ac5ce08f63ca3699fe77e4b565c)]:
260
+ - @equinor/fusion-framework-module-event@4.0.3
261
+ - @equinor/fusion-framework-module@4.2.2
247
262
 
248
263
  ## 7.0.16
249
264
 
250
265
  ### Patch Changes
251
266
 
252
- - [#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
267
+ - [#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
253
268
 
254
- - Updated dependencies [[`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352)]:
255
- - @equinor/fusion-framework@7.0.15
256
- - @equinor/fusion-framework-module-app@5.2.1
257
- - @equinor/fusion-framework-module-event@4.0.2
258
- - @equinor/fusion-framework-module-http@5.0.4
259
- - @equinor/fusion-framework-module@4.2.1
260
- - @equinor/fusion-framework-module-msal@3.0.4
269
+ - Updated dependencies [[`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352)]:
270
+ - @equinor/fusion-framework@7.0.15
271
+ - @equinor/fusion-framework-module-app@5.2.1
272
+ - @equinor/fusion-framework-module-event@4.0.2
273
+ - @equinor/fusion-framework-module-http@5.0.4
274
+ - @equinor/fusion-framework-module@4.2.1
275
+ - @equinor/fusion-framework-module-msal@3.0.4
261
276
 
262
277
  ## 7.0.15
263
278
 
264
279
  ### Patch Changes
265
280
 
266
- - [#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**
281
+ - [#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**
267
282
 
268
- - align all versions of typescript
269
- - update types to build
270
- - 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
283
+ - align all versions of typescript
284
+ - update types to build
285
+ - 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
271
286
 
272
- - Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
273
- - @equinor/fusion-framework-module@4.2.0
274
- - @equinor/fusion-framework@7.0.14
275
- - @equinor/fusion-framework-module-app@5.1.3
276
- - @equinor/fusion-framework-module-http@5.0.3
277
- - @equinor/fusion-framework-module-msal@3.0.3
287
+ - Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
288
+ - @equinor/fusion-framework-module@4.2.0
289
+ - @equinor/fusion-framework@7.0.14
290
+ - @equinor/fusion-framework-module-app@5.1.3
291
+ - @equinor/fusion-framework-module-http@5.0.3
292
+ - @equinor/fusion-framework-module-msal@3.0.3
278
293
 
279
294
  All notable changes to this project will be documented in this file.
280
295
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
@@ -439,29 +454,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
439
454
 
440
455
  ### Bug Fixes
441
456
 
442
- - **module-app:** update deps ([3e956c4](https://github.com/equinor/fusion-framework/commit/3e956c4b66b012988e68c2f4633ccdb692dc9bc9))
457
+ - **module-app:** update deps ([3e956c4](https://github.com/equinor/fusion-framework/commit/3e956c4b66b012988e68c2f4633ccdb692dc9bc9))
443
458
 
444
459
  ## 5.0.0 (2023-01-04)
445
460
 
446
461
  ### ⚠ BREAKING CHANGES
447
462
 
448
- - **module-app:** manifest prop rename
463
+ - **module-app:** manifest prop rename
449
464
 
450
465
  ### Bug Fixes
451
466
 
452
- - **module-app:** rename `appKey` to `key` ([9ee97b1](https://github.com/equinor/fusion-framework/commit/9ee97b149b9167a3747da371de76490e287d9514))
467
+ - **module-app:** rename `appKey` to `key` ([9ee97b1](https://github.com/equinor/fusion-framework/commit/9ee97b149b9167a3747da371de76490e287d9514))
453
468
 
454
469
  ## 4.0.20 (2022-12-21)
455
470
 
456
471
  ### Bug Fixes
457
472
 
458
- - import export of app types ([6adeabe](https://github.com/equinor/fusion-framework/commit/6adeabecd1d261f3fda18a1cf93e5be4e374cbb5))
473
+ - import export of app types ([6adeabe](https://github.com/equinor/fusion-framework/commit/6adeabecd1d261f3fda18a1cf93e5be4e374cbb5))
459
474
 
460
475
  ## 4.0.19 (2022-12-19)
461
476
 
462
477
  ### Bug Fixes
463
478
 
464
- - **react-app:** check if manifest is provided in env ([e41b6d1](https://github.com/equinor/fusion-framework/commit/e41b6d1c9006f7d55933a6375861d96126498015))
479
+ - **react-app:** check if manifest is provided in env ([e41b6d1](https://github.com/equinor/fusion-framework/commit/e41b6d1c9006f7d55933a6375861d96126498015))
465
480
 
466
481
  ## 4.0.18 (2022-12-16)
467
482
 
@@ -527,7 +542,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
527
542
 
528
543
  ### Bug Fixes
529
544
 
530
- - **app:** adding type contextModule in event details for app package ([abea386](https://github.com/equinor/fusion-framework/commit/abea386c76c6297934a236d1bba9c71a12425065))
545
+ - **app:** adding type contextModule in event details for app package ([abea386](https://github.com/equinor/fusion-framework/commit/abea386c76c6297934a236d1bba9c71a12425065))
531
546
 
532
547
  ## [4.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-app@4.0.1...@equinor/fusion-framework-app@4.0.2) (2022-12-05)
533
548
 
@@ -673,7 +688,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
673
688
 
674
689
  ### Features
675
690
 
676
- - **framework:** implement module-app ([dc917f0](https://github.com/equinor/fusion-framework/commit/dc917f019da852fbd93eaf6ed7bc4a3a7e6f0d68))
691
+ - **framework:** implement module-app ([dc917f0](https://github.com/equinor/fusion-framework/commit/dc917f019da852fbd93eaf6ed7bc4a3a7e6f0d68))
677
692
 
678
693
  ## 3.0.10 (2022-11-01)
679
694
 
@@ -687,7 +702,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
687
702
 
688
703
  ### Bug Fixes
689
704
 
690
- - **react-app:** :fire: update render env args with typing ([06bd3c7](https://github.com/equinor/fusion-framework/commit/06bd3c75218981f54216f76d3b7a667110dac3ae))
705
+ - **react-app:** :fire: update render env args with typing ([06bd3c7](https://github.com/equinor/fusion-framework/commit/06bd3c75218981f54216f76d3b7a667110dac3ae))
691
706
 
692
707
  ## [3.0.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-app@3.0.6...@equinor/fusion-framework-app@3.0.7) (2022-10-21)
693
708
 
@@ -717,28 +732,28 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
717
732
 
718
733
  ### Bug Fixes
719
734
 
720
- - **app:** update interfaces ([9b833bf](https://github.com/equinor/fusion-framework/commit/9b833bf53ea0cdcb8d4dfec7da1c42440c6ebe2d))
735
+ - **app:** update interfaces ([9b833bf](https://github.com/equinor/fusion-framework/commit/9b833bf53ea0cdcb8d4dfec7da1c42440c6ebe2d))
721
736
 
722
737
  ## [3.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-app@2.0.0...@equinor/fusion-framework-app@3.0.0) (2022-09-27)
723
738
 
724
739
  ### ⚠ BREAKING CHANGES
725
740
 
726
- - **module-service-discovery:** order of arguments for configuring client in service discovery
741
+ - **module-service-discovery:** order of arguments for configuring client in service discovery
727
742
 
728
743
  ### Bug Fixes
729
744
 
730
- - **module-service-discovery:** change order of arguments ([a1240c6](https://github.com/equinor/fusion-framework/commit/a1240c6360da5e919623bc31a51ced4c5ce1c2e3))
731
- - update registering of configuration ([20942ce](https://github.com/equinor/fusion-framework/commit/20942ce1c7a853ea3b55c031a242646e378db8c9))
745
+ - **module-service-discovery:** change order of arguments ([a1240c6](https://github.com/equinor/fusion-framework/commit/a1240c6360da5e919623bc31a51ced4c5ce1c2e3))
746
+ - update registering of configuration ([20942ce](https://github.com/equinor/fusion-framework/commit/20942ce1c7a853ea3b55c031a242646e378db8c9))
732
747
 
733
748
  ## 2.0.0 (2022-09-26)
734
749
 
735
750
  ### ⚠ BREAKING CHANGES
736
751
 
737
- - **module-service-discovery:** order of arguments for configuring client in service discovery
752
+ - **module-service-discovery:** order of arguments for configuring client in service discovery
738
753
 
739
754
  ### Bug Fixes
740
755
 
741
- - **module-service-discovery:** change order of arguments ([a1240c6](https://github.com/equinor/fusion-framework/commit/a1240c6360da5e919623bc31a51ced4c5ce1c2e3))
756
+ - **module-service-discovery:** change order of arguments ([a1240c6](https://github.com/equinor/fusion-framework/commit/a1240c6360da5e919623bc31a51ced4c5ce1c2e3))
742
757
 
743
758
  ## 1.0.7 (2022-09-20)
744
759
 
@@ -752,19 +767,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
752
767
 
753
768
  ### Bug Fixes
754
769
 
755
- - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
770
+ - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
756
771
 
757
772
  ## [1.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-app@1.0.3...@equinor/fusion-framework-app@1.0.4) (2022-09-13)
758
773
 
759
774
  ### Bug Fixes
760
775
 
761
- - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
776
+ - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
762
777
 
763
778
  ## [1.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-app@1.0.2...@equinor/fusion-framework-app@1.0.3) (2022-09-13)
764
779
 
765
780
  ### Bug Fixes
766
781
 
767
- - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
782
+ - update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
768
783
 
769
784
  ## [1.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-app@1.0.1...@equinor/fusion-framework-app@1.0.2) (2022-09-13)
770
785
 
@@ -786,29 +801,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
786
801
 
787
802
  ### ⚠ BREAKING CHANGES
788
803
 
789
- - **app:** config is now object
804
+ - **app:** config is now object
790
805
 
791
806
  ### Features
792
807
 
793
- - **app:** update init ([528d77f](https://github.com/equinor/fusion-framework/commit/528d77f30430242d05bf9a7fbed3ea68171df39d))
808
+ - **app:** update init ([528d77f](https://github.com/equinor/fusion-framework/commit/528d77f30430242d05bf9a7fbed3ea68171df39d))
794
809
 
795
810
  ### Bug Fixes
796
811
 
797
- - **app:** expect fusion modules ([301fcab](https://github.com/equinor/fusion-framework/commit/301fcab23e857bf87440b4212513a7eea2641aea))
812
+ - **app:** expect fusion modules ([301fcab](https://github.com/equinor/fusion-framework/commit/301fcab23e857bf87440b4212513a7eea2641aea))
798
813
 
799
814
  ## [1.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-app@0.2.3...@equinor/fusion-framework-app@1.0.0-alpha.0) (2022-09-12)
800
815
 
801
816
  ### ⚠ BREAKING CHANGES
802
817
 
803
- - **app:** config is now object
818
+ - **app:** config is now object
804
819
 
805
820
  ### Features
806
821
 
807
- - **app:** update init ([528d77f](https://github.com/equinor/fusion-framework/commit/528d77f30430242d05bf9a7fbed3ea68171df39d))
822
+ - **app:** update init ([528d77f](https://github.com/equinor/fusion-framework/commit/528d77f30430242d05bf9a7fbed3ea68171df39d))
808
823
 
809
824
  ### Bug Fixes
810
825
 
811
- - **app:** expect fusion modules ([301fcab](https://github.com/equinor/fusion-framework/commit/301fcab23e857bf87440b4212513a7eea2641aea))
826
+ - **app:** expect fusion modules ([301fcab](https://github.com/equinor/fusion-framework/commit/301fcab23e857bf87440b4212513a7eea2641aea))
812
827
 
813
828
  ## 0.2.3 (2022-09-05)
814
829
 
@@ -826,23 +841,23 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
826
841
 
827
842
  ### ⚠ BREAKING CHANGES
828
843
 
829
- - rename fetch
844
+ - rename fetch
830
845
 
831
- - fix(module-service-discovery): update http client consumer
846
+ - fix(module-service-discovery): update http client consumer
832
847
 
833
- - build: update allowed branches
848
+ - build: update allowed branches
834
849
 
835
- - build: add conventional commit
850
+ - build: add conventional commit
836
851
 
837
- - build: use conventionalcommits
852
+ - build: use conventionalcommits
838
853
 
839
- - build(module-http): push major
854
+ - build(module-http): push major
840
855
 
841
- - build: update deps
856
+ - build: update deps
842
857
 
843
858
  ### Features
844
859
 
845
- - rename fetch method ([#226](https://github.com/equinor/fusion-framework/issues/226)) ([f02df7c](https://github.com/equinor/fusion-framework/commit/f02df7cdd2b9098b0da49c5ea56ac3b6a17e9e32))
860
+ - rename fetch method ([#226](https://github.com/equinor/fusion-framework/issues/226)) ([f02df7c](https://github.com/equinor/fusion-framework/commit/f02df7cdd2b9098b0da49c5ea56ac3b6a17e9e32))
846
861
 
847
862
  ## [0.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-app@0.1.1...@equinor/fusion-framework-app@0.1.2) (2022-08-23)
848
863
 
@@ -852,10 +867,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
852
867
 
853
868
  ### Bug Fixes
854
869
 
855
- - **app:** fix typing of configurator ([5b71bea](https://github.com/equinor/fusion-framework/commit/5b71beadb34d3dc26bde23d93409008f2292e42b))
870
+ - **app:** fix typing of configurator ([5b71bea](https://github.com/equinor/fusion-framework/commit/5b71beadb34d3dc26bde23d93409008f2292e42b))
856
871
 
857
872
  # 0.1.0 (2022-08-22)
858
873
 
859
874
  ### Features
860
875
 
861
- - **app:** create base module for fusion apps ([9bd3f2f](https://github.com/equinor/fusion-framework/commit/9bd3f2f1ff51d18f2a8989f2d2a1f5045720b7e0))
876
+ - **app:** create base module for fusion apps ([9bd3f2f](https://github.com/equinor/fusion-framework/commit/9bd3f2f1ff51d18f2a8989f2d2a1f5045720b7e0))