@equinor/fusion-framework-module-signalr 14.0.0 → 14.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +10 -7
- package/CHANGELOG.md +0 -605
- package/src/SignalRConfigurator.ts +0 -66
- package/src/SignalRModule.ts +0 -55
- package/src/SignalRModuleConfigBuilder.ts +0 -112
- package/src/SignalRModuleProvider.ts +0 -142
- package/src/index.ts +0 -31
- package/src/lib/Topic.ts +0 -79
- package/src/lib/utils/configure-from-framework.ts +0 -47
- package/src/lib/utils/enable-signalr.ts +0 -95
- package/src/version.ts +0 -2
- package/tsconfig.json +0 -21
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "14.0.
|
|
1
|
+
export declare const version = "14.0.1";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-module-signalr",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
"keywords": [],
|
|
15
15
|
"author": "",
|
|
16
16
|
"license": "ISC",
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
17
20
|
"publishConfig": {
|
|
18
21
|
"access": "public"
|
|
19
22
|
},
|
|
@@ -28,14 +31,14 @@
|
|
|
28
31
|
},
|
|
29
32
|
"devDependencies": {
|
|
30
33
|
"typescript": "^7.0.2",
|
|
31
|
-
"@equinor/fusion-framework-module": "^
|
|
32
|
-
"@equinor/fusion-framework-module-
|
|
33
|
-
"@equinor/fusion-framework-module
|
|
34
|
+
"@equinor/fusion-framework-module-service-discovery": "^10.1.1",
|
|
35
|
+
"@equinor/fusion-framework-module-msal": "^11.0.1",
|
|
36
|
+
"@equinor/fusion-framework-module": "^6.1.4"
|
|
34
37
|
},
|
|
35
38
|
"peerDependencies": {
|
|
36
|
-
"@equinor/fusion-framework-module": "^6.1.
|
|
37
|
-
"@equinor/fusion-framework-module-
|
|
38
|
-
"@equinor/fusion-framework-module-
|
|
39
|
+
"@equinor/fusion-framework-module": "^6.1.4",
|
|
40
|
+
"@equinor/fusion-framework-module-service-discovery": "^10.1.1",
|
|
41
|
+
"@equinor/fusion-framework-module-msal": "^11.0.1"
|
|
39
42
|
},
|
|
40
43
|
"peerDependenciesMeta": {
|
|
41
44
|
"@equinor/fusion-framework-module-service-discovery": {
|
package/CHANGELOG.md
DELETED
|
@@ -1,605 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
## 14.0.0
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- f663b46: Internal: promote packages already published on the `next` prerelease channel to their stable versions.
|
|
8
|
-
|
|
9
|
-
## 13.0.1
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- 80c3e4a: Internal: resolve `noExplicitAny` Biome warnings in `enableSignalR`'s `IModulesConfigurator<any, any>` overloads (via `biome-ignore`), and safely tighten `Topic`'s `send`/`invoke` rest parameters from `any[]` to `unknown[]` since they are only forwarded to the underlying hub connection call. No public API or behavior change.
|
|
14
|
-
- 80c3e4a: Internal: resolve `fusion-lint` warnings (`require-intent-comment`, `require-tsdoc`, `single-export-per-file`, `no-todo-without-issue`). Split `SignalRConfigurator` into its own file, removed stale `eslint-disable` comments (repo uses Biome), and referenced tracking issue #5096 for a `BaseConfigBuilder` migration TODO.
|
|
15
|
-
- 80c3e4a: Internal: renamed 45 source files across these packages to comply with the `filename-convention` lint rule (e.g. `AIConfigurator.ts` → `AiConfigurator.ts`, `BookmarkProvider.actions.ts` → `bookmark-actions.ts`, `errors/app-build-error.ts` → `errors/AppBuildError.ts`, `plugins/api/plugin.ts` → `plugins/api/ApiPlugin.ts`, `errors.ts` → `UnsupportedApiVersion.ts`, etc.). Also added `enable-signalr.ts` to the `filename-convention` exclude list since the suggested rename would incorrectly split the "SignalR" brand name. No public API changes.
|
|
16
|
-
|
|
17
|
-
## 13.0.0
|
|
18
|
-
|
|
19
|
-
### Patch Changes
|
|
20
|
-
|
|
21
|
-
- @equinor/fusion-framework-module-msal@10.0.0
|
|
22
|
-
|
|
23
|
-
## 12.0.0
|
|
24
|
-
|
|
25
|
-
### Patch Changes
|
|
26
|
-
|
|
27
|
-
- @equinor/fusion-framework-module-msal@9.0.0
|
|
28
|
-
|
|
29
|
-
## 11.0.1
|
|
30
|
-
|
|
31
|
-
### Patch Changes
|
|
32
|
-
|
|
33
|
-
- a2b9ae4: Internal: Bump `@microsoft/signalr` from 7.0.14 to 10.0.0.
|
|
34
|
-
|
|
35
|
-
## 11.0.0
|
|
36
|
-
|
|
37
|
-
### Major Changes
|
|
38
|
-
|
|
39
|
-
- abffa53: Major version bump for Fusion Framework React 19 release.
|
|
40
|
-
|
|
41
|
-
All packages are bumped to the next major version as part of the React 19 upgrade. This release drops support for React versions below 18 and includes breaking changes across the framework.
|
|
42
|
-
|
|
43
|
-
**Breaking changes:**
|
|
44
|
-
- Peer dependencies now require React 18 or 19 (`^18.0.0 || ^19.0.0`)
|
|
45
|
-
- React Router upgraded from v6 to v7
|
|
46
|
-
- Navigation module refactored with new history API
|
|
47
|
-
- `renderComponent` and `renderApp` now use `createRoot` API
|
|
48
|
-
|
|
49
|
-
**Migration:**
|
|
50
|
-
- Update your React version to 18.0.0 or higher before upgrading
|
|
51
|
-
- Replace `NavigationProvider.createRouter()` with `@equinor/fusion-framework-react-router`
|
|
52
|
-
- See individual package changelogs for package-specific migration steps
|
|
53
|
-
|
|
54
|
-
### Patch Changes
|
|
55
|
-
|
|
56
|
-
- Updated dependencies [abffa53]
|
|
57
|
-
- Updated dependencies [abffa53]
|
|
58
|
-
- Updated dependencies [8f30948]
|
|
59
|
-
- @equinor/fusion-framework-module@6.0.0
|
|
60
|
-
- @equinor/fusion-framework-module-msal@8.0.0
|
|
61
|
-
- @equinor/fusion-framework-module-service-discovery@10.0.0
|
|
62
|
-
|
|
63
|
-
## 10.0.1
|
|
64
|
-
|
|
65
|
-
### Patch Changes
|
|
66
|
-
|
|
67
|
-
- [#4157](https://github.com/equinor/fusion-framework/pull/4157) [`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581) Thanks [@Noggling](https://github.com/Noggling)! - Internal: patch release to align TypeScript types across packages for consistent type compatibility.
|
|
68
|
-
|
|
69
|
-
- Updated dependencies [[`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581), [`db8fa81`](https://github.com/equinor/fusion-framework/commit/db8fa8134b77a628b15e06f7f72b50f04ef97458)]:
|
|
70
|
-
- @equinor/fusion-framework-module@5.0.6
|
|
71
|
-
- @equinor/fusion-framework-module-msal@7.3.1
|
|
72
|
-
- @equinor/fusion-framework-module-service-discovery@9.1.1
|
|
73
|
-
|
|
74
|
-
## 10.0.0
|
|
75
|
-
|
|
76
|
-
### Patch Changes
|
|
77
|
-
|
|
78
|
-
- Updated dependencies [[`cb37cae`](https://github.com/equinor/fusion-framework/commit/cb37cae45e06778e8d1ea20faed31b582e49fcae)]:
|
|
79
|
-
- @equinor/fusion-framework-module-msal@7.0.0
|
|
80
|
-
|
|
81
|
-
## 9.0.0
|
|
82
|
-
|
|
83
|
-
### Patch Changes
|
|
84
|
-
|
|
85
|
-
- [#3714](https://github.com/equinor/fusion-framework/pull/3714) [`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8) Thanks [@odinr](https://github.com/odinr)! - Update SignalR module to use new MSAL token acquisition API format.
|
|
86
|
-
|
|
87
|
-
Internal implementation change to adapt to MSAL interface updates. SignalR module continues to work the same way for consumers.
|
|
88
|
-
|
|
89
|
-
Why: Ensures compatibility with updated MSAL module API.
|
|
90
|
-
|
|
91
|
-
- Updated dependencies [[`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8), [`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8)]:
|
|
92
|
-
- @equinor/fusion-framework-module-msal@6.0.0
|
|
93
|
-
|
|
94
|
-
## 8.0.0
|
|
95
|
-
|
|
96
|
-
### Patch Changes
|
|
97
|
-
|
|
98
|
-
- Updated dependencies [[`c222c67`](https://github.com/equinor/fusion-framework/commit/c222c673bc7cdefff6eb0cd9436bfa3d1f185295), [`c222c67`](https://github.com/equinor/fusion-framework/commit/c222c673bc7cdefff6eb0cd9436bfa3d1f185295)]:
|
|
99
|
-
- @equinor/fusion-framework-module-msal@5.0.0
|
|
100
|
-
- @equinor/fusion-framework-module-service-discovery@9.0.0
|
|
101
|
-
|
|
102
|
-
## 7.0.0
|
|
103
|
-
|
|
104
|
-
### Patch Changes
|
|
105
|
-
|
|
106
|
-
- Updated dependencies [[`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253), [`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253), [`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253)]:
|
|
107
|
-
- @equinor/fusion-framework-module@5.0.0
|
|
108
|
-
- @equinor/fusion-framework-module-msal@4.0.8
|
|
109
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.18
|
|
110
|
-
|
|
111
|
-
## 6.0.5
|
|
112
|
-
|
|
113
|
-
### Patch Changes
|
|
114
|
-
|
|
115
|
-
- [#3088](https://github.com/equinor/fusion-framework/pull/3088) [`7441b13`](https://github.com/equinor/fusion-framework/commit/7441b13aa50dd7362d1629086a27b6b4e571575d) Thanks [@eikeland](https://github.com/eikeland)! - chore: update package typesVersions
|
|
116
|
-
- Updated package.json typesVersions.
|
|
117
|
-
- Ensures backward compatibility with older node versions.
|
|
118
|
-
- Ensured consistency with workspace and repository configuration.
|
|
119
|
-
|
|
120
|
-
- Updated dependencies [[`7441b13`](https://github.com/equinor/fusion-framework/commit/7441b13aa50dd7362d1629086a27b6b4e571575d)]:
|
|
121
|
-
- @equinor/fusion-framework-module-msal@4.0.7
|
|
122
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.17
|
|
123
|
-
|
|
124
|
-
## 6.0.4
|
|
125
|
-
|
|
126
|
-
### Patch Changes
|
|
127
|
-
|
|
128
|
-
- Updated dependencies []:
|
|
129
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.16
|
|
130
|
-
|
|
131
|
-
## 6.0.3
|
|
132
|
-
|
|
133
|
-
### Patch Changes
|
|
134
|
-
|
|
135
|
-
- Updated dependencies []:
|
|
136
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.15
|
|
137
|
-
|
|
138
|
-
## 6.0.2
|
|
139
|
-
|
|
140
|
-
### Patch Changes
|
|
141
|
-
|
|
142
|
-
- Updated dependencies [[`96bb1fb`](https://github.com/equinor/fusion-framework/commit/96bb1fb744d8dc2410e99fea6ca948d2d5489428)]:
|
|
143
|
-
- @equinor/fusion-framework-module@4.4.2
|
|
144
|
-
- @equinor/fusion-framework-module-msal@4.0.6
|
|
145
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.14
|
|
146
|
-
|
|
147
|
-
## 6.0.1
|
|
148
|
-
|
|
149
|
-
### Patch Changes
|
|
150
|
-
|
|
151
|
-
- [#3054](https://github.com/equinor/fusion-framework/pull/3054) [`c6af3a3`](https://github.com/equinor/fusion-framework/commit/c6af3a3c926fb245e9d056b506d47b8bf4f1efde) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Re-add typesVersions from package.json files
|
|
152
|
-
|
|
153
|
-
- Updated dependencies [[`e49f916`](https://github.com/equinor/fusion-framework/commit/e49f9161557202df57248d02ade4d2ef50231bdc), [`c6af3a3`](https://github.com/equinor/fusion-framework/commit/c6af3a3c926fb245e9d056b506d47b8bf4f1efde)]:
|
|
154
|
-
- @equinor/fusion-framework-module@4.4.1
|
|
155
|
-
- @equinor/fusion-framework-module-msal@4.0.5
|
|
156
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.13
|
|
157
|
-
|
|
158
|
-
## 6.0.0
|
|
159
|
-
|
|
160
|
-
### Patch Changes
|
|
161
|
-
|
|
162
|
-
- Updated dependencies [[`efd70a3`](https://github.com/equinor/fusion-framework/commit/efd70a34f734e0c155d3440e35ce4fa11a7abc42)]:
|
|
163
|
-
- @equinor/fusion-framework-module@4.4.0
|
|
164
|
-
- @equinor/fusion-framework-module-msal@4.0.4
|
|
165
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.12
|
|
166
|
-
|
|
167
|
-
## 5.0.5
|
|
168
|
-
|
|
169
|
-
### Patch Changes
|
|
170
|
-
|
|
171
|
-
- [#3012](https://github.com/equinor/fusion-framework/pull/3012) [`f53b60b`](https://github.com/equinor/fusion-framework/commit/f53b60b7805706ce7617e614f0ac0c24317a2e43) Thanks [@odinr](https://github.com/odinr)! - removed `typesVersions` from packages, since we no longer support TS < 4.7, also corrected `types` path in package.json
|
|
172
|
-
|
|
173
|
-
- Updated dependencies [[`f53b60b`](https://github.com/equinor/fusion-framework/commit/f53b60b7805706ce7617e614f0ac0c24317a2e43)]:
|
|
174
|
-
- @equinor/fusion-framework-module@4.3.8
|
|
175
|
-
- @equinor/fusion-framework-module-msal@4.0.3
|
|
176
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.11
|
|
177
|
-
|
|
178
|
-
## 5.0.4
|
|
179
|
-
|
|
180
|
-
### Patch Changes
|
|
181
|
-
|
|
182
|
-
- Updated dependencies []:
|
|
183
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.10
|
|
184
|
-
|
|
185
|
-
## 5.0.3
|
|
186
|
-
|
|
187
|
-
### Patch Changes
|
|
188
|
-
|
|
189
|
-
- Updated dependencies []:
|
|
190
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.9
|
|
191
|
-
|
|
192
|
-
## 5.0.2
|
|
193
|
-
|
|
194
|
-
### Patch Changes
|
|
195
|
-
|
|
196
|
-
- [#2885](https://github.com/equinor/fusion-framework/pull/2885) [`abb3560`](https://github.com/equinor/fusion-framework/commit/abb3560a22ad8830df19904272035458433f4237) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update he `Typescript` version `^5.7.3` to `^5.8.2`
|
|
197
|
-
|
|
198
|
-
- Updated dependencies [[`abb3560`](https://github.com/equinor/fusion-framework/commit/abb3560a22ad8830df19904272035458433f4237)]:
|
|
199
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.8
|
|
200
|
-
- @equinor/fusion-framework-module@4.3.7
|
|
201
|
-
- @equinor/fusion-framework-module-msal@4.0.2
|
|
202
|
-
|
|
203
|
-
## 5.0.1
|
|
204
|
-
|
|
205
|
-
### Patch Changes
|
|
206
|
-
|
|
207
|
-
- [#2848](https://github.com/equinor/fusion-framework/pull/2848) [`dcd2fb1`](https://github.com/equinor/fusion-framework/commit/dcd2fb1394e175d0cc2a4289ed3ede8e0271d67d) Thanks [@odinr](https://github.com/odinr)! - Refactored imports to use `type` when importing types from a module, to conform with the `useImportType` rule in Biome.
|
|
208
|
-
|
|
209
|
-
- Updated dependencies [[`ba5d12e`](https://github.com/equinor/fusion-framework/commit/ba5d12eba0a38db412353765e997d02c1fbb478d), [`6efabb7`](https://github.com/equinor/fusion-framework/commit/6efabb7837a97319e976e122db855d8b88b031a6), [`1953dd2`](https://github.com/equinor/fusion-framework/commit/1953dd217d85fa4880856b2c97b6305fcbaf2e24), [`dcd2fb1`](https://github.com/equinor/fusion-framework/commit/dcd2fb1394e175d0cc2a4289ed3ede8e0271d67d)]:
|
|
210
|
-
- @equinor/fusion-framework-module@4.3.6
|
|
211
|
-
- @equinor/fusion-framework-module-msal@4.0.1
|
|
212
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.7
|
|
213
|
-
|
|
214
|
-
## 5.0.0
|
|
215
|
-
|
|
216
|
-
### Patch Changes
|
|
217
|
-
|
|
218
|
-
- Updated dependencies [[`ea4b522`](https://github.com/equinor/fusion-framework/commit/ea4b5221b30719289fc947b5dbb0acd3ea52ffaa)]:
|
|
219
|
-
- @equinor/fusion-framework-module-msal@4.0.0
|
|
220
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.6
|
|
221
|
-
|
|
222
|
-
## 4.0.5
|
|
223
|
-
|
|
224
|
-
### Patch Changes
|
|
225
|
-
|
|
226
|
-
- Updated dependencies []:
|
|
227
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.5
|
|
228
|
-
|
|
229
|
-
## 4.0.4
|
|
230
|
-
|
|
231
|
-
### Patch Changes
|
|
232
|
-
|
|
233
|
-
- Updated dependencies []:
|
|
234
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.4
|
|
235
|
-
|
|
236
|
-
## 4.0.3
|
|
237
|
-
|
|
238
|
-
### Patch Changes
|
|
239
|
-
|
|
240
|
-
- Updated dependencies []:
|
|
241
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.3
|
|
242
|
-
|
|
243
|
-
## 4.0.2
|
|
244
|
-
|
|
245
|
-
### Patch Changes
|
|
246
|
-
|
|
247
|
-
- Updated dependencies []:
|
|
248
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.2
|
|
249
|
-
|
|
250
|
-
## 4.0.1
|
|
251
|
-
|
|
252
|
-
### Patch Changes
|
|
253
|
-
|
|
254
|
-
- Updated dependencies []:
|
|
255
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.1
|
|
256
|
-
|
|
257
|
-
## 4.0.0
|
|
258
|
-
|
|
259
|
-
### Patch Changes
|
|
260
|
-
|
|
261
|
-
- [#2459](https://github.com/equinor/fusion-framework/pull/2459) [`15152e4`](https://github.com/equinor/fusion-framework/commit/15152e413c054a5f57af93211a470c98c7696caa) Thanks [@odinr](https://github.com/odinr)! - Update configureFromFramework to handle authentication scopes
|
|
262
|
-
|
|
263
|
-
- Updated dependencies [[`2644b3d`](https://github.com/equinor/fusion-framework/commit/2644b3d63939aede736a3b1950db32dbd487877d), [`15152e4`](https://github.com/equinor/fusion-framework/commit/15152e413c054a5f57af93211a470c98c7696caa)]:
|
|
264
|
-
- @equinor/fusion-framework-module@4.3.5
|
|
265
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.0
|
|
266
|
-
- @equinor/fusion-framework-module-msal@3.1.5
|
|
267
|
-
|
|
268
|
-
## 3.0.13
|
|
269
|
-
|
|
270
|
-
### Patch Changes
|
|
271
|
-
|
|
272
|
-
- Updated dependencies []:
|
|
273
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.13
|
|
274
|
-
|
|
275
|
-
## 3.0.12
|
|
276
|
-
|
|
277
|
-
### Patch Changes
|
|
278
|
-
|
|
279
|
-
- Updated dependencies [[`75d676d`](https://github.com/equinor/fusion-framework/commit/75d676d2c7919f30e036b5ae97c4d814c569aa87), [`00d5e9c`](https://github.com/equinor/fusion-framework/commit/00d5e9c632876742c3d2a74efea2f126a0a169d9)]:
|
|
280
|
-
- @equinor/fusion-framework-module@4.3.4
|
|
281
|
-
- @equinor/fusion-framework-module-msal@3.1.4
|
|
282
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.12
|
|
283
|
-
|
|
284
|
-
## 3.0.11
|
|
285
|
-
|
|
286
|
-
### Patch Changes
|
|
287
|
-
|
|
288
|
-
- Updated dependencies [[`a1524e9`](https://github.com/equinor/fusion-framework/commit/a1524e9c4d83778da3db42dbcf99908b776a0592)]:
|
|
289
|
-
- @equinor/fusion-framework-module@4.3.3
|
|
290
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.11
|
|
291
|
-
- @equinor/fusion-framework-module-msal@3.1.3
|
|
292
|
-
|
|
293
|
-
## 3.0.10
|
|
294
|
-
|
|
295
|
-
### Patch Changes
|
|
296
|
-
|
|
297
|
-
- [#2333](https://github.com/equinor/fusion-framework/pull/2333) [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1) Thanks [@odinr](https://github.com/odinr)! - Updated `TypeScript` to 5.5.3
|
|
298
|
-
|
|
299
|
-
- [#2320](https://github.com/equinor/fusion-framework/pull/2320) [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee) Thanks [@odinr](https://github.com/odinr)! - Removed the `removeComments` option from the `tsconfig.base.json` file.
|
|
300
|
-
|
|
301
|
-
Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
|
|
302
|
-
1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
|
|
303
|
-
2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
|
|
304
|
-
3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
|
|
305
|
-
|
|
306
|
-
No action is required from consumers of the library. This change affects the build process and doesn't introduce any breaking changes or new features.
|
|
307
|
-
|
|
308
|
-
Before:
|
|
309
|
-
|
|
310
|
-
```json
|
|
311
|
-
{
|
|
312
|
-
"compilerOptions": {
|
|
313
|
-
"module": "ES2022",
|
|
314
|
-
"target": "ES6",
|
|
315
|
-
"incremental": true,
|
|
316
|
-
"removeComments": true,
|
|
317
|
-
"preserveConstEnums": true,
|
|
318
|
-
"sourceMap": true,
|
|
319
|
-
"moduleResolution": "node"
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
```
|
|
323
|
-
|
|
324
|
-
After:
|
|
325
|
-
|
|
326
|
-
```json
|
|
327
|
-
{
|
|
328
|
-
"compilerOptions": {
|
|
329
|
-
"module": "ES2022",
|
|
330
|
-
"target": "ES6",
|
|
331
|
-
"incremental": true,
|
|
332
|
-
"preserveConstEnums": true,
|
|
333
|
-
"sourceMap": true,
|
|
334
|
-
"moduleResolution": "node"
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
```
|
|
338
|
-
|
|
339
|
-
This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
|
|
340
|
-
|
|
341
|
-
- Updated dependencies [[`2f74edc`](https://github.com/equinor/fusion-framework/commit/2f74edcd4a3ea2b87d69f0fd63492145c3c01663), [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1), [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee)]:
|
|
342
|
-
- @equinor/fusion-framework-module@4.3.2
|
|
343
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.10
|
|
344
|
-
- @equinor/fusion-framework-module-msal@3.1.2
|
|
345
|
-
|
|
346
|
-
## 3.0.9
|
|
347
|
-
|
|
348
|
-
### Patch Changes
|
|
349
|
-
|
|
350
|
-
- Updated dependencies []:
|
|
351
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.9
|
|
352
|
-
|
|
353
|
-
## 3.0.8
|
|
354
|
-
|
|
355
|
-
### Patch Changes
|
|
356
|
-
|
|
357
|
-
- Updated dependencies []:
|
|
358
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.8
|
|
359
|
-
|
|
360
|
-
## 3.0.7
|
|
361
|
-
|
|
362
|
-
### Patch Changes
|
|
363
|
-
|
|
364
|
-
- 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)]:
|
|
365
|
-
- @equinor/fusion-framework-module@4.3.1
|
|
366
|
-
- @equinor/fusion-framework-module-msal@3.1.1
|
|
367
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.7
|
|
368
|
-
|
|
369
|
-
## 3.0.6
|
|
370
|
-
|
|
371
|
-
### Patch Changes
|
|
372
|
-
|
|
373
|
-
- Updated dependencies []:
|
|
374
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.6
|
|
375
|
-
|
|
376
|
-
## 3.0.5
|
|
377
|
-
|
|
378
|
-
### Patch Changes
|
|
379
|
-
|
|
380
|
-
- Updated dependencies []:
|
|
381
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.5
|
|
382
|
-
|
|
383
|
-
## 3.0.4
|
|
384
|
-
|
|
385
|
-
### Patch Changes
|
|
386
|
-
|
|
387
|
-
- Updated dependencies []:
|
|
388
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.4
|
|
389
|
-
|
|
390
|
-
## 3.0.3
|
|
391
|
-
|
|
392
|
-
### Patch Changes
|
|
393
|
-
|
|
394
|
-
- Updated dependencies []:
|
|
395
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.3
|
|
396
|
-
|
|
397
|
-
## 3.0.2
|
|
398
|
-
|
|
399
|
-
### Patch Changes
|
|
400
|
-
|
|
401
|
-
- Updated dependencies []:
|
|
402
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.2
|
|
403
|
-
|
|
404
|
-
## 3.0.1
|
|
405
|
-
|
|
406
|
-
### Patch Changes
|
|
407
|
-
|
|
408
|
-
- Updated dependencies []:
|
|
409
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.1
|
|
410
|
-
|
|
411
|
-
## 3.0.0
|
|
412
|
-
|
|
413
|
-
### Minor Changes
|
|
414
|
-
|
|
415
|
-
- [#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
|
|
416
|
-
|
|
417
|
-
### Patch Changes
|
|
418
|
-
|
|
419
|
-
- Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904), [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
|
|
420
|
-
- @equinor/fusion-framework-module@4.3.0
|
|
421
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.0
|
|
422
|
-
- @equinor/fusion-framework-module-msal@3.1.0
|
|
423
|
-
|
|
424
|
-
## 2.0.19
|
|
425
|
-
|
|
426
|
-
### Patch Changes
|
|
427
|
-
|
|
428
|
-
- Updated dependencies [[`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
|
|
429
|
-
- @equinor/fusion-framework-module@4.2.7
|
|
430
|
-
- @equinor/fusion-framework-module-msal@3.0.10
|
|
431
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.20
|
|
432
|
-
|
|
433
|
-
## 2.0.18
|
|
434
|
-
|
|
435
|
-
### Patch Changes
|
|
436
|
-
|
|
437
|
-
- Updated dependencies []:
|
|
438
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.19
|
|
439
|
-
|
|
440
|
-
## 2.0.17
|
|
441
|
-
|
|
442
|
-
### Patch Changes
|
|
443
|
-
|
|
444
|
-
- Updated dependencies [[`5eab8af`](https://github.com/equinor/fusion-framework/commit/5eab8afe3c3106cc67ad14ce4cbee6c7e4e8dfb1)]:
|
|
445
|
-
- @equinor/fusion-framework-module-msal@3.0.9
|
|
446
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.18
|
|
447
|
-
|
|
448
|
-
## 2.0.16
|
|
449
|
-
|
|
450
|
-
### Patch Changes
|
|
451
|
-
|
|
452
|
-
- Updated dependencies []:
|
|
453
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.17
|
|
454
|
-
|
|
455
|
-
## 2.0.15
|
|
456
|
-
|
|
457
|
-
### Patch Changes
|
|
458
|
-
|
|
459
|
-
- Updated dependencies []:
|
|
460
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.16
|
|
461
|
-
|
|
462
|
-
## 2.0.14
|
|
463
|
-
|
|
464
|
-
### Patch Changes
|
|
465
|
-
|
|
466
|
-
- Updated dependencies []:
|
|
467
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.15
|
|
468
|
-
|
|
469
|
-
## 2.0.13
|
|
470
|
-
|
|
471
|
-
### Patch Changes
|
|
472
|
-
|
|
473
|
-
- [#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
|
|
474
|
-
|
|
475
|
-
- Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
|
|
476
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.14
|
|
477
|
-
- @equinor/fusion-framework-module@4.2.6
|
|
478
|
-
- @equinor/fusion-framework-module-msal@3.0.8
|
|
479
|
-
|
|
480
|
-
## 2.0.12
|
|
481
|
-
|
|
482
|
-
### Patch Changes
|
|
483
|
-
|
|
484
|
-
- Updated dependencies []:
|
|
485
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.13
|
|
486
|
-
|
|
487
|
-
## 2.0.11
|
|
488
|
-
|
|
489
|
-
### Patch Changes
|
|
490
|
-
|
|
491
|
-
- Updated dependencies []:
|
|
492
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.12
|
|
493
|
-
|
|
494
|
-
## 2.0.10
|
|
495
|
-
|
|
496
|
-
### Patch Changes
|
|
497
|
-
|
|
498
|
-
- [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
|
|
499
|
-
|
|
500
|
-
- Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
|
|
501
|
-
- @equinor/fusion-framework-module@4.2.5
|
|
502
|
-
- @equinor/fusion-framework-module-msal@3.0.7
|
|
503
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.11
|
|
504
|
-
|
|
505
|
-
## 2.0.9
|
|
506
|
-
|
|
507
|
-
### Patch Changes
|
|
508
|
-
|
|
509
|
-
- Updated dependencies []:
|
|
510
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.10
|
|
511
|
-
|
|
512
|
-
## 2.0.8
|
|
513
|
-
|
|
514
|
-
### Patch Changes
|
|
515
|
-
|
|
516
|
-
- Updated dependencies [[`e539e606`](https://github.com/equinor/fusion-framework/commit/e539e606d04bd8b7dc0c0bfed7cd4a7731996936)]:
|
|
517
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.9
|
|
518
|
-
|
|
519
|
-
## 2.0.7
|
|
520
|
-
|
|
521
|
-
### Patch Changes
|
|
522
|
-
|
|
523
|
-
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
524
|
-
- @equinor/fusion-framework-module@4.2.4
|
|
525
|
-
- @equinor/fusion-framework-module-msal@3.0.6
|
|
526
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.8
|
|
527
|
-
|
|
528
|
-
## 2.0.6
|
|
529
|
-
|
|
530
|
-
### Patch Changes
|
|
531
|
-
|
|
532
|
-
- Updated dependencies []:
|
|
533
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.7
|
|
534
|
-
|
|
535
|
-
## 2.0.5
|
|
536
|
-
|
|
537
|
-
### Patch Changes
|
|
538
|
-
|
|
539
|
-
- [#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
|
|
540
|
-
|
|
541
|
-
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
542
|
-
|
|
543
|
-
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
544
|
-
|
|
545
|
-
- [#1145](https://github.com/equinor/fusion-framework/pull/1145) [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump rxjs from 7.5.7 to [7.8.1](https://github.com/ReactiveX/rxjs/blob/7.8.1/CHANGELOG.md)
|
|
546
|
-
|
|
547
|
-
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
548
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.6
|
|
549
|
-
- @equinor/fusion-framework-module@4.2.3
|
|
550
|
-
- @equinor/fusion-framework-module-msal@3.0.5
|
|
551
|
-
|
|
552
|
-
## 2.0.4
|
|
553
|
-
|
|
554
|
-
### Patch Changes
|
|
555
|
-
|
|
556
|
-
- [#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
|
|
557
|
-
|
|
558
|
-
## 2.0.3
|
|
559
|
-
|
|
560
|
-
### Patch Changes
|
|
561
|
-
|
|
562
|
-
- d8a439f0: chore(signalr): update peer deps
|
|
563
|
-
|
|
564
|
-
All notable changes to this project will be documented in this file.
|
|
565
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
566
|
-
|
|
567
|
-
## 2.0.2 (2023-05-23)
|
|
568
|
-
|
|
569
|
-
**Note:** Version bump only for package @equinor/fusion-framework-module-signalr
|
|
570
|
-
|
|
571
|
-
## 2.0.1 (2023-05-05)
|
|
572
|
-
|
|
573
|
-
**Note:** Version bump only for package @equinor/fusion-framework-module-signalr
|
|
574
|
-
|
|
575
|
-
## 2.0.0 (2023-04-16)
|
|
576
|
-
|
|
577
|
-
**Note:** Version bump only for package @equinor/fusion-framework-module-signalr
|
|
578
|
-
|
|
579
|
-
## 1.0.2 (2023-03-22)
|
|
580
|
-
|
|
581
|
-
**Note:** Version bump only for package @equinor/fusion-framework-module-signalr
|
|
582
|
-
|
|
583
|
-
## [1.0.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-signalr@1.0.0...@equinor/fusion-framework-module-signalr@1.0.1) (2023-03-20)
|
|
584
|
-
|
|
585
|
-
**Note:** Version bump only for package @equinor/fusion-framework-module-signalr
|
|
586
|
-
|
|
587
|
-
## [1.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-signalr@0.1.0...@equinor/fusion-framework-module-signalr@1.0.0) (2023-01-27)
|
|
588
|
-
|
|
589
|
-
**Note:** Version bump only for package @equinor/fusion-framework-module-signalr
|
|
590
|
-
|
|
591
|
-
## [1.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-signalr@0.1.0...@equinor/fusion-framework-module-signalr@1.0.0-alpha.0) (2023-01-26)
|
|
592
|
-
|
|
593
|
-
**Note:** Version bump only for package @equinor/fusion-framework-module-signalr
|
|
594
|
-
|
|
595
|
-
## 0.1.0 (2023-01-26)
|
|
596
|
-
|
|
597
|
-
### Features
|
|
598
|
-
|
|
599
|
-
- initial code for signalr-module and react-signalr ([c385ee2](https://github.com/equinor/fusion-framework/commit/c385ee2eca6ee58d87e2de955c43c2b75212efe4))
|
|
600
|
-
- **module-signalr:** expose provider interfaces ([c3dfea1](https://github.com/equinor/fusion-framework/commit/c3dfea130e2d11202bb8f98d916dbe067f17f85f))
|
|
601
|
-
- **module-signalr:** improve connection handing ([d78deba](https://github.com/equinor/fusion-framework/commit/d78debad569e322e02df342a3239a3f1f2f025fd))
|
|
602
|
-
|
|
603
|
-
### Bug Fixes
|
|
604
|
-
|
|
605
|
-
- **module-signalr:** resolve config sync ([3cfc1ec](https://github.com/equinor/fusion-framework/commit/3cfc1eca4c3991aa6b85707d5a7fe9e274ff9af1))
|