File tree 4 files changed +11
-6
lines changed
docs/docs/getting-started
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Released changes are shown in the
11
11
## [ Not released]
12
12
13
13
### Added
14
+ - Persistent id.
14
15
15
16
### Changed
16
17
@@ -19,9 +20,5 @@ Released changes are shown in the
19
20
### Removed
20
21
21
22
### Fixed
22
- - Showing long utterances fully on hover in similar and perturbed utterances tables.
23
- - Webapp crash when no pipeline.
24
- - Sort confidence or prediction without postprocessing.
25
- - Crash on Safari and iOS browsers as they don't support lookbehind in regular expressions.
26
23
27
24
### Security
Original file line number Diff line number Diff line change 1
1
# Releases
2
2
3
+ ## [ 2.5.2] - 2022-12-20
4
+
5
+ ### Fixed
6
+ - Show long utterances fully on hover in similar and perturbed utterances tables.
7
+ - Fixed webapp crash when there is no pipeline (with ` "pipeline": null ` configured).
8
+ - Fixed sort utterance table by confidence or prediction without post-processing.
9
+ - Fixed crash on Safari and iOS browsers as they don't support lookbehind in regular expressions.
10
+
3
11
## [ 2.5.1] - 2022-12-05
4
12
5
13
### Fixed
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " azimuth"
3
- version = " 2.5.1 "
3
+ version = " 2.5.2 "
4
4
description = " Azimuth provides a unified error analysis experience to data scientists."
5
5
readme = " README.md"
6
6
authors = [
" Azimuth team <[email protected] >" ]
Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ export const formatRatioAsPercentageString = (
14
14
15
15
export const camelToTitleCase = ( camelCase : string ) =>
16
16
// Safari and iOS browsers don't support lookbehind in regular expressions.
17
- camelCase . replace ( / ( [ a - z ] ) (? = [ A - Z 0 - 9 ] ) | ( [ A - Z 0 - 9 ] ) (? = [ A - Z ] [ a - z ] ) / g, "$1$2 " ) ;
17
+ camelCase . replace ( / ( [ a - z ] ) (? = [ A - Z 0 - 9 ] ) | ( [ A - Z 0 - 9 ] ) (? = [ A - Z ] [ a - z ] ) / g, "$& " ) ;
You can’t perform that action at this time.
0 commit comments