File tree Expand file tree Collapse file tree
docs/docs/getting-started Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Released changes are shown in the
1111## [ Not released]
1212
1313### Added
14+ - Persistent id.
1415
1516### Changed
1617
@@ -19,9 +20,5 @@ Released changes are shown in the
1920### Removed
2021
2122### 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.
2623
2724### Security
Original file line number Diff line number Diff line change 11# Releases
22
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+
311## [ 2.5.1] - 2022-12-05
412
513### Fixed
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " azimuth"
3- version = " 2.5.1 "
3+ version = " 2.5.2 "
44description = " Azimuth provides a unified error analysis experience to data scientists."
55readme = " README.md"
66authors = [" Azimuth team <azimuth-team@servicenow.com>" ]
Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ export const formatRatioAsPercentageString = (
1414
1515export const camelToTitleCase = ( camelCase : string ) =>
1616 // 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