@nordicsemiconductor/pc-nrfconnect-shared 133.0.0 → 135.0.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 +157 -127
- package/package.json +2 -2
- package/scripts/prepare-shared-release.ts +4 -3
- package/scripts/release-shared.test.ts +7 -7
- package/scripts/release-shared.ts +3 -1
- package/src/Device/initPacket.ts +1 -1
- package/src/Device/sdfuOperations.ts +4 -4
- package/src/Dropdown/Dropdown.tsx +12 -10
- package/src/utils/usageDataMain.ts +2 -2
- package/typings/generated/scripts/release-shared.d.ts.map +1 -1
- package/typings/generated/src/Device/initPacket.d.ts +1 -1
- package/typings/generated/src/Device/initPacket.d.ts.map +1 -1
- package/typings/generated/src/Dropdown/Dropdown.d.ts +7 -6
- package/typings/generated/src/Dropdown/Dropdown.d.ts.map +1 -1
- package/coverage/cobertura-coverage.xml +0 -9010
- package/typings/nrf-intel-hex.d.ts +0 -58
package/Changelog.md
CHANGED
|
@@ -7,14 +7,44 @@ This project does _not_ adhere to
|
|
|
7
7
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html) but contrary to it
|
|
8
8
|
every new version is a new major version.
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## 135.0.0 - 2023-11-29
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Updated `nrf-intel-hex` to the latest version which slightly changed some
|
|
15
|
+
types (from `Buffer` to `Uint8Array`) because this was corrected there.
|
|
16
|
+
|
|
17
|
+
## 134.0.0 - 2023-11-22
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- `defaultButtonLabel` on `Dropdown` component, for cases where it is useful
|
|
22
|
+
to have a default item that should not be selected after a different item
|
|
23
|
+
has been selected.
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- The `Dropdown` component is now generic, and will infer the `DropdownItem`
|
|
28
|
+
type, from the its properties. Meaning that if you pass in a list of
|
|
29
|
+
`DropdownItem<number>` to items, then the `onSelect` item will be of type
|
|
30
|
+
`DropdownItem<number>`.
|
|
31
|
+
- Version numbers in this changelog are changed from the shorter variant like
|
|
32
|
+
`133` to the complete version number like `133.0.0`.
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
- Telemtry: Metadata was not removed on request, when being in the main
|
|
37
|
+
process. This is not critical because this code isn't yet executed in real
|
|
38
|
+
life.
|
|
39
|
+
|
|
40
|
+
## 133.0.0 - 2023-11-15
|
|
11
41
|
|
|
12
42
|
### Changed
|
|
13
43
|
|
|
14
44
|
- Nrfutil `sandbox` default logging level to 'off' in production and 'error'
|
|
15
45
|
in development environments
|
|
16
46
|
|
|
17
|
-
## 132 - 2023-11-14
|
|
47
|
+
## 132.0.0 - 2023-11-14
|
|
18
48
|
|
|
19
49
|
### Added
|
|
20
50
|
|
|
@@ -25,7 +55,7 @@ every new version is a new major version.
|
|
|
25
55
|
|
|
26
56
|
- `deviceInfo` is update in redux on device select
|
|
27
57
|
|
|
28
|
-
## 131 - 2023-11-14
|
|
58
|
+
## 131.0.0 - 2023-11-14
|
|
29
59
|
|
|
30
60
|
### Changed
|
|
31
61
|
|
|
@@ -38,7 +68,7 @@ every new version is a new major version.
|
|
|
38
68
|
|
|
39
69
|
- Removed warning from `applicationinsights` in the console on start.
|
|
40
70
|
|
|
41
|
-
## 130 - 2023-11-14
|
|
71
|
+
## 130.0.0 - 2023-11-14
|
|
42
72
|
|
|
43
73
|
### Fixed
|
|
44
74
|
|
|
@@ -49,7 +79,7 @@ every new version is a new major version.
|
|
|
49
79
|
onSelectedDevice. This is to ensure the operations to the device are
|
|
50
80
|
completed before the app possibly does any more action on it
|
|
51
81
|
|
|
52
|
-
## 129 - 2023-11-13
|
|
82
|
+
## 129.0.0 - 2023-11-13
|
|
53
83
|
|
|
54
84
|
### Added
|
|
55
85
|
|
|
@@ -65,39 +95,39 @@ every new version is a new major version.
|
|
|
65
95
|
device as a dependency in `package.json`
|
|
66
96
|
- `App` no longer logs nrfutil device version.
|
|
67
97
|
|
|
68
|
-
## 128 - 2023-11-08
|
|
98
|
+
## 128.0.0 - 2023-11-08
|
|
69
99
|
|
|
70
100
|
### Fixed
|
|
71
101
|
|
|
72
102
|
- `NumberInputSliderWithUnit` component did not disable all sub-components
|
|
73
103
|
- `NumberInputSliderWithUnit` did not update when external value changed
|
|
74
104
|
|
|
75
|
-
## 127 - 2023-11-08
|
|
105
|
+
## 127.0.0 - 2023-11-08
|
|
76
106
|
|
|
77
107
|
### Fixed
|
|
78
108
|
|
|
79
109
|
- version 126 was released as a prerelease on NPM
|
|
80
110
|
|
|
81
|
-
## 126 - 2023-11-08
|
|
111
|
+
## 126.0.0 - 2023-11-08
|
|
82
112
|
|
|
83
113
|
### Fixed
|
|
84
114
|
|
|
85
115
|
- `className` property in `FileLink` component is now optional
|
|
86
116
|
|
|
87
|
-
## 125 - 2023-11-08
|
|
117
|
+
## 125.0.0 - 2023-11-08
|
|
88
118
|
|
|
89
119
|
### Changed
|
|
90
120
|
|
|
91
121
|
- `className` property in `FileLink` component is now optional
|
|
92
122
|
|
|
93
|
-
## 124 - 2023-11-08
|
|
123
|
+
## 124.0.0 - 2023-11-08
|
|
94
124
|
|
|
95
125
|
### Added
|
|
96
126
|
|
|
97
127
|
- `className` property to `FileLink` component
|
|
98
128
|
- `FileLink` will add ellipsis when text overflows
|
|
99
129
|
|
|
100
|
-
## 123 - 2023-11-07
|
|
130
|
+
## 123.0.0 - 2023-11-07
|
|
101
131
|
|
|
102
132
|
### Added
|
|
103
133
|
|
|
@@ -148,7 +178,7 @@ usageData.enableTelemetry();
|
|
|
148
178
|
render(<App panes={[]} />);
|
|
149
179
|
```
|
|
150
180
|
|
|
151
|
-
## 122 - 2023-11-02
|
|
181
|
+
## 122.0.0 - 2023-11-02
|
|
152
182
|
|
|
153
183
|
### Changed
|
|
154
184
|
|
|
@@ -182,7 +212,7 @@ render(<App panes={[]} />);
|
|
|
182
212
|
- Change `nrfConnectForDesktop.nrfutil.device` to 2.0.0.
|
|
183
213
|
- Update all device properties to match the changes above.
|
|
184
214
|
|
|
185
|
-
## 121 - 2023-10-24
|
|
215
|
+
## 121.0.0 - 2023-10-24
|
|
186
216
|
|
|
187
217
|
### Added
|
|
188
218
|
|
|
@@ -196,7 +226,7 @@ render(<App panes={[]} />);
|
|
|
196
226
|
waiting for device
|
|
197
227
|
- Device setup dialog is closed immediately pressing no to programming it
|
|
198
228
|
|
|
199
|
-
## 120 - 2023-10-13
|
|
229
|
+
## 120.0.0 - 2023-10-13
|
|
200
230
|
|
|
201
231
|
### Fixed
|
|
202
232
|
|
|
@@ -205,13 +235,13 @@ render(<App panes={[]} />);
|
|
|
205
235
|
into the `package.json`, which didn't exist any longer in the launcher,
|
|
206
236
|
because it is only supplied during build time by apps now.
|
|
207
237
|
|
|
208
|
-
## 119 - 2023-10-13
|
|
238
|
+
## 119.0.0 - 2023-10-13
|
|
209
239
|
|
|
210
240
|
### Changed
|
|
211
241
|
|
|
212
242
|
- Remove default 3000ms timeout from `nrfutil device list`
|
|
213
243
|
|
|
214
|
-
## 118 - 2023-10-13
|
|
244
|
+
## 118.0.0 - 2023-10-13
|
|
215
245
|
|
|
216
246
|
### Added
|
|
217
247
|
|
|
@@ -227,13 +257,13 @@ render(<App panes={[]} />);
|
|
|
227
257
|
- `nrfConnectForDesktop.html` is not optional anymore, it must always be
|
|
228
258
|
specified in `package.json`.
|
|
229
259
|
|
|
230
|
-
## 117 - 2023-10-04
|
|
260
|
+
## 117.0.0 - 2023-10-04
|
|
231
261
|
|
|
232
262
|
### Fixed
|
|
233
263
|
|
|
234
264
|
- `nrfutil device program` did now throw error when files buffers where used
|
|
235
265
|
|
|
236
|
-
## 116 - 2023-10-03
|
|
266
|
+
## 116.0.0 - 2023-10-03
|
|
237
267
|
|
|
238
268
|
### Fixed
|
|
239
269
|
|
|
@@ -245,26 +275,26 @@ render(<App panes={[]} />);
|
|
|
245
275
|
|
|
246
276
|
- Read the `package.json` already during compile time, but only for apps.
|
|
247
277
|
|
|
248
|
-
## 115 - 2023-09-28
|
|
278
|
+
## 115.0.0 - 2023-09-28
|
|
249
279
|
|
|
250
280
|
### Fixed
|
|
251
281
|
|
|
252
282
|
- `MasonryLayout` content disappeared if space is less then min width
|
|
253
283
|
- `Feedback` cursor is missing when no text is typed in.
|
|
254
284
|
|
|
255
|
-
## 114 - 2023-09-26
|
|
285
|
+
## 114.0.0 - 2023-09-26
|
|
256
286
|
|
|
257
287
|
### Fixed
|
|
258
288
|
|
|
259
289
|
- `MasonryLayout` excess scrolling white space.
|
|
260
290
|
|
|
261
|
-
## 113 - 2023-09-25
|
|
291
|
+
## 113.0.0 - 2023-09-25
|
|
262
292
|
|
|
263
293
|
### Fixed
|
|
264
294
|
|
|
265
295
|
- The buttons in a dialog footer had too little space between them.
|
|
266
296
|
|
|
267
|
-
## 112 - 2023-09-25
|
|
297
|
+
## 112.0.0 - 2023-09-25
|
|
268
298
|
|
|
269
299
|
### Fixed
|
|
270
300
|
|
|
@@ -273,7 +303,7 @@ render(<App panes={[]} />);
|
|
|
273
303
|
Sometimes TypeScript gets confused from which one to choose the types. Using
|
|
274
304
|
explicitly the version from the browser fixes this.
|
|
275
305
|
|
|
276
|
-
## 111 - 2023-09-22
|
|
306
|
+
## 111.0.0 - 2023-09-22
|
|
277
307
|
|
|
278
308
|
### Added
|
|
279
309
|
|
|
@@ -299,13 +329,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
299
329
|
}
|
|
300
330
|
```
|
|
301
331
|
|
|
302
|
-
## 110 - 2023-09-22
|
|
332
|
+
## 110.0.0 - 2023-09-22
|
|
303
333
|
|
|
304
334
|
### Fixed
|
|
305
335
|
|
|
306
336
|
- `MasonryLayout` dropdown component forced cards on different row to shift.
|
|
307
337
|
|
|
308
|
-
## 109 - 2023-09-21
|
|
338
|
+
## 109.0.0 - 2023-09-21
|
|
309
339
|
|
|
310
340
|
### Changed
|
|
311
341
|
|
|
@@ -315,26 +345,26 @@ declare module '!!@svgr!*.svg' {
|
|
|
315
345
|
|
|
316
346
|
- `Overlay` component.
|
|
317
347
|
|
|
318
|
-
## 108 - 2023-09-15
|
|
348
|
+
## 108.0.0 - 2023-09-15
|
|
319
349
|
|
|
320
350
|
### Fixed
|
|
321
351
|
|
|
322
352
|
- `MasonryLayout` Reacts to dropdown component making its height bigger.
|
|
323
353
|
|
|
324
|
-
## 107 - 2023-09-13
|
|
354
|
+
## 107.0.0 - 2023-09-13
|
|
325
355
|
|
|
326
356
|
### Fixed
|
|
327
357
|
|
|
328
358
|
- Fixed get `getAppDir()` path.
|
|
329
359
|
|
|
330
|
-
## 106 - 2023-09-13
|
|
360
|
+
## 106.0.0 - 2023-09-13
|
|
331
361
|
|
|
332
362
|
### Added
|
|
333
363
|
|
|
334
364
|
- `shellParser` utility
|
|
335
365
|
- `StartStopButton` now also takes in optional `title` property
|
|
336
366
|
|
|
337
|
-
## 105 - 2023-09-11
|
|
367
|
+
## 105.0.0 - 2023-09-11
|
|
338
368
|
|
|
339
369
|
### Added
|
|
340
370
|
|
|
@@ -344,7 +374,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
344
374
|
|
|
345
375
|
- Log device list errors.
|
|
346
376
|
|
|
347
|
-
## 104 - 2023-09-08
|
|
377
|
+
## 104.0.0 - 2023-09-08
|
|
348
378
|
|
|
349
379
|
### Changed
|
|
350
380
|
|
|
@@ -356,7 +386,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
356
386
|
- Batch programming will now cleanup temporary files
|
|
357
387
|
- Device list will use the passed devices traits
|
|
358
388
|
|
|
359
|
-
## 103 - 2023-09-06
|
|
389
|
+
## 103.0.0 - 2023-09-06
|
|
360
390
|
|
|
361
391
|
### Added
|
|
362
392
|
|
|
@@ -372,13 +402,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
372
402
|
- Update `nrfConnectForDesktop.nrfutil.device` to version 1.4.2 in
|
|
373
403
|
`package.json`
|
|
374
404
|
|
|
375
|
-
## 102 - 2023-09-05
|
|
405
|
+
## 102.0.0 - 2023-09-05
|
|
376
406
|
|
|
377
407
|
### Fixed
|
|
378
408
|
|
|
379
409
|
- Trace logging did not work in production
|
|
380
410
|
|
|
381
|
-
## 101 - 2023-09-05
|
|
411
|
+
## 101.0.0 - 2023-09-05
|
|
382
412
|
|
|
383
413
|
### Fixed
|
|
384
414
|
|
|
@@ -388,14 +418,14 @@ declare module '!!@svgr!*.svg' {
|
|
|
388
418
|
|
|
389
419
|
- `link` variant type from of `Button` component.
|
|
390
420
|
|
|
391
|
-
## 100 - 2023-09-05
|
|
421
|
+
## 100.0.0 - 2023-09-05
|
|
392
422
|
|
|
393
423
|
### Fixed
|
|
394
424
|
|
|
395
425
|
- Unable to use nrfutil device in production due to issue with nrfutil device
|
|
396
426
|
logging when set to off.
|
|
397
427
|
|
|
398
|
-
## 99 - 2023-09-04
|
|
428
|
+
## 99.0.0 - 2023-09-04
|
|
399
429
|
|
|
400
430
|
### Added
|
|
401
431
|
|
|
@@ -417,7 +447,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
417
447
|
|
|
418
448
|
- Logging for nrf-probe-lib version
|
|
419
449
|
|
|
420
|
-
## 98 - 2023-08-30
|
|
450
|
+
## 98.0.0 - 2023-08-30
|
|
421
451
|
|
|
422
452
|
### Added
|
|
423
453
|
|
|
@@ -445,7 +475,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
445
475
|
- Replace any occurrence of `link` variant `Button`s with `ExternalLink` or
|
|
446
476
|
`FileLink`.
|
|
447
477
|
|
|
448
|
-
## 97 - 2023-08-29
|
|
478
|
+
## 97.0.0 - 2023-08-29
|
|
449
479
|
|
|
450
480
|
### Added
|
|
451
481
|
|
|
@@ -458,7 +488,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
458
488
|
- `PCA10153`
|
|
459
489
|
- `PCA20049`
|
|
460
490
|
|
|
461
|
-
## 96 - 2023-08-25
|
|
491
|
+
## 96.0.0 - 2023-08-25
|
|
462
492
|
|
|
463
493
|
### Added
|
|
464
494
|
|
|
@@ -468,20 +498,20 @@ declare module '!!@svgr!*.svg' {
|
|
|
468
498
|
|
|
469
499
|
- Nrfutil device list `stop` callback is now an optional parameter
|
|
470
500
|
|
|
471
|
-
## 95 - 2023-08-25
|
|
501
|
+
## 95.0.0 - 2023-08-25
|
|
472
502
|
|
|
473
503
|
### Fixed
|
|
474
504
|
|
|
475
505
|
- Worked around an issue where the esbuild currently has issues with
|
|
476
506
|
.css-files that are named the same as their components.
|
|
477
507
|
|
|
478
|
-
## 94 - 2023-08-25
|
|
508
|
+
## 94.0.0 - 2023-08-25
|
|
479
509
|
|
|
480
510
|
### Changed
|
|
481
511
|
|
|
482
512
|
- Updated react to v18
|
|
483
513
|
|
|
484
|
-
## 93 - 2023-08-25
|
|
514
|
+
## 93.0.0 - 2023-08-25
|
|
485
515
|
|
|
486
516
|
### Added
|
|
487
517
|
|
|
@@ -500,13 +530,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
500
530
|
- Any usage of Nrfutil property `progressPercentage` need to be renamed to
|
|
501
531
|
`stepProgressPercentage`
|
|
502
532
|
|
|
503
|
-
## 92 - 2023-08-24
|
|
533
|
+
## 92.0.0 - 2023-08-24
|
|
504
534
|
|
|
505
535
|
### Added
|
|
506
536
|
|
|
507
537
|
- Add functionality to send metrics and traces to telemetry.
|
|
508
538
|
|
|
509
|
-
## 91 - 2023-08-23
|
|
539
|
+
## 91.0.0 - 2023-08-23
|
|
510
540
|
|
|
511
541
|
### Changed
|
|
512
542
|
|
|
@@ -532,7 +562,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
532
562
|
- Peer dependency and any remaining support for
|
|
533
563
|
`@nordicsemiconductor/nrf-device-lib-js`.
|
|
534
564
|
|
|
535
|
-
## 90 - 2023-08-21
|
|
565
|
+
## 90.0.0 - 2023-08-21
|
|
536
566
|
|
|
537
567
|
### Changed
|
|
538
568
|
|
|
@@ -560,13 +590,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
560
590
|
|
|
561
591
|
- Fixed get `getAppData()` path.
|
|
562
592
|
|
|
563
|
-
## 89 - 2023-08-17
|
|
593
|
+
## 89.0.0 - 2023-08-17
|
|
564
594
|
|
|
565
595
|
### Changed
|
|
566
596
|
|
|
567
597
|
- Updated nrf-device-lib-js to version 0.7.1.
|
|
568
598
|
|
|
569
|
-
## 88 - 2023-08-17
|
|
599
|
+
## 88.0.0 - 2023-08-17
|
|
570
600
|
|
|
571
601
|
### Changed
|
|
572
602
|
|
|
@@ -577,13 +607,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
577
607
|
|
|
578
608
|
- Change `html` to `nrfConnectForDesktop.html` in the app package json.
|
|
579
609
|
|
|
580
|
-
## 87 - 2023-08-14
|
|
610
|
+
## 87.0.0 - 2023-08-14
|
|
581
611
|
|
|
582
612
|
### Fixed
|
|
583
613
|
|
|
584
614
|
- Spinner in `Dialog` components was not inlined.
|
|
585
615
|
|
|
586
|
-
## 86 - 2023-08-14
|
|
616
|
+
## 86.0.0 - 2023-08-14
|
|
587
617
|
|
|
588
618
|
### Changed
|
|
589
619
|
|
|
@@ -594,13 +624,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
594
624
|
|
|
595
625
|
- `Spinner` now has old padding which was mistakenly removed.
|
|
596
626
|
|
|
597
|
-
## 85 - 2023-08-14
|
|
627
|
+
## 85.0.0 - 2023-08-14
|
|
598
628
|
|
|
599
629
|
### Fixed
|
|
600
630
|
|
|
601
631
|
- `getDisplayedDeviceName` could return an empty string.
|
|
602
632
|
|
|
603
|
-
## 84 - 2023-08-14
|
|
633
|
+
## 84.0.0 - 2023-08-14
|
|
604
634
|
|
|
605
635
|
### Changed
|
|
606
636
|
|
|
@@ -636,19 +666,19 @@ import { App, render } from '@nordicsemiconductor/pc-nrfconnect-shared';
|
|
|
636
666
|
render(<App />);
|
|
637
667
|
```
|
|
638
668
|
|
|
639
|
-
## 83 - 2023-08-11
|
|
669
|
+
## 83.0.0 - 2023-08-11
|
|
640
670
|
|
|
641
671
|
### Added
|
|
642
672
|
|
|
643
673
|
- `Spinner` component.
|
|
644
674
|
|
|
645
|
-
## 82 - 2023-08-09
|
|
675
|
+
## 82.0.0 - 2023-08-09
|
|
646
676
|
|
|
647
677
|
### Fixed
|
|
648
678
|
|
|
649
679
|
- Jest tests were broken due to missing config changes.
|
|
650
680
|
|
|
651
|
-
## 81 - 2023-08-09
|
|
681
|
+
## 81.0.0 - 2023-08-09
|
|
652
682
|
|
|
653
683
|
### Changed
|
|
654
684
|
|
|
@@ -690,19 +720,19 @@ The package.json can be changed as follows:
|
|
|
690
720
|
}
|
|
691
721
|
```
|
|
692
722
|
|
|
693
|
-
## 80 - 2023-08-07
|
|
723
|
+
## 80.0.0 - 2023-08-07
|
|
694
724
|
|
|
695
725
|
### Changed
|
|
696
726
|
|
|
697
727
|
- Linux: Check for and log `nrf-udev` install on startup.
|
|
698
728
|
|
|
699
|
-
## 79 - 2023-08-04
|
|
729
|
+
## 79.0.0 - 2023-08-04
|
|
700
730
|
|
|
701
731
|
### Added
|
|
702
732
|
|
|
703
733
|
- Export app utility functions (like `isInstalled`) and types.
|
|
704
734
|
|
|
705
|
-
## 78 - 2023-08-03
|
|
735
|
+
## 78.0.0 - 2023-08-03
|
|
706
736
|
|
|
707
737
|
### Changed
|
|
708
738
|
|
|
@@ -714,7 +744,7 @@ The package.json can be changed as follows:
|
|
|
714
744
|
- `deviceInfo` can now be used in applications that don't make use of the
|
|
715
745
|
shared redux store.
|
|
716
746
|
|
|
717
|
-
## 77 - 2023-08-01
|
|
747
|
+
## 77.0.0 - 2023-08-01
|
|
718
748
|
|
|
719
749
|
### Added
|
|
720
750
|
|
|
@@ -744,13 +774,13 @@ The package.json can be changed as follows:
|
|
|
744
774
|
appropriate functions.
|
|
745
775
|
- Replace invocations of `openAppWindow` with `openWindow.openApp`.
|
|
746
776
|
|
|
747
|
-
## 76 - 2023-07-28
|
|
777
|
+
## 76.0.0 - 2023-07-28
|
|
748
778
|
|
|
749
779
|
### Changed
|
|
750
780
|
|
|
751
781
|
- Turn on tree-shaking for tailwind classes during a development build.
|
|
752
782
|
|
|
753
|
-
## 75 - 2023-07-26
|
|
783
|
+
## 75.0.0 - 2023-07-26
|
|
754
784
|
|
|
755
785
|
### Added
|
|
756
786
|
|
|
@@ -777,14 +807,14 @@ The package.json can be changed as follows:
|
|
|
777
807
|
|
|
778
808
|
- `DisplayConflictingSettings` spacing and minor UI inconsistencies
|
|
779
809
|
|
|
780
|
-
## 74 - 2023-07-18
|
|
810
|
+
## 74.0.0 - 2023-07-18
|
|
781
811
|
|
|
782
812
|
### Fixed
|
|
783
813
|
|
|
784
814
|
- `ConflictingSettingsDialog` used stale/old `active` serial settings
|
|
785
815
|
information.
|
|
786
816
|
|
|
787
|
-
## 73 - 2023-07-14
|
|
817
|
+
## 73.0.0 - 2023-07-14
|
|
788
818
|
|
|
789
819
|
### Removed
|
|
790
820
|
|
|
@@ -794,26 +824,26 @@ The package.json can be changed as follows:
|
|
|
794
824
|
|
|
795
825
|
- `custom` variant `Button`s have to be replaced with `button` elements.
|
|
796
826
|
|
|
797
|
-
## 72 - 2023-07-13
|
|
827
|
+
## 72.0.0 - 2023-07-13
|
|
798
828
|
|
|
799
829
|
### Added
|
|
800
830
|
|
|
801
831
|
- export `persistNickname` and `getPersistedNickname`.
|
|
802
832
|
|
|
803
|
-
## 71 - 2023-07-11
|
|
833
|
+
## 71.0.0 - 2023-07-11
|
|
804
834
|
|
|
805
835
|
### Fixed
|
|
806
836
|
|
|
807
837
|
- `SwitchToApplicationMode` does not call on success when device is already in
|
|
808
838
|
application mode
|
|
809
839
|
|
|
810
|
-
## 70 - 2023-07-07
|
|
840
|
+
## 70.0.0 - 2023-07-07
|
|
811
841
|
|
|
812
842
|
### Fixed
|
|
813
843
|
|
|
814
844
|
- `Dropdown` UI broken due to lack of `tw-preflight` class
|
|
815
845
|
|
|
816
|
-
## 69 - 2023-07-07
|
|
846
|
+
## 69.0.0 - 2023-07-07
|
|
817
847
|
|
|
818
848
|
### Added
|
|
819
849
|
|
|
@@ -836,7 +866,7 @@ The package.json can be changed as follows:
|
|
|
836
866
|
- Device setup fails report sdfu different FW version
|
|
837
867
|
- Device setup does not show the choices radio boxes
|
|
838
868
|
|
|
839
|
-
## 68 - 2023-07-05
|
|
869
|
+
## 68.0.0 - 2023-07-05
|
|
840
870
|
|
|
841
871
|
### Added
|
|
842
872
|
|
|
@@ -848,7 +878,7 @@ The package.json can be changed as follows:
|
|
|
848
878
|
resulted in `util.promisify` is not a function
|
|
849
879
|
- Button lost x-padding with the addition of tailwind
|
|
850
880
|
|
|
851
|
-
## 67 - 2023-07-04
|
|
881
|
+
## 67.0.0 - 2023-07-04
|
|
852
882
|
|
|
853
883
|
### Added
|
|
854
884
|
|
|
@@ -879,7 +909,7 @@ module.exports = {
|
|
|
879
909
|
};
|
|
880
910
|
```
|
|
881
911
|
|
|
882
|
-
## 66 - 2023-07-03
|
|
912
|
+
## 66.0.0 - 2023-07-03
|
|
883
913
|
|
|
884
914
|
### Fixed
|
|
885
915
|
|
|
@@ -888,7 +918,7 @@ module.exports = {
|
|
|
888
918
|
- Margin on feedback pane
|
|
889
919
|
- Improve `NavBar` layout when there are a lot of tabs
|
|
890
920
|
|
|
891
|
-
## 65 - 2023-07-03
|
|
921
|
+
## 65.0.0 - 2023-07-03
|
|
892
922
|
|
|
893
923
|
### Changed
|
|
894
924
|
|
|
@@ -899,7 +929,7 @@ module.exports = {
|
|
|
899
929
|
- If 'AppThunk' is used with return type generic, add AppLayout (RootState)
|
|
900
930
|
'AppThunk<AppLayout, ReturnType>'
|
|
901
931
|
|
|
902
|
-
## 64 - 2023-07-03
|
|
932
|
+
## 64.0.0 - 2023-07-03
|
|
903
933
|
|
|
904
934
|
### Added
|
|
905
935
|
|
|
@@ -910,7 +940,7 @@ module.exports = {
|
|
|
910
940
|
|
|
911
941
|
- Replace Google Analytics with Application Insights.
|
|
912
942
|
|
|
913
|
-
## 63 - 2023-06-27
|
|
943
|
+
## 63.0.0 - 2023-06-27
|
|
914
944
|
|
|
915
945
|
### Added
|
|
916
946
|
|
|
@@ -922,7 +952,7 @@ module.exports = {
|
|
|
922
952
|
- Flash Messages: slide-in effect duration reduced to 300ms.
|
|
923
953
|
- Flash Messages: loader effect ends before slide-out effect begins.
|
|
924
954
|
|
|
925
|
-
## 62 - 2023-06-26
|
|
955
|
+
## 62.0.0 - 2023-06-26
|
|
926
956
|
|
|
927
957
|
### Added
|
|
928
958
|
|
|
@@ -933,7 +963,7 @@ module.exports = {
|
|
|
933
963
|
- Reduced time for CopiedFlashMessage, from 12s to 3s.
|
|
934
964
|
- Faster slide-in effect for Flash messages.
|
|
935
965
|
|
|
936
|
-
## 61 - 2023-06-23
|
|
966
|
+
## 61.0.0 - 2023-06-23
|
|
937
967
|
|
|
938
968
|
### Added
|
|
939
969
|
|
|
@@ -954,7 +984,7 @@ module.exports = {
|
|
|
954
984
|
- If you want to include the `FeedbackPane` in your app, provide the
|
|
955
985
|
`feedback` property to the `App` component.
|
|
956
986
|
|
|
957
|
-
## 60 - 2023-06-21
|
|
987
|
+
## 60.0.0 - 2023-06-21
|
|
958
988
|
|
|
959
989
|
### Added
|
|
960
990
|
|
|
@@ -986,7 +1016,7 @@ module.exports = {
|
|
|
986
1016
|
- Replace all instances of `LegacyPane` with `Pane` in the `panes` property of
|
|
987
1017
|
`App`.
|
|
988
1018
|
|
|
989
|
-
## 59 - 2023-06-16
|
|
1019
|
+
## 59.0.0 - 2023-06-16
|
|
990
1020
|
|
|
991
1021
|
### Added
|
|
992
1022
|
|
|
@@ -996,21 +1026,21 @@ module.exports = {
|
|
|
996
1026
|
|
|
997
1027
|
- `StartSop` button `large` false not working
|
|
998
1028
|
|
|
999
|
-
## 58 - 2023-06-14
|
|
1029
|
+
## 58.0.0 - 2023-06-14
|
|
1000
1030
|
|
|
1001
1031
|
### Changed
|
|
1002
1032
|
|
|
1003
1033
|
- Opening port with error `FAILED_DIFFERENT_SETTINGS` will now log a warning
|
|
1004
1034
|
not error
|
|
1005
1035
|
|
|
1006
|
-
## 57 - 2023-06-09
|
|
1036
|
+
## 57.0.0 - 2023-06-09
|
|
1007
1037
|
|
|
1008
1038
|
### Added
|
|
1009
1039
|
|
|
1010
1040
|
- AutoReconnect Mode `WaitForDevice.when` now support an new mode a custom
|
|
1011
1041
|
function for more flexibility
|
|
1012
1042
|
|
|
1013
|
-
## 56 - 2023-06-09
|
|
1043
|
+
## 56.0.0 - 2023-06-09
|
|
1014
1044
|
|
|
1015
1045
|
### Changed
|
|
1016
1046
|
|
|
@@ -1020,7 +1050,7 @@ module.exports = {
|
|
|
1020
1050
|
that only go through the API. If it still breaks something, feel free to
|
|
1021
1051
|
reach out to Marko. :-)
|
|
1022
1052
|
|
|
1023
|
-
## 55 - 2023-06-08
|
|
1053
|
+
## 55.0.0 - 2023-06-08
|
|
1024
1054
|
|
|
1025
1055
|
### Added
|
|
1026
1056
|
|
|
@@ -1036,14 +1066,14 @@ module.exports = {
|
|
|
1036
1066
|
- Replace all instances of `BootLoaderMode` to `dfuBootLoaderMode` in all
|
|
1037
1067
|
`WaitForDevice.when`
|
|
1038
1068
|
|
|
1039
|
-
## 54 - 2023-06-05
|
|
1069
|
+
## 54.0.0 - 2023-06-05
|
|
1040
1070
|
|
|
1041
1071
|
### Removed
|
|
1042
1072
|
|
|
1043
1073
|
- `react-dom` is no longer listed as an external package due to launcher
|
|
1044
1074
|
requiring it for bundling.
|
|
1045
1075
|
|
|
1046
|
-
## 53 - 2023-06-05
|
|
1076
|
+
## 53.0.0 - 2023-06-05
|
|
1047
1077
|
|
|
1048
1078
|
### Added
|
|
1049
1079
|
|
|
@@ -1051,7 +1081,7 @@ module.exports = {
|
|
|
1051
1081
|
- `StartStop` parameter `startText` now allows React.ReactNode.
|
|
1052
1082
|
- `StartStop` parameter `stopText` now allows React.ReactNode.
|
|
1053
1083
|
|
|
1054
|
-
## 52 - 2023-06-02
|
|
1084
|
+
## 52.0.0 - 2023-06-02
|
|
1055
1085
|
|
|
1056
1086
|
### Changed
|
|
1057
1087
|
|
|
@@ -1060,31 +1090,31 @@ module.exports = {
|
|
|
1060
1090
|
pass a third parameter to the action creator
|
|
1061
1091
|
`ErrorDialogActions.showDialog`.
|
|
1062
1092
|
|
|
1063
|
-
## 51 - 2023-05-31
|
|
1093
|
+
## 51.0.0 - 2023-05-31
|
|
1064
1094
|
|
|
1065
1095
|
### Added
|
|
1066
1096
|
|
|
1067
1097
|
- `Dropdown` parameter `label` now allows React.ReactNode.
|
|
1068
1098
|
|
|
1069
|
-
## 50 - 2023-05-30
|
|
1099
|
+
## 50.0.0 - 2023-05-30
|
|
1070
1100
|
|
|
1071
1101
|
### Fixed
|
|
1072
1102
|
|
|
1073
1103
|
- `dialog` text wrapping opts to keep words as whole of possible.
|
|
1074
1104
|
|
|
1075
|
-
## 49 - 2023-05-30
|
|
1105
|
+
## 49.0.0 - 2023-05-30
|
|
1076
1106
|
|
|
1077
1107
|
### Fixed
|
|
1078
1108
|
|
|
1079
1109
|
- `dialog` body text can now wrap and not overflow.
|
|
1080
1110
|
|
|
1081
|
-
## 48 - 2023-05-30
|
|
1111
|
+
## 48.0.0 - 2023-05-30
|
|
1082
1112
|
|
|
1083
1113
|
### Added
|
|
1084
1114
|
|
|
1085
1115
|
- `DropdownItem` parameter `label` now allows React.ReactNode.
|
|
1086
1116
|
|
|
1087
|
-
## 47 - 2023-05-22
|
|
1117
|
+
## 47.0.0 - 2023-05-22
|
|
1088
1118
|
|
|
1089
1119
|
### Added
|
|
1090
1120
|
|
|
@@ -1111,7 +1141,7 @@ module.exports = {
|
|
|
1111
1141
|
- Replace type `DeviceSetup` with `DeviceSetupConfig`
|
|
1112
1142
|
- Replace type `IDeviceSetup` with `DeviceSetup`
|
|
1113
1143
|
|
|
1114
|
-
## 46 - 2023-05-19
|
|
1144
|
+
## 46.0.0 - 2023-05-19
|
|
1115
1145
|
|
|
1116
1146
|
### Added
|
|
1117
1147
|
|
|
@@ -1149,7 +1179,7 @@ module.exports = {
|
|
|
1149
1179
|
this function using the dispatch function i.e
|
|
1150
1180
|
`dispatch(switchToApplicationMode(...`
|
|
1151
1181
|
|
|
1152
|
-
## 45 - 2023-05-09
|
|
1182
|
+
## 45.0.0 - 2023-05-09
|
|
1153
1183
|
|
|
1154
1184
|
### Fixed
|
|
1155
1185
|
|
|
@@ -1162,7 +1192,7 @@ module.exports = {
|
|
|
1162
1192
|
- StateSelector property `selectedItem` now allows {key: string , renderItem:
|
|
1163
1193
|
React.ReactElement} as content in addition to string
|
|
1164
1194
|
|
|
1165
|
-
## 44 - 2023-05-05
|
|
1195
|
+
## 44.0.0 - 2023-05-05
|
|
1166
1196
|
|
|
1167
1197
|
### Fixed
|
|
1168
1198
|
|
|
@@ -1173,14 +1203,14 @@ module.exports = {
|
|
|
1173
1203
|
|
|
1174
1204
|
- Persistent store now allows to send more options to the internal store.
|
|
1175
1205
|
|
|
1176
|
-
## 43 - 2023-05-05
|
|
1206
|
+
## 43.0.0 - 2023-05-05
|
|
1177
1207
|
|
|
1178
1208
|
### Changed
|
|
1179
1209
|
|
|
1180
1210
|
- Use the new property from launcher ipc to determine the app path. This is
|
|
1181
1211
|
used for logging when the application starts up.
|
|
1182
1212
|
|
|
1183
|
-
## 42 - 2023-05-04
|
|
1213
|
+
## 42.0.0 - 2023-05-04
|
|
1184
1214
|
|
|
1185
1215
|
### Changed
|
|
1186
1216
|
|
|
@@ -1189,7 +1219,7 @@ module.exports = {
|
|
|
1189
1219
|
compiler option. You may be using an old version of swc which does not
|
|
1190
1220
|
support the options used by ts-node.
|
|
1191
1221
|
|
|
1192
|
-
## 41 - 2023-05-03
|
|
1222
|
+
## 41.0.0 - 2023-05-03
|
|
1193
1223
|
|
|
1194
1224
|
### Changed
|
|
1195
1225
|
|
|
@@ -1202,7 +1232,7 @@ module.exports = {
|
|
|
1202
1232
|
- `ConflictingSettingsDialog` displayed wrong app name in the conflict
|
|
1203
1233
|
overview. Now it will only display Active- and Selected settings.
|
|
1204
1234
|
|
|
1205
|
-
## 40 - 2023-04-28
|
|
1235
|
+
## 40.0.0 - 2023-04-28
|
|
1206
1236
|
|
|
1207
1237
|
### Added
|
|
1208
1238
|
|
|
@@ -1210,7 +1240,7 @@ module.exports = {
|
|
|
1210
1240
|
pc-nrfconnect-shared is used, and the serial port may have been claimed by
|
|
1211
1241
|
another app.
|
|
1212
1242
|
|
|
1213
|
-
## 39 - 2023-04-28
|
|
1243
|
+
## 39.0.0 - 2023-04-28
|
|
1214
1244
|
|
|
1215
1245
|
### Added
|
|
1216
1246
|
|
|
@@ -1218,20 +1248,20 @@ module.exports = {
|
|
|
1218
1248
|
used to open the serial port.
|
|
1219
1249
|
- Extended SERIALPORT_CHANNEL with entry GET_OPTIONS.
|
|
1220
1250
|
|
|
1221
|
-
## 38 - 2023-04-28
|
|
1251
|
+
## 38.0.0 - 2023-04-28
|
|
1222
1252
|
|
|
1223
1253
|
### Fixed
|
|
1224
1254
|
|
|
1225
1255
|
- Dropdowns allow using their scrollbars by clicking and dragging.
|
|
1226
1256
|
- Dropdown scrollbars are styled correctly.
|
|
1227
1257
|
|
|
1228
|
-
## 37 - 2023-04-28
|
|
1258
|
+
## 37.0.0 - 2023-04-28
|
|
1229
1259
|
|
|
1230
1260
|
### Changed
|
|
1231
1261
|
|
|
1232
1262
|
- Updated `nrf-device-lib-js` to version 0.6.8.
|
|
1233
1263
|
|
|
1234
|
-
## 36 - 2023-04-26
|
|
1264
|
+
## 36.0.0 - 2023-04-26
|
|
1235
1265
|
|
|
1236
1266
|
### Added
|
|
1237
1267
|
|
|
@@ -1239,21 +1269,21 @@ module.exports = {
|
|
|
1239
1269
|
versions of shared.
|
|
1240
1270
|
- Property `id` to `Dropdown` component.
|
|
1241
1271
|
|
|
1242
|
-
## 35 - 2023-04-20
|
|
1272
|
+
## 35.0.0 - 2023-04-20
|
|
1243
1273
|
|
|
1244
1274
|
### Fixed
|
|
1245
1275
|
|
|
1246
1276
|
- "Warning: validateDOMNesting(...): `<div>` cannot appear as a descendant of
|
|
1247
1277
|
`<p>`."
|
|
1248
1278
|
|
|
1249
|
-
## 34 - 2023-04-19
|
|
1279
|
+
## 34.0.0 - 2023-04-19
|
|
1250
1280
|
|
|
1251
1281
|
### Fixed
|
|
1252
1282
|
|
|
1253
1283
|
- Made `InfoDialog` close when unfocusing again, which was removed during the
|
|
1254
1284
|
previous version.
|
|
1255
1285
|
|
|
1256
|
-
## 33 - 2023-04-19
|
|
1286
|
+
## 33.0.0 - 2023-04-19
|
|
1257
1287
|
|
|
1258
1288
|
### Added
|
|
1259
1289
|
|
|
@@ -1276,7 +1306,7 @@ module.exports = {
|
|
|
1276
1306
|
|
|
1277
1307
|
- Move the `showSpinner` property from `Dialog.Footer` to `Dialog.Header`.
|
|
1278
1308
|
|
|
1279
|
-
## 32 - 2023-04-14
|
|
1309
|
+
## 32.0.0 - 2023-04-14
|
|
1280
1310
|
|
|
1281
1311
|
### Added
|
|
1282
1312
|
|
|
@@ -1300,7 +1330,7 @@ module.exports = {
|
|
|
1300
1330
|
- `InlineInput` only calls `onChange` and `onChangeComplete` if value has
|
|
1301
1331
|
changed.
|
|
1302
1332
|
|
|
1303
|
-
## 31 - 2023-04-03
|
|
1333
|
+
## 31.0.0 - 2023-04-03
|
|
1304
1334
|
|
|
1305
1335
|
### Changed
|
|
1306
1336
|
|
|
@@ -1326,20 +1356,20 @@ module.exports = {
|
|
|
1326
1356
|
shared, otherwise not all needed peer dependencies are installed and you
|
|
1327
1357
|
need to provide them yourself.
|
|
1328
1358
|
|
|
1329
|
-
## 30 - 2023-03-30
|
|
1359
|
+
## 30.0.0 - 2023-03-30
|
|
1330
1360
|
|
|
1331
1361
|
### Changed
|
|
1332
1362
|
|
|
1333
1363
|
- Update `nrf-device-lib-js` to version 0.6.5.
|
|
1334
1364
|
|
|
1335
|
-
## 29 - 2023-03-29
|
|
1365
|
+
## 29.0.0 - 2023-03-29
|
|
1336
1366
|
|
|
1337
1367
|
### Added
|
|
1338
1368
|
|
|
1339
1369
|
- Dialog helpers (`InfoDialog`, `ErrorDialog`, `ConfirmationDialog`) all
|
|
1340
1370
|
expose the `className` property now.
|
|
1341
1371
|
|
|
1342
|
-
## 28 - 2023-03-28
|
|
1372
|
+
## 28.0.0 - 2023-03-28
|
|
1343
1373
|
|
|
1344
1374
|
### Added
|
|
1345
1375
|
|
|
@@ -1351,19 +1381,19 @@ module.exports = {
|
|
|
1351
1381
|
- Linux: Apps would crash when identifying certain devices if nrf-udev
|
|
1352
1382
|
installation was missing.
|
|
1353
1383
|
|
|
1354
|
-
## 27 - 2023-03-27
|
|
1384
|
+
## 27.0.0 - 2023-03-27
|
|
1355
1385
|
|
|
1356
1386
|
### Fixed
|
|
1357
1387
|
|
|
1358
1388
|
- Clear timeout state after timeout has elapsed.
|
|
1359
1389
|
|
|
1360
|
-
## 26 - 2023-03-24
|
|
1390
|
+
## 26.0.0 - 2023-03-24
|
|
1361
1391
|
|
|
1362
1392
|
### Fixed
|
|
1363
1393
|
|
|
1364
1394
|
- Retrieving persisted serialport options on windows would lead to crashes.
|
|
1365
1395
|
|
|
1366
|
-
## 25 - 2023-03-23
|
|
1396
|
+
## 25.0.0 - 2023-03-23
|
|
1367
1397
|
|
|
1368
1398
|
### Added
|
|
1369
1399
|
|
|
@@ -1385,7 +1415,7 @@ module.exports = {
|
|
|
1385
1415
|
DOM element.
|
|
1386
1416
|
- `Dropdown` will keep the list open if rerendered
|
|
1387
1417
|
|
|
1388
|
-
## 24 - 2023-03-20
|
|
1418
|
+
## 24.0.0 - 2023-03-20
|
|
1389
1419
|
|
|
1390
1420
|
### Added
|
|
1391
1421
|
|
|
@@ -1418,7 +1448,7 @@ module.exports = {
|
|
|
1418
1448
|
`persistedSerialPortOptions` property in the `Device` type (accessible from
|
|
1419
1449
|
the DeviceSelector callbacks or through `dispatch(selectedDevice())`)
|
|
1420
1450
|
|
|
1421
|
-
## 23 - 2023-03-16
|
|
1451
|
+
## 23.0.0 - 2023-03-16
|
|
1422
1452
|
|
|
1423
1453
|
### Added
|
|
1424
1454
|
|
|
@@ -1433,13 +1463,13 @@ module.exports = {
|
|
|
1433
1463
|
- `setWaitForDevice` with `undefined` can no longer be used to cancel timeouts
|
|
1434
1464
|
instead one should use `clearWaitForDevice`
|
|
1435
1465
|
|
|
1436
|
-
## 22 - 2023-03-15
|
|
1466
|
+
## 22.0.0 - 2023-03-15
|
|
1437
1467
|
|
|
1438
1468
|
### Changed
|
|
1439
1469
|
|
|
1440
1470
|
- Update `nrf-device-lib-js` to version 0.6.2.
|
|
1441
1471
|
|
|
1442
|
-
## 21 - 2023-03-15
|
|
1472
|
+
## 21.0.0 - 2023-03-15
|
|
1443
1473
|
|
|
1444
1474
|
### Added
|
|
1445
1475
|
|
|
@@ -1449,14 +1479,14 @@ module.exports = {
|
|
|
1449
1479
|
|
|
1450
1480
|
- `ErrorBoundary` `Button` are now large.
|
|
1451
1481
|
|
|
1452
|
-
## 20 - 2023-03-14
|
|
1482
|
+
## 20.0.0 - 2023-03-14
|
|
1453
1483
|
|
|
1454
1484
|
### Added
|
|
1455
1485
|
|
|
1456
1486
|
- Steppers component which allows to add states for success, failure and
|
|
1457
1487
|
warning.
|
|
1458
1488
|
|
|
1459
|
-
## 19 - 2023-03-13
|
|
1489
|
+
## 19.0.0 - 2023-03-13
|
|
1460
1490
|
|
|
1461
1491
|
### Added
|
|
1462
1492
|
|
|
@@ -1466,7 +1496,7 @@ module.exports = {
|
|
|
1466
1496
|
|
|
1467
1497
|
- Update `nrf-device-lib-js` to version 0.6.0.
|
|
1468
1498
|
|
|
1469
|
-
## 18 - 2023-03-09
|
|
1499
|
+
## 18.0.0 - 2023-03-09
|
|
1470
1500
|
|
|
1471
1501
|
### Added
|
|
1472
1502
|
|
|
@@ -1491,20 +1521,20 @@ module.exports = {
|
|
|
1491
1521
|
- `NavMenuItem` use the shared `Button` component
|
|
1492
1522
|
- `FeedbackPane` use the shared `Button` component
|
|
1493
1523
|
|
|
1494
|
-
## 17 - 2023-03-08
|
|
1524
|
+
## 17.0.0 - 2023-03-08
|
|
1495
1525
|
|
|
1496
1526
|
### Added
|
|
1497
1527
|
|
|
1498
1528
|
- Allow apps to see if auto-reconnect is enabled.
|
|
1499
1529
|
|
|
1500
|
-
## 16 - 2023-03-03
|
|
1530
|
+
## 16.0.0 - 2023-03-03
|
|
1501
1531
|
|
|
1502
1532
|
### Fixed
|
|
1503
1533
|
|
|
1504
1534
|
- Selecting a device will no longer stop and start hotplug events
|
|
1505
1535
|
- Long Serial number and device names will now render correctly
|
|
1506
1536
|
|
|
1507
|
-
## 15 - 2023-03-03
|
|
1537
|
+
## 15.0.0 - 2023-03-03
|
|
1508
1538
|
|
|
1509
1539
|
### Added
|
|
1510
1540
|
|
|
@@ -1531,7 +1561,7 @@ module.exports = {
|
|
|
1531
1561
|
do not need to be awaited.
|
|
1532
1562
|
- Update `nrf-device-lib-js` to version 0.5.0.
|
|
1533
1563
|
|
|
1534
|
-
## 14 - 2023-02-28
|
|
1564
|
+
## 14.0.0 - 2023-02-28
|
|
1535
1565
|
|
|
1536
1566
|
### Fixed
|
|
1537
1567
|
|
|
@@ -1539,13 +1569,13 @@ module.exports = {
|
|
|
1539
1569
|
- `MasonryLayout` Hidden items can become visible and not remain hidden for
|
|
1540
1570
|
the full app life cycle.
|
|
1541
1571
|
|
|
1542
|
-
## 13 - 2023-02-24
|
|
1572
|
+
## 13.0.0 - 2023-02-24
|
|
1543
1573
|
|
|
1544
1574
|
### Fixed
|
|
1545
1575
|
|
|
1546
1576
|
- Wrongly import of `electron/renderer`, now changed to `electron`.
|
|
1547
1577
|
|
|
1548
|
-
## 12 - 2023-02-23
|
|
1578
|
+
## 12.0.0 - 2023-02-23
|
|
1549
1579
|
|
|
1550
1580
|
### Added
|
|
1551
1581
|
|
|
@@ -1560,26 +1590,26 @@ module.exports = {
|
|
|
1560
1590
|
- Improved `MasonryLayout` algorithm
|
|
1561
1591
|
- `MasonryLayout` Items with no height are hidden
|
|
1562
1592
|
|
|
1563
|
-
## 11 - 2023-02-22
|
|
1593
|
+
## 11.0.0 - 2023-02-22
|
|
1564
1594
|
|
|
1565
1595
|
### Changed
|
|
1566
1596
|
|
|
1567
1597
|
- `shasum` property on apps became optional.
|
|
1568
1598
|
|
|
1569
|
-
## 10 - 2023-02-16
|
|
1599
|
+
## 10.0.0 - 2023-02-16
|
|
1570
1600
|
|
|
1571
1601
|
### Fixed
|
|
1572
1602
|
|
|
1573
1603
|
- Masonry layout Max height generation algorithm
|
|
1574
1604
|
- Regression with dropdown items on hover effect
|
|
1575
1605
|
|
|
1576
|
-
## 9 - 2023-02-16
|
|
1606
|
+
## 9.0.0 - 2023-02-16
|
|
1577
1607
|
|
|
1578
1608
|
### Added
|
|
1579
1609
|
|
|
1580
1610
|
- Masonry Layout
|
|
1581
1611
|
|
|
1582
|
-
## 8 - 2023-02-15
|
|
1612
|
+
## 8.0.0 - 2023-02-15
|
|
1583
1613
|
|
|
1584
1614
|
### Changed
|
|
1585
1615
|
|
|
@@ -1587,7 +1617,7 @@ module.exports = {
|
|
|
1587
1617
|
show some more objects, e.g. Maps and Sets.
|
|
1588
1618
|
- Updated `StartStopButton` to be a controlled component
|
|
1589
1619
|
|
|
1590
|
-
## 7 - 2023-02-13
|
|
1620
|
+
## 7.0.0 - 2023-02-13
|
|
1591
1621
|
|
|
1592
1622
|
### Changed
|
|
1593
1623
|
|