@nordicsemiconductor/pc-nrfconnect-shared 132.0.0 → 134.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 +156 -126
- package/coverage/cobertura-coverage.xml +347 -345
- package/nrfutil/device/common.ts +2 -2
- package/nrfutil/sandbox.ts +2 -1
- package/package.json +1 -1
- package/scripts/prepare-shared-release.ts +4 -3
- package/src/Dropdown/Dropdown.tsx +12 -10
- package/src/utils/usageDataMain.ts +2 -2
- package/typings/generated/nrfutil/device/common.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandbox.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/Changelog.md
CHANGED
|
@@ -7,7 +7,37 @@ 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
|
+
## 134.0.0 - 2023-11-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `defaultButtonLabel` on `Dropdown` component, for cases where it is useful
|
|
15
|
+
to have a default item that should not be selected after a different item
|
|
16
|
+
has been selected.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- The `Dropdown` component is now generic, and will infer the `DropdownItem`
|
|
21
|
+
type, from the its properties. Meaning that if you pass in a list of
|
|
22
|
+
`DropdownItem<number>` to items, then the `onSelect` item will be of type
|
|
23
|
+
`DropdownItem<number>`.
|
|
24
|
+
- Version numbers in this changelog are changed from the shorter variant like
|
|
25
|
+
`133` to the complete version number like `133.0.0`.
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- Telemtry: Metadata was not removed on request, when being in the main
|
|
30
|
+
process. This is not critical because this code isn't yet executed in real
|
|
31
|
+
life.
|
|
32
|
+
|
|
33
|
+
## 133.0.0 - 2023-11-15
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- Nrfutil `sandbox` default logging level to 'off' in production and 'error'
|
|
38
|
+
in development environments
|
|
39
|
+
|
|
40
|
+
## 132.0.0 - 2023-11-14
|
|
11
41
|
|
|
12
42
|
### Added
|
|
13
43
|
|
|
@@ -18,7 +48,7 @@ every new version is a new major version.
|
|
|
18
48
|
|
|
19
49
|
- `deviceInfo` is update in redux on device select
|
|
20
50
|
|
|
21
|
-
## 131 - 2023-11-14
|
|
51
|
+
## 131.0.0 - 2023-11-14
|
|
22
52
|
|
|
23
53
|
### Changed
|
|
24
54
|
|
|
@@ -31,7 +61,7 @@ every new version is a new major version.
|
|
|
31
61
|
|
|
32
62
|
- Removed warning from `applicationinsights` in the console on start.
|
|
33
63
|
|
|
34
|
-
## 130 - 2023-11-14
|
|
64
|
+
## 130.0.0 - 2023-11-14
|
|
35
65
|
|
|
36
66
|
### Fixed
|
|
37
67
|
|
|
@@ -42,7 +72,7 @@ every new version is a new major version.
|
|
|
42
72
|
onSelectedDevice. This is to ensure the operations to the device are
|
|
43
73
|
completed before the app possibly does any more action on it
|
|
44
74
|
|
|
45
|
-
## 129 - 2023-11-13
|
|
75
|
+
## 129.0.0 - 2023-11-13
|
|
46
76
|
|
|
47
77
|
### Added
|
|
48
78
|
|
|
@@ -58,39 +88,39 @@ every new version is a new major version.
|
|
|
58
88
|
device as a dependency in `package.json`
|
|
59
89
|
- `App` no longer logs nrfutil device version.
|
|
60
90
|
|
|
61
|
-
## 128 - 2023-11-08
|
|
91
|
+
## 128.0.0 - 2023-11-08
|
|
62
92
|
|
|
63
93
|
### Fixed
|
|
64
94
|
|
|
65
95
|
- `NumberInputSliderWithUnit` component did not disable all sub-components
|
|
66
96
|
- `NumberInputSliderWithUnit` did not update when external value changed
|
|
67
97
|
|
|
68
|
-
## 127 - 2023-11-08
|
|
98
|
+
## 127.0.0 - 2023-11-08
|
|
69
99
|
|
|
70
100
|
### Fixed
|
|
71
101
|
|
|
72
102
|
- version 126 was released as a prerelease on NPM
|
|
73
103
|
|
|
74
|
-
## 126 - 2023-11-08
|
|
104
|
+
## 126.0.0 - 2023-11-08
|
|
75
105
|
|
|
76
106
|
### Fixed
|
|
77
107
|
|
|
78
108
|
- `className` property in `FileLink` component is now optional
|
|
79
109
|
|
|
80
|
-
## 125 - 2023-11-08
|
|
110
|
+
## 125.0.0 - 2023-11-08
|
|
81
111
|
|
|
82
112
|
### Changed
|
|
83
113
|
|
|
84
114
|
- `className` property in `FileLink` component is now optional
|
|
85
115
|
|
|
86
|
-
## 124 - 2023-11-08
|
|
116
|
+
## 124.0.0 - 2023-11-08
|
|
87
117
|
|
|
88
118
|
### Added
|
|
89
119
|
|
|
90
120
|
- `className` property to `FileLink` component
|
|
91
121
|
- `FileLink` will add ellipsis when text overflows
|
|
92
122
|
|
|
93
|
-
## 123 - 2023-11-07
|
|
123
|
+
## 123.0.0 - 2023-11-07
|
|
94
124
|
|
|
95
125
|
### Added
|
|
96
126
|
|
|
@@ -141,7 +171,7 @@ usageData.enableTelemetry();
|
|
|
141
171
|
render(<App panes={[]} />);
|
|
142
172
|
```
|
|
143
173
|
|
|
144
|
-
## 122 - 2023-11-02
|
|
174
|
+
## 122.0.0 - 2023-11-02
|
|
145
175
|
|
|
146
176
|
### Changed
|
|
147
177
|
|
|
@@ -175,7 +205,7 @@ render(<App panes={[]} />);
|
|
|
175
205
|
- Change `nrfConnectForDesktop.nrfutil.device` to 2.0.0.
|
|
176
206
|
- Update all device properties to match the changes above.
|
|
177
207
|
|
|
178
|
-
## 121 - 2023-10-24
|
|
208
|
+
## 121.0.0 - 2023-10-24
|
|
179
209
|
|
|
180
210
|
### Added
|
|
181
211
|
|
|
@@ -189,7 +219,7 @@ render(<App panes={[]} />);
|
|
|
189
219
|
waiting for device
|
|
190
220
|
- Device setup dialog is closed immediately pressing no to programming it
|
|
191
221
|
|
|
192
|
-
## 120 - 2023-10-13
|
|
222
|
+
## 120.0.0 - 2023-10-13
|
|
193
223
|
|
|
194
224
|
### Fixed
|
|
195
225
|
|
|
@@ -198,13 +228,13 @@ render(<App panes={[]} />);
|
|
|
198
228
|
into the `package.json`, which didn't exist any longer in the launcher,
|
|
199
229
|
because it is only supplied during build time by apps now.
|
|
200
230
|
|
|
201
|
-
## 119 - 2023-10-13
|
|
231
|
+
## 119.0.0 - 2023-10-13
|
|
202
232
|
|
|
203
233
|
### Changed
|
|
204
234
|
|
|
205
235
|
- Remove default 3000ms timeout from `nrfutil device list`
|
|
206
236
|
|
|
207
|
-
## 118 - 2023-10-13
|
|
237
|
+
## 118.0.0 - 2023-10-13
|
|
208
238
|
|
|
209
239
|
### Added
|
|
210
240
|
|
|
@@ -220,13 +250,13 @@ render(<App panes={[]} />);
|
|
|
220
250
|
- `nrfConnectForDesktop.html` is not optional anymore, it must always be
|
|
221
251
|
specified in `package.json`.
|
|
222
252
|
|
|
223
|
-
## 117 - 2023-10-04
|
|
253
|
+
## 117.0.0 - 2023-10-04
|
|
224
254
|
|
|
225
255
|
### Fixed
|
|
226
256
|
|
|
227
257
|
- `nrfutil device program` did now throw error when files buffers where used
|
|
228
258
|
|
|
229
|
-
## 116 - 2023-10-03
|
|
259
|
+
## 116.0.0 - 2023-10-03
|
|
230
260
|
|
|
231
261
|
### Fixed
|
|
232
262
|
|
|
@@ -238,26 +268,26 @@ render(<App panes={[]} />);
|
|
|
238
268
|
|
|
239
269
|
- Read the `package.json` already during compile time, but only for apps.
|
|
240
270
|
|
|
241
|
-
## 115 - 2023-09-28
|
|
271
|
+
## 115.0.0 - 2023-09-28
|
|
242
272
|
|
|
243
273
|
### Fixed
|
|
244
274
|
|
|
245
275
|
- `MasonryLayout` content disappeared if space is less then min width
|
|
246
276
|
- `Feedback` cursor is missing when no text is typed in.
|
|
247
277
|
|
|
248
|
-
## 114 - 2023-09-26
|
|
278
|
+
## 114.0.0 - 2023-09-26
|
|
249
279
|
|
|
250
280
|
### Fixed
|
|
251
281
|
|
|
252
282
|
- `MasonryLayout` excess scrolling white space.
|
|
253
283
|
|
|
254
|
-
## 113 - 2023-09-25
|
|
284
|
+
## 113.0.0 - 2023-09-25
|
|
255
285
|
|
|
256
286
|
### Fixed
|
|
257
287
|
|
|
258
288
|
- The buttons in a dialog footer had too little space between them.
|
|
259
289
|
|
|
260
|
-
## 112 - 2023-09-25
|
|
290
|
+
## 112.0.0 - 2023-09-25
|
|
261
291
|
|
|
262
292
|
### Fixed
|
|
263
293
|
|
|
@@ -266,7 +296,7 @@ render(<App panes={[]} />);
|
|
|
266
296
|
Sometimes TypeScript gets confused from which one to choose the types. Using
|
|
267
297
|
explicitly the version from the browser fixes this.
|
|
268
298
|
|
|
269
|
-
## 111 - 2023-09-22
|
|
299
|
+
## 111.0.0 - 2023-09-22
|
|
270
300
|
|
|
271
301
|
### Added
|
|
272
302
|
|
|
@@ -292,13 +322,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
292
322
|
}
|
|
293
323
|
```
|
|
294
324
|
|
|
295
|
-
## 110 - 2023-09-22
|
|
325
|
+
## 110.0.0 - 2023-09-22
|
|
296
326
|
|
|
297
327
|
### Fixed
|
|
298
328
|
|
|
299
329
|
- `MasonryLayout` dropdown component forced cards on different row to shift.
|
|
300
330
|
|
|
301
|
-
## 109 - 2023-09-21
|
|
331
|
+
## 109.0.0 - 2023-09-21
|
|
302
332
|
|
|
303
333
|
### Changed
|
|
304
334
|
|
|
@@ -308,26 +338,26 @@ declare module '!!@svgr!*.svg' {
|
|
|
308
338
|
|
|
309
339
|
- `Overlay` component.
|
|
310
340
|
|
|
311
|
-
## 108 - 2023-09-15
|
|
341
|
+
## 108.0.0 - 2023-09-15
|
|
312
342
|
|
|
313
343
|
### Fixed
|
|
314
344
|
|
|
315
345
|
- `MasonryLayout` Reacts to dropdown component making its height bigger.
|
|
316
346
|
|
|
317
|
-
## 107 - 2023-09-13
|
|
347
|
+
## 107.0.0 - 2023-09-13
|
|
318
348
|
|
|
319
349
|
### Fixed
|
|
320
350
|
|
|
321
351
|
- Fixed get `getAppDir()` path.
|
|
322
352
|
|
|
323
|
-
## 106 - 2023-09-13
|
|
353
|
+
## 106.0.0 - 2023-09-13
|
|
324
354
|
|
|
325
355
|
### Added
|
|
326
356
|
|
|
327
357
|
- `shellParser` utility
|
|
328
358
|
- `StartStopButton` now also takes in optional `title` property
|
|
329
359
|
|
|
330
|
-
## 105 - 2023-09-11
|
|
360
|
+
## 105.0.0 - 2023-09-11
|
|
331
361
|
|
|
332
362
|
### Added
|
|
333
363
|
|
|
@@ -337,7 +367,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
337
367
|
|
|
338
368
|
- Log device list errors.
|
|
339
369
|
|
|
340
|
-
## 104 - 2023-09-08
|
|
370
|
+
## 104.0.0 - 2023-09-08
|
|
341
371
|
|
|
342
372
|
### Changed
|
|
343
373
|
|
|
@@ -349,7 +379,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
349
379
|
- Batch programming will now cleanup temporary files
|
|
350
380
|
- Device list will use the passed devices traits
|
|
351
381
|
|
|
352
|
-
## 103 - 2023-09-06
|
|
382
|
+
## 103.0.0 - 2023-09-06
|
|
353
383
|
|
|
354
384
|
### Added
|
|
355
385
|
|
|
@@ -365,13 +395,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
365
395
|
- Update `nrfConnectForDesktop.nrfutil.device` to version 1.4.2 in
|
|
366
396
|
`package.json`
|
|
367
397
|
|
|
368
|
-
## 102 - 2023-09-05
|
|
398
|
+
## 102.0.0 - 2023-09-05
|
|
369
399
|
|
|
370
400
|
### Fixed
|
|
371
401
|
|
|
372
402
|
- Trace logging did not work in production
|
|
373
403
|
|
|
374
|
-
## 101 - 2023-09-05
|
|
404
|
+
## 101.0.0 - 2023-09-05
|
|
375
405
|
|
|
376
406
|
### Fixed
|
|
377
407
|
|
|
@@ -381,14 +411,14 @@ declare module '!!@svgr!*.svg' {
|
|
|
381
411
|
|
|
382
412
|
- `link` variant type from of `Button` component.
|
|
383
413
|
|
|
384
|
-
## 100 - 2023-09-05
|
|
414
|
+
## 100.0.0 - 2023-09-05
|
|
385
415
|
|
|
386
416
|
### Fixed
|
|
387
417
|
|
|
388
418
|
- Unable to use nrfutil device in production due to issue with nrfutil device
|
|
389
419
|
logging when set to off.
|
|
390
420
|
|
|
391
|
-
## 99 - 2023-09-04
|
|
421
|
+
## 99.0.0 - 2023-09-04
|
|
392
422
|
|
|
393
423
|
### Added
|
|
394
424
|
|
|
@@ -410,7 +440,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
410
440
|
|
|
411
441
|
- Logging for nrf-probe-lib version
|
|
412
442
|
|
|
413
|
-
## 98 - 2023-08-30
|
|
443
|
+
## 98.0.0 - 2023-08-30
|
|
414
444
|
|
|
415
445
|
### Added
|
|
416
446
|
|
|
@@ -438,7 +468,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
438
468
|
- Replace any occurrence of `link` variant `Button`s with `ExternalLink` or
|
|
439
469
|
`FileLink`.
|
|
440
470
|
|
|
441
|
-
## 97 - 2023-08-29
|
|
471
|
+
## 97.0.0 - 2023-08-29
|
|
442
472
|
|
|
443
473
|
### Added
|
|
444
474
|
|
|
@@ -451,7 +481,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
451
481
|
- `PCA10153`
|
|
452
482
|
- `PCA20049`
|
|
453
483
|
|
|
454
|
-
## 96 - 2023-08-25
|
|
484
|
+
## 96.0.0 - 2023-08-25
|
|
455
485
|
|
|
456
486
|
### Added
|
|
457
487
|
|
|
@@ -461,20 +491,20 @@ declare module '!!@svgr!*.svg' {
|
|
|
461
491
|
|
|
462
492
|
- Nrfutil device list `stop` callback is now an optional parameter
|
|
463
493
|
|
|
464
|
-
## 95 - 2023-08-25
|
|
494
|
+
## 95.0.0 - 2023-08-25
|
|
465
495
|
|
|
466
496
|
### Fixed
|
|
467
497
|
|
|
468
498
|
- Worked around an issue where the esbuild currently has issues with
|
|
469
499
|
.css-files that are named the same as their components.
|
|
470
500
|
|
|
471
|
-
## 94 - 2023-08-25
|
|
501
|
+
## 94.0.0 - 2023-08-25
|
|
472
502
|
|
|
473
503
|
### Changed
|
|
474
504
|
|
|
475
505
|
- Updated react to v18
|
|
476
506
|
|
|
477
|
-
## 93 - 2023-08-25
|
|
507
|
+
## 93.0.0 - 2023-08-25
|
|
478
508
|
|
|
479
509
|
### Added
|
|
480
510
|
|
|
@@ -493,13 +523,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
493
523
|
- Any usage of Nrfutil property `progressPercentage` need to be renamed to
|
|
494
524
|
`stepProgressPercentage`
|
|
495
525
|
|
|
496
|
-
## 92 - 2023-08-24
|
|
526
|
+
## 92.0.0 - 2023-08-24
|
|
497
527
|
|
|
498
528
|
### Added
|
|
499
529
|
|
|
500
530
|
- Add functionality to send metrics and traces to telemetry.
|
|
501
531
|
|
|
502
|
-
## 91 - 2023-08-23
|
|
532
|
+
## 91.0.0 - 2023-08-23
|
|
503
533
|
|
|
504
534
|
### Changed
|
|
505
535
|
|
|
@@ -525,7 +555,7 @@ declare module '!!@svgr!*.svg' {
|
|
|
525
555
|
- Peer dependency and any remaining support for
|
|
526
556
|
`@nordicsemiconductor/nrf-device-lib-js`.
|
|
527
557
|
|
|
528
|
-
## 90 - 2023-08-21
|
|
558
|
+
## 90.0.0 - 2023-08-21
|
|
529
559
|
|
|
530
560
|
### Changed
|
|
531
561
|
|
|
@@ -553,13 +583,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
553
583
|
|
|
554
584
|
- Fixed get `getAppData()` path.
|
|
555
585
|
|
|
556
|
-
## 89 - 2023-08-17
|
|
586
|
+
## 89.0.0 - 2023-08-17
|
|
557
587
|
|
|
558
588
|
### Changed
|
|
559
589
|
|
|
560
590
|
- Updated nrf-device-lib-js to version 0.7.1.
|
|
561
591
|
|
|
562
|
-
## 88 - 2023-08-17
|
|
592
|
+
## 88.0.0 - 2023-08-17
|
|
563
593
|
|
|
564
594
|
### Changed
|
|
565
595
|
|
|
@@ -570,13 +600,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
570
600
|
|
|
571
601
|
- Change `html` to `nrfConnectForDesktop.html` in the app package json.
|
|
572
602
|
|
|
573
|
-
## 87 - 2023-08-14
|
|
603
|
+
## 87.0.0 - 2023-08-14
|
|
574
604
|
|
|
575
605
|
### Fixed
|
|
576
606
|
|
|
577
607
|
- Spinner in `Dialog` components was not inlined.
|
|
578
608
|
|
|
579
|
-
## 86 - 2023-08-14
|
|
609
|
+
## 86.0.0 - 2023-08-14
|
|
580
610
|
|
|
581
611
|
### Changed
|
|
582
612
|
|
|
@@ -587,13 +617,13 @@ declare module '!!@svgr!*.svg' {
|
|
|
587
617
|
|
|
588
618
|
- `Spinner` now has old padding which was mistakenly removed.
|
|
589
619
|
|
|
590
|
-
## 85 - 2023-08-14
|
|
620
|
+
## 85.0.0 - 2023-08-14
|
|
591
621
|
|
|
592
622
|
### Fixed
|
|
593
623
|
|
|
594
624
|
- `getDisplayedDeviceName` could return an empty string.
|
|
595
625
|
|
|
596
|
-
## 84 - 2023-08-14
|
|
626
|
+
## 84.0.0 - 2023-08-14
|
|
597
627
|
|
|
598
628
|
### Changed
|
|
599
629
|
|
|
@@ -629,19 +659,19 @@ import { App, render } from '@nordicsemiconductor/pc-nrfconnect-shared';
|
|
|
629
659
|
render(<App />);
|
|
630
660
|
```
|
|
631
661
|
|
|
632
|
-
## 83 - 2023-08-11
|
|
662
|
+
## 83.0.0 - 2023-08-11
|
|
633
663
|
|
|
634
664
|
### Added
|
|
635
665
|
|
|
636
666
|
- `Spinner` component.
|
|
637
667
|
|
|
638
|
-
## 82 - 2023-08-09
|
|
668
|
+
## 82.0.0 - 2023-08-09
|
|
639
669
|
|
|
640
670
|
### Fixed
|
|
641
671
|
|
|
642
672
|
- Jest tests were broken due to missing config changes.
|
|
643
673
|
|
|
644
|
-
## 81 - 2023-08-09
|
|
674
|
+
## 81.0.0 - 2023-08-09
|
|
645
675
|
|
|
646
676
|
### Changed
|
|
647
677
|
|
|
@@ -683,19 +713,19 @@ The package.json can be changed as follows:
|
|
|
683
713
|
}
|
|
684
714
|
```
|
|
685
715
|
|
|
686
|
-
## 80 - 2023-08-07
|
|
716
|
+
## 80.0.0 - 2023-08-07
|
|
687
717
|
|
|
688
718
|
### Changed
|
|
689
719
|
|
|
690
720
|
- Linux: Check for and log `nrf-udev` install on startup.
|
|
691
721
|
|
|
692
|
-
## 79 - 2023-08-04
|
|
722
|
+
## 79.0.0 - 2023-08-04
|
|
693
723
|
|
|
694
724
|
### Added
|
|
695
725
|
|
|
696
726
|
- Export app utility functions (like `isInstalled`) and types.
|
|
697
727
|
|
|
698
|
-
## 78 - 2023-08-03
|
|
728
|
+
## 78.0.0 - 2023-08-03
|
|
699
729
|
|
|
700
730
|
### Changed
|
|
701
731
|
|
|
@@ -707,7 +737,7 @@ The package.json can be changed as follows:
|
|
|
707
737
|
- `deviceInfo` can now be used in applications that don't make use of the
|
|
708
738
|
shared redux store.
|
|
709
739
|
|
|
710
|
-
## 77 - 2023-08-01
|
|
740
|
+
## 77.0.0 - 2023-08-01
|
|
711
741
|
|
|
712
742
|
### Added
|
|
713
743
|
|
|
@@ -737,13 +767,13 @@ The package.json can be changed as follows:
|
|
|
737
767
|
appropriate functions.
|
|
738
768
|
- Replace invocations of `openAppWindow` with `openWindow.openApp`.
|
|
739
769
|
|
|
740
|
-
## 76 - 2023-07-28
|
|
770
|
+
## 76.0.0 - 2023-07-28
|
|
741
771
|
|
|
742
772
|
### Changed
|
|
743
773
|
|
|
744
774
|
- Turn on tree-shaking for tailwind classes during a development build.
|
|
745
775
|
|
|
746
|
-
## 75 - 2023-07-26
|
|
776
|
+
## 75.0.0 - 2023-07-26
|
|
747
777
|
|
|
748
778
|
### Added
|
|
749
779
|
|
|
@@ -770,14 +800,14 @@ The package.json can be changed as follows:
|
|
|
770
800
|
|
|
771
801
|
- `DisplayConflictingSettings` spacing and minor UI inconsistencies
|
|
772
802
|
|
|
773
|
-
## 74 - 2023-07-18
|
|
803
|
+
## 74.0.0 - 2023-07-18
|
|
774
804
|
|
|
775
805
|
### Fixed
|
|
776
806
|
|
|
777
807
|
- `ConflictingSettingsDialog` used stale/old `active` serial settings
|
|
778
808
|
information.
|
|
779
809
|
|
|
780
|
-
## 73 - 2023-07-14
|
|
810
|
+
## 73.0.0 - 2023-07-14
|
|
781
811
|
|
|
782
812
|
### Removed
|
|
783
813
|
|
|
@@ -787,26 +817,26 @@ The package.json can be changed as follows:
|
|
|
787
817
|
|
|
788
818
|
- `custom` variant `Button`s have to be replaced with `button` elements.
|
|
789
819
|
|
|
790
|
-
## 72 - 2023-07-13
|
|
820
|
+
## 72.0.0 - 2023-07-13
|
|
791
821
|
|
|
792
822
|
### Added
|
|
793
823
|
|
|
794
824
|
- export `persistNickname` and `getPersistedNickname`.
|
|
795
825
|
|
|
796
|
-
## 71 - 2023-07-11
|
|
826
|
+
## 71.0.0 - 2023-07-11
|
|
797
827
|
|
|
798
828
|
### Fixed
|
|
799
829
|
|
|
800
830
|
- `SwitchToApplicationMode` does not call on success when device is already in
|
|
801
831
|
application mode
|
|
802
832
|
|
|
803
|
-
## 70 - 2023-07-07
|
|
833
|
+
## 70.0.0 - 2023-07-07
|
|
804
834
|
|
|
805
835
|
### Fixed
|
|
806
836
|
|
|
807
837
|
- `Dropdown` UI broken due to lack of `tw-preflight` class
|
|
808
838
|
|
|
809
|
-
## 69 - 2023-07-07
|
|
839
|
+
## 69.0.0 - 2023-07-07
|
|
810
840
|
|
|
811
841
|
### Added
|
|
812
842
|
|
|
@@ -829,7 +859,7 @@ The package.json can be changed as follows:
|
|
|
829
859
|
- Device setup fails report sdfu different FW version
|
|
830
860
|
- Device setup does not show the choices radio boxes
|
|
831
861
|
|
|
832
|
-
## 68 - 2023-07-05
|
|
862
|
+
## 68.0.0 - 2023-07-05
|
|
833
863
|
|
|
834
864
|
### Added
|
|
835
865
|
|
|
@@ -841,7 +871,7 @@ The package.json can be changed as follows:
|
|
|
841
871
|
resulted in `util.promisify` is not a function
|
|
842
872
|
- Button lost x-padding with the addition of tailwind
|
|
843
873
|
|
|
844
|
-
## 67 - 2023-07-04
|
|
874
|
+
## 67.0.0 - 2023-07-04
|
|
845
875
|
|
|
846
876
|
### Added
|
|
847
877
|
|
|
@@ -872,7 +902,7 @@ module.exports = {
|
|
|
872
902
|
};
|
|
873
903
|
```
|
|
874
904
|
|
|
875
|
-
## 66 - 2023-07-03
|
|
905
|
+
## 66.0.0 - 2023-07-03
|
|
876
906
|
|
|
877
907
|
### Fixed
|
|
878
908
|
|
|
@@ -881,7 +911,7 @@ module.exports = {
|
|
|
881
911
|
- Margin on feedback pane
|
|
882
912
|
- Improve `NavBar` layout when there are a lot of tabs
|
|
883
913
|
|
|
884
|
-
## 65 - 2023-07-03
|
|
914
|
+
## 65.0.0 - 2023-07-03
|
|
885
915
|
|
|
886
916
|
### Changed
|
|
887
917
|
|
|
@@ -892,7 +922,7 @@ module.exports = {
|
|
|
892
922
|
- If 'AppThunk' is used with return type generic, add AppLayout (RootState)
|
|
893
923
|
'AppThunk<AppLayout, ReturnType>'
|
|
894
924
|
|
|
895
|
-
## 64 - 2023-07-03
|
|
925
|
+
## 64.0.0 - 2023-07-03
|
|
896
926
|
|
|
897
927
|
### Added
|
|
898
928
|
|
|
@@ -903,7 +933,7 @@ module.exports = {
|
|
|
903
933
|
|
|
904
934
|
- Replace Google Analytics with Application Insights.
|
|
905
935
|
|
|
906
|
-
## 63 - 2023-06-27
|
|
936
|
+
## 63.0.0 - 2023-06-27
|
|
907
937
|
|
|
908
938
|
### Added
|
|
909
939
|
|
|
@@ -915,7 +945,7 @@ module.exports = {
|
|
|
915
945
|
- Flash Messages: slide-in effect duration reduced to 300ms.
|
|
916
946
|
- Flash Messages: loader effect ends before slide-out effect begins.
|
|
917
947
|
|
|
918
|
-
## 62 - 2023-06-26
|
|
948
|
+
## 62.0.0 - 2023-06-26
|
|
919
949
|
|
|
920
950
|
### Added
|
|
921
951
|
|
|
@@ -926,7 +956,7 @@ module.exports = {
|
|
|
926
956
|
- Reduced time for CopiedFlashMessage, from 12s to 3s.
|
|
927
957
|
- Faster slide-in effect for Flash messages.
|
|
928
958
|
|
|
929
|
-
## 61 - 2023-06-23
|
|
959
|
+
## 61.0.0 - 2023-06-23
|
|
930
960
|
|
|
931
961
|
### Added
|
|
932
962
|
|
|
@@ -947,7 +977,7 @@ module.exports = {
|
|
|
947
977
|
- If you want to include the `FeedbackPane` in your app, provide the
|
|
948
978
|
`feedback` property to the `App` component.
|
|
949
979
|
|
|
950
|
-
## 60 - 2023-06-21
|
|
980
|
+
## 60.0.0 - 2023-06-21
|
|
951
981
|
|
|
952
982
|
### Added
|
|
953
983
|
|
|
@@ -979,7 +1009,7 @@ module.exports = {
|
|
|
979
1009
|
- Replace all instances of `LegacyPane` with `Pane` in the `panes` property of
|
|
980
1010
|
`App`.
|
|
981
1011
|
|
|
982
|
-
## 59 - 2023-06-16
|
|
1012
|
+
## 59.0.0 - 2023-06-16
|
|
983
1013
|
|
|
984
1014
|
### Added
|
|
985
1015
|
|
|
@@ -989,21 +1019,21 @@ module.exports = {
|
|
|
989
1019
|
|
|
990
1020
|
- `StartSop` button `large` false not working
|
|
991
1021
|
|
|
992
|
-
## 58 - 2023-06-14
|
|
1022
|
+
## 58.0.0 - 2023-06-14
|
|
993
1023
|
|
|
994
1024
|
### Changed
|
|
995
1025
|
|
|
996
1026
|
- Opening port with error `FAILED_DIFFERENT_SETTINGS` will now log a warning
|
|
997
1027
|
not error
|
|
998
1028
|
|
|
999
|
-
## 57 - 2023-06-09
|
|
1029
|
+
## 57.0.0 - 2023-06-09
|
|
1000
1030
|
|
|
1001
1031
|
### Added
|
|
1002
1032
|
|
|
1003
1033
|
- AutoReconnect Mode `WaitForDevice.when` now support an new mode a custom
|
|
1004
1034
|
function for more flexibility
|
|
1005
1035
|
|
|
1006
|
-
## 56 - 2023-06-09
|
|
1036
|
+
## 56.0.0 - 2023-06-09
|
|
1007
1037
|
|
|
1008
1038
|
### Changed
|
|
1009
1039
|
|
|
@@ -1013,7 +1043,7 @@ module.exports = {
|
|
|
1013
1043
|
that only go through the API. If it still breaks something, feel free to
|
|
1014
1044
|
reach out to Marko. :-)
|
|
1015
1045
|
|
|
1016
|
-
## 55 - 2023-06-08
|
|
1046
|
+
## 55.0.0 - 2023-06-08
|
|
1017
1047
|
|
|
1018
1048
|
### Added
|
|
1019
1049
|
|
|
@@ -1029,14 +1059,14 @@ module.exports = {
|
|
|
1029
1059
|
- Replace all instances of `BootLoaderMode` to `dfuBootLoaderMode` in all
|
|
1030
1060
|
`WaitForDevice.when`
|
|
1031
1061
|
|
|
1032
|
-
## 54 - 2023-06-05
|
|
1062
|
+
## 54.0.0 - 2023-06-05
|
|
1033
1063
|
|
|
1034
1064
|
### Removed
|
|
1035
1065
|
|
|
1036
1066
|
- `react-dom` is no longer listed as an external package due to launcher
|
|
1037
1067
|
requiring it for bundling.
|
|
1038
1068
|
|
|
1039
|
-
## 53 - 2023-06-05
|
|
1069
|
+
## 53.0.0 - 2023-06-05
|
|
1040
1070
|
|
|
1041
1071
|
### Added
|
|
1042
1072
|
|
|
@@ -1044,7 +1074,7 @@ module.exports = {
|
|
|
1044
1074
|
- `StartStop` parameter `startText` now allows React.ReactNode.
|
|
1045
1075
|
- `StartStop` parameter `stopText` now allows React.ReactNode.
|
|
1046
1076
|
|
|
1047
|
-
## 52 - 2023-06-02
|
|
1077
|
+
## 52.0.0 - 2023-06-02
|
|
1048
1078
|
|
|
1049
1079
|
### Changed
|
|
1050
1080
|
|
|
@@ -1053,31 +1083,31 @@ module.exports = {
|
|
|
1053
1083
|
pass a third parameter to the action creator
|
|
1054
1084
|
`ErrorDialogActions.showDialog`.
|
|
1055
1085
|
|
|
1056
|
-
## 51 - 2023-05-31
|
|
1086
|
+
## 51.0.0 - 2023-05-31
|
|
1057
1087
|
|
|
1058
1088
|
### Added
|
|
1059
1089
|
|
|
1060
1090
|
- `Dropdown` parameter `label` now allows React.ReactNode.
|
|
1061
1091
|
|
|
1062
|
-
## 50 - 2023-05-30
|
|
1092
|
+
## 50.0.0 - 2023-05-30
|
|
1063
1093
|
|
|
1064
1094
|
### Fixed
|
|
1065
1095
|
|
|
1066
1096
|
- `dialog` text wrapping opts to keep words as whole of possible.
|
|
1067
1097
|
|
|
1068
|
-
## 49 - 2023-05-30
|
|
1098
|
+
## 49.0.0 - 2023-05-30
|
|
1069
1099
|
|
|
1070
1100
|
### Fixed
|
|
1071
1101
|
|
|
1072
1102
|
- `dialog` body text can now wrap and not overflow.
|
|
1073
1103
|
|
|
1074
|
-
## 48 - 2023-05-30
|
|
1104
|
+
## 48.0.0 - 2023-05-30
|
|
1075
1105
|
|
|
1076
1106
|
### Added
|
|
1077
1107
|
|
|
1078
1108
|
- `DropdownItem` parameter `label` now allows React.ReactNode.
|
|
1079
1109
|
|
|
1080
|
-
## 47 - 2023-05-22
|
|
1110
|
+
## 47.0.0 - 2023-05-22
|
|
1081
1111
|
|
|
1082
1112
|
### Added
|
|
1083
1113
|
|
|
@@ -1104,7 +1134,7 @@ module.exports = {
|
|
|
1104
1134
|
- Replace type `DeviceSetup` with `DeviceSetupConfig`
|
|
1105
1135
|
- Replace type `IDeviceSetup` with `DeviceSetup`
|
|
1106
1136
|
|
|
1107
|
-
## 46 - 2023-05-19
|
|
1137
|
+
## 46.0.0 - 2023-05-19
|
|
1108
1138
|
|
|
1109
1139
|
### Added
|
|
1110
1140
|
|
|
@@ -1142,7 +1172,7 @@ module.exports = {
|
|
|
1142
1172
|
this function using the dispatch function i.e
|
|
1143
1173
|
`dispatch(switchToApplicationMode(...`
|
|
1144
1174
|
|
|
1145
|
-
## 45 - 2023-05-09
|
|
1175
|
+
## 45.0.0 - 2023-05-09
|
|
1146
1176
|
|
|
1147
1177
|
### Fixed
|
|
1148
1178
|
|
|
@@ -1155,7 +1185,7 @@ module.exports = {
|
|
|
1155
1185
|
- StateSelector property `selectedItem` now allows {key: string , renderItem:
|
|
1156
1186
|
React.ReactElement} as content in addition to string
|
|
1157
1187
|
|
|
1158
|
-
## 44 - 2023-05-05
|
|
1188
|
+
## 44.0.0 - 2023-05-05
|
|
1159
1189
|
|
|
1160
1190
|
### Fixed
|
|
1161
1191
|
|
|
@@ -1166,14 +1196,14 @@ module.exports = {
|
|
|
1166
1196
|
|
|
1167
1197
|
- Persistent store now allows to send more options to the internal store.
|
|
1168
1198
|
|
|
1169
|
-
## 43 - 2023-05-05
|
|
1199
|
+
## 43.0.0 - 2023-05-05
|
|
1170
1200
|
|
|
1171
1201
|
### Changed
|
|
1172
1202
|
|
|
1173
1203
|
- Use the new property from launcher ipc to determine the app path. This is
|
|
1174
1204
|
used for logging when the application starts up.
|
|
1175
1205
|
|
|
1176
|
-
## 42 - 2023-05-04
|
|
1206
|
+
## 42.0.0 - 2023-05-04
|
|
1177
1207
|
|
|
1178
1208
|
### Changed
|
|
1179
1209
|
|
|
@@ -1182,7 +1212,7 @@ module.exports = {
|
|
|
1182
1212
|
compiler option. You may be using an old version of swc which does not
|
|
1183
1213
|
support the options used by ts-node.
|
|
1184
1214
|
|
|
1185
|
-
## 41 - 2023-05-03
|
|
1215
|
+
## 41.0.0 - 2023-05-03
|
|
1186
1216
|
|
|
1187
1217
|
### Changed
|
|
1188
1218
|
|
|
@@ -1195,7 +1225,7 @@ module.exports = {
|
|
|
1195
1225
|
- `ConflictingSettingsDialog` displayed wrong app name in the conflict
|
|
1196
1226
|
overview. Now it will only display Active- and Selected settings.
|
|
1197
1227
|
|
|
1198
|
-
## 40 - 2023-04-28
|
|
1228
|
+
## 40.0.0 - 2023-04-28
|
|
1199
1229
|
|
|
1200
1230
|
### Added
|
|
1201
1231
|
|
|
@@ -1203,7 +1233,7 @@ module.exports = {
|
|
|
1203
1233
|
pc-nrfconnect-shared is used, and the serial port may have been claimed by
|
|
1204
1234
|
another app.
|
|
1205
1235
|
|
|
1206
|
-
## 39 - 2023-04-28
|
|
1236
|
+
## 39.0.0 - 2023-04-28
|
|
1207
1237
|
|
|
1208
1238
|
### Added
|
|
1209
1239
|
|
|
@@ -1211,20 +1241,20 @@ module.exports = {
|
|
|
1211
1241
|
used to open the serial port.
|
|
1212
1242
|
- Extended SERIALPORT_CHANNEL with entry GET_OPTIONS.
|
|
1213
1243
|
|
|
1214
|
-
## 38 - 2023-04-28
|
|
1244
|
+
## 38.0.0 - 2023-04-28
|
|
1215
1245
|
|
|
1216
1246
|
### Fixed
|
|
1217
1247
|
|
|
1218
1248
|
- Dropdowns allow using their scrollbars by clicking and dragging.
|
|
1219
1249
|
- Dropdown scrollbars are styled correctly.
|
|
1220
1250
|
|
|
1221
|
-
## 37 - 2023-04-28
|
|
1251
|
+
## 37.0.0 - 2023-04-28
|
|
1222
1252
|
|
|
1223
1253
|
### Changed
|
|
1224
1254
|
|
|
1225
1255
|
- Updated `nrf-device-lib-js` to version 0.6.8.
|
|
1226
1256
|
|
|
1227
|
-
## 36 - 2023-04-26
|
|
1257
|
+
## 36.0.0 - 2023-04-26
|
|
1228
1258
|
|
|
1229
1259
|
### Added
|
|
1230
1260
|
|
|
@@ -1232,21 +1262,21 @@ module.exports = {
|
|
|
1232
1262
|
versions of shared.
|
|
1233
1263
|
- Property `id` to `Dropdown` component.
|
|
1234
1264
|
|
|
1235
|
-
## 35 - 2023-04-20
|
|
1265
|
+
## 35.0.0 - 2023-04-20
|
|
1236
1266
|
|
|
1237
1267
|
### Fixed
|
|
1238
1268
|
|
|
1239
1269
|
- "Warning: validateDOMNesting(...): `<div>` cannot appear as a descendant of
|
|
1240
1270
|
`<p>`."
|
|
1241
1271
|
|
|
1242
|
-
## 34 - 2023-04-19
|
|
1272
|
+
## 34.0.0 - 2023-04-19
|
|
1243
1273
|
|
|
1244
1274
|
### Fixed
|
|
1245
1275
|
|
|
1246
1276
|
- Made `InfoDialog` close when unfocusing again, which was removed during the
|
|
1247
1277
|
previous version.
|
|
1248
1278
|
|
|
1249
|
-
## 33 - 2023-04-19
|
|
1279
|
+
## 33.0.0 - 2023-04-19
|
|
1250
1280
|
|
|
1251
1281
|
### Added
|
|
1252
1282
|
|
|
@@ -1269,7 +1299,7 @@ module.exports = {
|
|
|
1269
1299
|
|
|
1270
1300
|
- Move the `showSpinner` property from `Dialog.Footer` to `Dialog.Header`.
|
|
1271
1301
|
|
|
1272
|
-
## 32 - 2023-04-14
|
|
1302
|
+
## 32.0.0 - 2023-04-14
|
|
1273
1303
|
|
|
1274
1304
|
### Added
|
|
1275
1305
|
|
|
@@ -1293,7 +1323,7 @@ module.exports = {
|
|
|
1293
1323
|
- `InlineInput` only calls `onChange` and `onChangeComplete` if value has
|
|
1294
1324
|
changed.
|
|
1295
1325
|
|
|
1296
|
-
## 31 - 2023-04-03
|
|
1326
|
+
## 31.0.0 - 2023-04-03
|
|
1297
1327
|
|
|
1298
1328
|
### Changed
|
|
1299
1329
|
|
|
@@ -1319,20 +1349,20 @@ module.exports = {
|
|
|
1319
1349
|
shared, otherwise not all needed peer dependencies are installed and you
|
|
1320
1350
|
need to provide them yourself.
|
|
1321
1351
|
|
|
1322
|
-
## 30 - 2023-03-30
|
|
1352
|
+
## 30.0.0 - 2023-03-30
|
|
1323
1353
|
|
|
1324
1354
|
### Changed
|
|
1325
1355
|
|
|
1326
1356
|
- Update `nrf-device-lib-js` to version 0.6.5.
|
|
1327
1357
|
|
|
1328
|
-
## 29 - 2023-03-29
|
|
1358
|
+
## 29.0.0 - 2023-03-29
|
|
1329
1359
|
|
|
1330
1360
|
### Added
|
|
1331
1361
|
|
|
1332
1362
|
- Dialog helpers (`InfoDialog`, `ErrorDialog`, `ConfirmationDialog`) all
|
|
1333
1363
|
expose the `className` property now.
|
|
1334
1364
|
|
|
1335
|
-
## 28 - 2023-03-28
|
|
1365
|
+
## 28.0.0 - 2023-03-28
|
|
1336
1366
|
|
|
1337
1367
|
### Added
|
|
1338
1368
|
|
|
@@ -1344,19 +1374,19 @@ module.exports = {
|
|
|
1344
1374
|
- Linux: Apps would crash when identifying certain devices if nrf-udev
|
|
1345
1375
|
installation was missing.
|
|
1346
1376
|
|
|
1347
|
-
## 27 - 2023-03-27
|
|
1377
|
+
## 27.0.0 - 2023-03-27
|
|
1348
1378
|
|
|
1349
1379
|
### Fixed
|
|
1350
1380
|
|
|
1351
1381
|
- Clear timeout state after timeout has elapsed.
|
|
1352
1382
|
|
|
1353
|
-
## 26 - 2023-03-24
|
|
1383
|
+
## 26.0.0 - 2023-03-24
|
|
1354
1384
|
|
|
1355
1385
|
### Fixed
|
|
1356
1386
|
|
|
1357
1387
|
- Retrieving persisted serialport options on windows would lead to crashes.
|
|
1358
1388
|
|
|
1359
|
-
## 25 - 2023-03-23
|
|
1389
|
+
## 25.0.0 - 2023-03-23
|
|
1360
1390
|
|
|
1361
1391
|
### Added
|
|
1362
1392
|
|
|
@@ -1378,7 +1408,7 @@ module.exports = {
|
|
|
1378
1408
|
DOM element.
|
|
1379
1409
|
- `Dropdown` will keep the list open if rerendered
|
|
1380
1410
|
|
|
1381
|
-
## 24 - 2023-03-20
|
|
1411
|
+
## 24.0.0 - 2023-03-20
|
|
1382
1412
|
|
|
1383
1413
|
### Added
|
|
1384
1414
|
|
|
@@ -1411,7 +1441,7 @@ module.exports = {
|
|
|
1411
1441
|
`persistedSerialPortOptions` property in the `Device` type (accessible from
|
|
1412
1442
|
the DeviceSelector callbacks or through `dispatch(selectedDevice())`)
|
|
1413
1443
|
|
|
1414
|
-
## 23 - 2023-03-16
|
|
1444
|
+
## 23.0.0 - 2023-03-16
|
|
1415
1445
|
|
|
1416
1446
|
### Added
|
|
1417
1447
|
|
|
@@ -1426,13 +1456,13 @@ module.exports = {
|
|
|
1426
1456
|
- `setWaitForDevice` with `undefined` can no longer be used to cancel timeouts
|
|
1427
1457
|
instead one should use `clearWaitForDevice`
|
|
1428
1458
|
|
|
1429
|
-
## 22 - 2023-03-15
|
|
1459
|
+
## 22.0.0 - 2023-03-15
|
|
1430
1460
|
|
|
1431
1461
|
### Changed
|
|
1432
1462
|
|
|
1433
1463
|
- Update `nrf-device-lib-js` to version 0.6.2.
|
|
1434
1464
|
|
|
1435
|
-
## 21 - 2023-03-15
|
|
1465
|
+
## 21.0.0 - 2023-03-15
|
|
1436
1466
|
|
|
1437
1467
|
### Added
|
|
1438
1468
|
|
|
@@ -1442,14 +1472,14 @@ module.exports = {
|
|
|
1442
1472
|
|
|
1443
1473
|
- `ErrorBoundary` `Button` are now large.
|
|
1444
1474
|
|
|
1445
|
-
## 20 - 2023-03-14
|
|
1475
|
+
## 20.0.0 - 2023-03-14
|
|
1446
1476
|
|
|
1447
1477
|
### Added
|
|
1448
1478
|
|
|
1449
1479
|
- Steppers component which allows to add states for success, failure and
|
|
1450
1480
|
warning.
|
|
1451
1481
|
|
|
1452
|
-
## 19 - 2023-03-13
|
|
1482
|
+
## 19.0.0 - 2023-03-13
|
|
1453
1483
|
|
|
1454
1484
|
### Added
|
|
1455
1485
|
|
|
@@ -1459,7 +1489,7 @@ module.exports = {
|
|
|
1459
1489
|
|
|
1460
1490
|
- Update `nrf-device-lib-js` to version 0.6.0.
|
|
1461
1491
|
|
|
1462
|
-
## 18 - 2023-03-09
|
|
1492
|
+
## 18.0.0 - 2023-03-09
|
|
1463
1493
|
|
|
1464
1494
|
### Added
|
|
1465
1495
|
|
|
@@ -1484,20 +1514,20 @@ module.exports = {
|
|
|
1484
1514
|
- `NavMenuItem` use the shared `Button` component
|
|
1485
1515
|
- `FeedbackPane` use the shared `Button` component
|
|
1486
1516
|
|
|
1487
|
-
## 17 - 2023-03-08
|
|
1517
|
+
## 17.0.0 - 2023-03-08
|
|
1488
1518
|
|
|
1489
1519
|
### Added
|
|
1490
1520
|
|
|
1491
1521
|
- Allow apps to see if auto-reconnect is enabled.
|
|
1492
1522
|
|
|
1493
|
-
## 16 - 2023-03-03
|
|
1523
|
+
## 16.0.0 - 2023-03-03
|
|
1494
1524
|
|
|
1495
1525
|
### Fixed
|
|
1496
1526
|
|
|
1497
1527
|
- Selecting a device will no longer stop and start hotplug events
|
|
1498
1528
|
- Long Serial number and device names will now render correctly
|
|
1499
1529
|
|
|
1500
|
-
## 15 - 2023-03-03
|
|
1530
|
+
## 15.0.0 - 2023-03-03
|
|
1501
1531
|
|
|
1502
1532
|
### Added
|
|
1503
1533
|
|
|
@@ -1524,7 +1554,7 @@ module.exports = {
|
|
|
1524
1554
|
do not need to be awaited.
|
|
1525
1555
|
- Update `nrf-device-lib-js` to version 0.5.0.
|
|
1526
1556
|
|
|
1527
|
-
## 14 - 2023-02-28
|
|
1557
|
+
## 14.0.0 - 2023-02-28
|
|
1528
1558
|
|
|
1529
1559
|
### Fixed
|
|
1530
1560
|
|
|
@@ -1532,13 +1562,13 @@ module.exports = {
|
|
|
1532
1562
|
- `MasonryLayout` Hidden items can become visible and not remain hidden for
|
|
1533
1563
|
the full app life cycle.
|
|
1534
1564
|
|
|
1535
|
-
## 13 - 2023-02-24
|
|
1565
|
+
## 13.0.0 - 2023-02-24
|
|
1536
1566
|
|
|
1537
1567
|
### Fixed
|
|
1538
1568
|
|
|
1539
1569
|
- Wrongly import of `electron/renderer`, now changed to `electron`.
|
|
1540
1570
|
|
|
1541
|
-
## 12 - 2023-02-23
|
|
1571
|
+
## 12.0.0 - 2023-02-23
|
|
1542
1572
|
|
|
1543
1573
|
### Added
|
|
1544
1574
|
|
|
@@ -1553,26 +1583,26 @@ module.exports = {
|
|
|
1553
1583
|
- Improved `MasonryLayout` algorithm
|
|
1554
1584
|
- `MasonryLayout` Items with no height are hidden
|
|
1555
1585
|
|
|
1556
|
-
## 11 - 2023-02-22
|
|
1586
|
+
## 11.0.0 - 2023-02-22
|
|
1557
1587
|
|
|
1558
1588
|
### Changed
|
|
1559
1589
|
|
|
1560
1590
|
- `shasum` property on apps became optional.
|
|
1561
1591
|
|
|
1562
|
-
## 10 - 2023-02-16
|
|
1592
|
+
## 10.0.0 - 2023-02-16
|
|
1563
1593
|
|
|
1564
1594
|
### Fixed
|
|
1565
1595
|
|
|
1566
1596
|
- Masonry layout Max height generation algorithm
|
|
1567
1597
|
- Regression with dropdown items on hover effect
|
|
1568
1598
|
|
|
1569
|
-
## 9 - 2023-02-16
|
|
1599
|
+
## 9.0.0 - 2023-02-16
|
|
1570
1600
|
|
|
1571
1601
|
### Added
|
|
1572
1602
|
|
|
1573
1603
|
- Masonry Layout
|
|
1574
1604
|
|
|
1575
|
-
## 8 - 2023-02-15
|
|
1605
|
+
## 8.0.0 - 2023-02-15
|
|
1576
1606
|
|
|
1577
1607
|
### Changed
|
|
1578
1608
|
|
|
@@ -1580,7 +1610,7 @@ module.exports = {
|
|
|
1580
1610
|
show some more objects, e.g. Maps and Sets.
|
|
1581
1611
|
- Updated `StartStopButton` to be a controlled component
|
|
1582
1612
|
|
|
1583
|
-
## 7 - 2023-02-13
|
|
1613
|
+
## 7.0.0 - 2023-02-13
|
|
1584
1614
|
|
|
1585
1615
|
### Changed
|
|
1586
1616
|
|